I want to make the button videoclips load a webpage "videoclips.htm" with the target "mainFrame" on release of the button. Does anyone know the code for this? thanks
I want to make the button videoclips load a webpage "videoclips.htm" with the target "mainFrame" on release of the button. Does anyone know the code for this? thanks
If it is a link button then you need the following:
If this isn't what you're looking for please tell me specifically what you are trying to do.Code:_root.buttonName.onRelease = function() { getURL("videoclips.htm","mainFrame"); }