Hi,
The two standard methods of codeing are frame and object. Object code goes directly onto the object in question. Highlight any buttons or movieclips on the stage and open the actions panel to see if they have any code. Frame code usually resides on the first frame of the main timeline. You would be looking to edit something like...
Frame...
myButton.onRelease=function(){
getURL("http://somesite.com")
}
object...
on(release){
getURL("http://somesite.com")
}
Once you locate the code in question, modifying it should be easy.
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks