Groups | Blog | Home
all groups > flash actionscript > december 2005 >

flash actionscript : Need help re-formatting this code


ccesca
12/27/2005 9:29:07 PM
I have a flash movie with the following code in the first frame :


faculty_mc.jasmine_bio.onRollOver {
_root.staff_mc.gotoAndPlay('jasmine');
}
faculty_mc.jasmine_bio.onRollOut {
_root.staff_mc.gotoAndPlay('1');
}

stop();

//create popup function
callPopup = function() {
getURL(popup);
};

faculty_mc.jasmine_bio.onRelease = function(){
popup =
"javascript:jspw3('vwd_scripts/','popups/jasmine.swf','1,,0,Click%20anywhere%20t
o%20close%20this%20window,open,-%20-%20click%20screen%20to%20close%20-%20-,0,0,,
0,500,220,0,0.001,0.001,,,,0,,.0.0.');";
callPopup();
}
kglad
12/28/2005 2:17:07 AM
faculty_mc.jasmine_bio.onRollOver=function() {
_root.staff_mc.gotoAndPlay('jasmine');
}
faculty_mc.jasmine_bio.onRollOut=function() {
_root.staff_mc.gotoAndPlay('1');
}
AddThis Social Bookmark Button