Jump to content
MakeWebGames

Recommended Posts

Posted

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");
}
Posted

:(

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

Posted

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...