Ask a Question related to Macromedia Contribute General Discussion, Design and Development.
-
jwizzle #1
Flash Paper Resizing
Sorry for the repost, but I really need an answer for this:
Macromedia
[url]http://www.macromedia.com/support/documentation/en/flashpaper/2/flashpaper_api/f[/url]
lashpaper_api6.html gives the code below to affect to size of a Flash Paper
..swf, but I do not understand exactly what's going on. I've tried to adapt it
with no success. How is this script called? Why do I automatically get errors
when I insert my own files?
Thanks for the help!
function loadFlashPaper(
path_s, // path of SWF to load
dest_mc, // MC which we should replace with the SWF
width_i, // new size of the dest MC
height_i, // new size of the dest MC
loaded_o) // optional: object to be notified that loading is complete
{
var intervalID = 0;
var loadFunc = function()
{
dest_mc._visible = false;
var fp = dest_mc.getIFlashPaper();
if (!fp)
return;
if (fp.setSize(width_i, height_i) == false)
return;
dest_mc._visible = true;
clearInterval(intervalID);
loaded_o.onLoaded(fp);
}
intervalID = setInterval(loadFunc, 100);
dest_mc.loadMovie(path_s);
}
jwizzle Guest
-
insert as flash paper
Hi. I am looking for a way to convert pdf files to swf. I saw in an Adobe tutorial on Contribute that this can be done by first inserting document... -
Flash Paper Problem
What is Adobe thinking -- have they lost all tract of educational needs????? I bought Macromedia Studio just for Flash Paper and now it doesn't... -
Where is Flash Paper Download?
I purchased Studio 8 online the download version. Only problem is the Flash Paper download does not seem to be in the downloads section. Everything... -
Flash Paper missing??
I just downloaded the contribute 3.1 to my Mac running 10.4.1 (tiger) When I open a microsoft office product I do not find the Flash Paper... -
Flash Paper Problems
We just updated to ColdFusion MX 7 with the built in flashpaper support. While in the development stage of a performace review form, I ran across a...



Reply With Quote

