Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: Re: FLASH:action script question
From: julie gargan
Date: Tue, 23 May 2000 01:13:41 +0100

I've done this by making the button tell the mc target to move to new frame
and at the same time on release changing frames on the mainstage to a frame
where the button is inactive.

So it would looks like this:

On (Release)
Begin Tell Target ("/dastage")
Go to and Play ("play2")
End Tell Target
Go to and Stop (2)<<<<on this frame in your main movie the button
would be inactive
End On
On (Roll Over)
Begin Tell Target ("/dastage")
Go to and Play ("play1")
End Tell Target
End On
On (Roll Out)
Begin Tell Target ("/dastage")
Go to and Play (2)
End Tell Target
End On



> From: "Ilia Pasymansky" <iliap75athotmail [dot] com>
> Reply-To: flasheratchinwag [dot] com
> Date: Mon, 22 May 2000 09:04:04 -0700
> To: <flasheratchinwag [dot] com>
> Subject: Re: FLASH:action script question
>
> Thanks everybody for respond.
> Robert! for some very strange reason this
> very right code is not working..???
> I list variables and it shows "buttonreleased" value =1
> but when i rollout i still "Tell Target" and go to the frame 2..
> here is what i am trying to do
> http://www.geocities.com/iliap999/flashwork/testbuttonreleased.html
> on rollover -start to activate those boxes then on release to build them
> (and not to react to rollover, rollout anymore)
> Thank You
>
>
>> Date: Mon, 22 May 2000 12:42:40 +1000
>> From: Robert Bleeker <rbleekeratcadre [dot] com [dot] au>
>> Subject: Re: FLASH:action script question
>>
>> OOPs! slight change.
>>
>> You have to check if the "buttonReleased" variable is NOT true, then you
>> might want to reset it for re-use.
>>
>> Hi Ilia,
>>
>> Try this:
>>
>> On (Release)
>> Begin Tell Target ("/dastage")
>> Go to and Play ("play2")
>> End Tell Target
>> Set Variable "buttonReleased"=1
>> End On
>> On (Roll Over)
>> Begin Tell Target ("/dastage")
>> Go to and Play ("play1")
>> End Tell Target
>> End On
>> On (Roll Out)
>> If (NOT buttonReleased)
>> Begin Tell Target ("/dastage")
>> Go to and Play (2)
>> End Tell Target
>> End If
>> Set Variable "buttonReleased"=0
>> End On
>>
>>
>> Robert
>
> flasher is generously supported by...
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> World Animation Celebration - Big Internet Animation Pow Wow Discount Offer
>
> Register before May 25 mention flasher and save 25%!! www.wacfest.com
>
> Be discovered, get a job or have your web series picked up. A big talent
> search for Shockwave
> and Flash animators is happening May 30-June 4 in Hollywood. Featuring Rob
> Burgess, Matt
> Groening, Brad Bird and more. www.wacfest.com
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> To unsubscribe or change your list settings go to
> http://www.chinwag.com/flasher or email helpatchinwag [dot] com
>
>


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
World Animation Celebration - Big Internet Animation Pow Wow Discount Offer

Register before May 25 mention flasher and save 25%!! www.wacfest.com

Be discovered, get a job or have your web series picked up. A big talent search for Shockwave
and Flash animators is happening May 30-June 4 in Hollywood. Featuring Rob Burgess, Matt
Groening, Brad Bird and more. www.wacfest.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  Re: FLASH:action script question, Ilia Pasymansky

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]