PDA

View Full Version : Frame action to load URL



outback
June 26th, 2008, 09:25 PM
Hi I kind a new in flash and I'm trying to discover a way to make a frame load an URL my btn takes me to an specific frame and in that frame I need to put an action to load my blog can anyone help me?

thanks in advance!!!!

bataglia
June 27th, 2008, 09:40 AM
make your button, give an instance to him, like my_btn, then in action pannel say something like: my_btn.onPress = function() {
gotoAndPlay(10); //this action will go to frame 10;
}

then in frame 10, in action panel write this: getURL("www.yourblog.com","_self"); // instead of _self you can put _blank.

Good luck ;)

outback
June 27th, 2008, 03:24 PM
thanks.....:bounce: