jenarwen
04-12-2004, 01:02 AM
None of the tutorials I've seen help. I have Flash MX and I want to add the options of opening a movie and opening a webpage. Gracias :cloud:
|
View Full Version : Adding Functions to buttons jenarwen 04-12-2004, 01:02 AM None of the tutorials I've seen help. I have Flash MX and I want to add the options of opening a movie and opening a webpage. Gracias :cloud: Arc Angel 04-12-2004, 03:50 AM I think this is what your looking for... You can't open a motion tween but you can start one that's already on the stage, for example if you have a movieclip instance called tween on your stage you could add the following code (the tween movieclip is your movieclip with a stop action on frame one and the beginning of your tween on frame 2). on (release) { tween.gotoAndPlay (2); } As for opening a url, use the following code: on (release) { getURL("yoururl.com", "_target"); } I hope that helps, and that it isn't too confusing.;) jenarwen 04-12-2004, 08:58 PM Hmmmmm. Well ermm wheres the stage? ... that might help alot XD Marianne 04-12-2004, 09:00 PM stage is the working area, does that help? jenarwen 04-12-2004, 09:06 PM but how do you type in the area you draw... Marianne 04-13-2004, 07:01 AM In the tools window (upper left hand corner) you can hoover your cursor over the items, it gives you hints what they are for. The 'A' is for typing. If you want to get to know the basics of Flash: Open Flash. Go to 'help' and then select 'how do I' There, you can choose, for example, 'draw in flash'. The arrows on the right guide you through the tutorial. That will explain it far better than I can. It might be a good idea to do all the tutorials. Take your time learning, it is a lot of information. Good luck! |