RE: [Flashcoders] movieclip actions not working

2006-03-20 Thread Byron Canfield
Johnston Sent: maandag 20 maart 2006 1:41 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working ben, you cannot have a button inside another button... That is why your code wont work. paste this over your current code m1.onRollOver = function ():Void

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread a
' Subject: RE: [Flashcoders] movieclip actions not working stop action on frame 1 stop(); m1.onRollOver = function() { gotoAndStop(20); //or play(); } stop action on frame 20 stop(); m2.onRelease = function() { getURL(http://www.website.com;, _blank

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
and no buttons. That's where I'm stuck :-) thanks, Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of a Sent: zondag 19 maart 2006 10:10 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working could you show us a sample of how you

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
Your first button event handler has already intercepted the mouse event. The button event handler nested inside is therefore ignored entirely. For your first button event: m1.onRollOver = function() { gotoAndStop(20); //or play(); this.enabled = false; } -- Byron Barn

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Byron Canfield Sent: maandag 20 maart 2006 0:33 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions not working Your first button event handler has already intercepted

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
... http://www.citogrid.com/v3/images/fla/whynot.fla thx, Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Byron Canfield Sent: maandag 20 maart 2006 0:33 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
maart 2006 1:09 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions not working All my code does is terminate the interception of the button event by the first button. It does not address other code errors. As was asked before, where is the code for the second button

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
2006 1:18 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions not working Actually try this, instead. m1.onRollOver = function(){ delete this.onRollOver; //this.play(); this.gotoAndStop(20); } -- Byron Barn Canfield Thanks for your help

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread Andy Johnston
@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions not working Actually try this, instead. m1.onRollOver = function(){ delete this.onRollOver; //this.play(); this.gotoAndStop(20); } ___ Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
maart 2006 1:41 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working ben, you cannot have a button inside another button... That is why your code wont work. paste this over your current code m1.onRollOver = function ():Void { this.gotoAndStop (20); }; m1

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread Andy Johnston
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Johnston Sent: maandag 20 maart 2006 1:41 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working ben, you cannot have a button inside another button... That is why your code wont work. paste

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
mailing list Subject: Re: [Flashcoders] movieclip actions not working if thats the case you should have a movieClip that contains your buttons in the library. Set its linkage then attach it under your m1 movieClip... _ || m1 - main button menu_mc - library linkage

RE: [Flashcoders] movieclip actions not working

2006-03-18 Thread Steven Sacks
stop action on frame 1 stop(); m1.onRollOver = function() { gotoAndStop(20); //or play(); } stop action on frame 20 stop(); m2.onRelease = function() { getURL(http://www.website.com;, _blank); } ___

RE: [Flashcoders] movieclip actions not working

2006-03-18 Thread Ben Deroo
on the RED square (m2), I want them to go to a website (http://www.website.com) anyone? thx, Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: zondag 19 maart 2006 2:59 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] movieclip