i am having problems passing variables from flash to autoplay.
i have a long table which contains links to other pages in my project. since its a long table, i used the scrollpane component in flash mx so that i could display the whole table in one link. then i loaded the the swf file externally into autoplay.
however, when i tried testing it out, the links were not working and i couldnt event close the program!! i have encountered this before and it is usually caused by wrong commands in flash or autoplay. however i have checked my actionscripting in flash and autoplay and it still doesnt work??
the only thing i am doing different compared to my other projects is that my links(actionscripting) is being loaded into another swf file(contains the scrollpane) which is externally linked to my autoplay project.
btw this are the commands that i used:
flash
on(release){
mypage = "tumeric";
fscommand("switch page");
}
autoplay
%newPage%=FlashObject[Flash2].GetVariable("myPage")
Page.Jump("%newPage%")
thanks in advance.
i have a long table which contains links to other pages in my project. since its a long table, i used the scrollpane component in flash mx so that i could display the whole table in one link. then i loaded the the swf file externally into autoplay.
however, when i tried testing it out, the links were not working and i couldnt event close the program!! i have encountered this before and it is usually caused by wrong commands in flash or autoplay. however i have checked my actionscripting in flash and autoplay and it still doesnt work??
the only thing i am doing different compared to my other projects is that my links(actionscripting) is being loaded into another swf file(contains the scrollpane) which is externally linked to my autoplay project.
btw this are the commands that i used:
flash
on(release){
mypage = "tumeric";
fscommand("switch page");
}
autoplay
%newPage%=FlashObject[Flash2].GetVariable("myPage")
Page.Jump("%newPage%")
thanks in advance.
Comment