DISTORTED Posted April 26, 2010 Posted April 26, 2010 anyone with a basic knowledge of flash can tell me if Im doing this rigth I think I am but for some reason Im getting mutli windows basic button for a menu Im working on can anyone tell me what Im doing wroung on (rollOver) { playSound("me.mp3"); } on (release) { getURL("gamerules.php",window="_self""End On"); } Quote
Djkanna Posted April 26, 2010 Posted April 26, 2010 I know sod all about Flash but I don't think the "End On" is needed in there. I believe the third param is for POST and GET methods Quote
DISTORTED Posted April 26, 2010 Author Posted April 26, 2010 :( yea I tryed removing it and rplaceing with GET tryed _parent _Blank and self same out come I think its something 2 do with my rollover I dont have the problem with my other flash menus thanks Djkanna I will figer it out sooner of later Quote
Uridium Posted April 26, 2010 Posted April 26, 2010 try on (rollOver) { playSound("me.mp3"); } on (release) { getURL("gamerules.php", "_self","POST"); } ----------------------- OR TRY on (rollOver) { playSound("me.mp3"); } on (release) { getURL("gamerules.php", "_self", ""); } If your script doesnt need to post or get Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.