RE: [Flashcoders] movieclip actions not working

2006-03-20 Thread Byron Canfield
] > [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

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-19 Thread Andy Johnston
oblem. Wanted to try something new, guess it was a bad idea :-) Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Johnston Sent: maandag 20 maart 2006 1:55 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working wh

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Johnston Sent: maandag 20 maart 2006 1:55 To: Flashcoders mailing list Subject: Re: [Flashcoders] movieclip actions not working what are you trying to achieve with this anyhow? a drop down menu type of system or what? >thanks for

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread Andy Johnston
ssage- 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
ag 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 { this.gotoAndStop (20);

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread Andy Johnston
t: maandag 20 maart 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); } __

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
maart 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 > Th

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
TED] > [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 the mouse event. > The but

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
ent: maandag 20 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 th

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
: flashcoders@chattyfig.figleaf.com > Subject: RE: [Flashcoders] movieclip actions not working > > 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 e

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
, 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 not working Your first button event handler has already intercepte

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" C

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Ben Deroo
ips 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

Re: [Flashcoders] movieclip actions not working

2006-03-19 Thread a
;Flashcoders mailing list' 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(&quo

RE: [Flashcoders] movieclip actions not working

2006-03-18 Thread Ben Deroo
a user clicks 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' Subjec

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"); } ___ Flashcoders@chattyf