Search  

NEED HELP WITH CURRENT FLASHDEN SCRIPT

HomeForumsItem RequestsNeed Help with current FlashDen script
Default-profile neuro99
6 posts
Bought between 10 and 49 items

I have a script i purchased form flahsden, ive been modifying it all day, i consider my self light to medium AS user. IM struck trying to get buttons to work from external swf file that is loaded into main flash file. I need this sorted ASAP , i know its something simple but im totally at a lose. Willing to pay reasonable rate.

Posted about 1 month ago
65882 theflyingtinman
504 posts
Item was featured Referred at least one person Sold between 100 and 1 000 dollars
I have a script i purchased form flahsden, ive been modifying it all day, i consider my self light to medium AS user. IM struck trying to get buttons to work from external swf file that is loaded into main flash file. I need this sorted ASAP , i know its something simple but im totally at a lose. Willing to pay reasonable rate.

Do the externally loaded swfs use “_root” in their code? If so that is likely the problem as “_root” refers to a different level once a swf is loaded into another swf. It can be fixed by adding the line this._lockroot = true; on the main timeline of the externally loaded swf, to be executed before any reference to _root is made.

If you don’t have access to the fla of the external swfs then you can lock the root of the externally loaded swf from the main swf. e.g. if you are laoding the swf into a movieclip called “externalswf_mc” then use: externalswf_mc._lockroot = true;

If you still can’t get it working you can contact me through my profile, or my gmail account (same name).

Posted about 1 month ago
Default-profile neuro99
6 posts
Bought between 10 and 49 items

theflyingtinman i tired that maybe im dense LOL i put this._lockroot = true in the loaded swf file but no luck, should i still keep _root on the mouseover funciton buttons in the loaded swf file? example

_root.effect.onRelease = function() { effect.gotoAndPlay(“off”;); gotoAndStop(“off”;); mysound.stop();

};

Posted about 1 month ago
54070 james345
130 posts
Bought between 1 and 9 items

Your problem is most likely a scope issue. Theflyingtinman got it right. Send me your file or files and I will take a look at them.

jamreno@gmail.com

Posted about 1 month ago