Flasher Archive

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


Subject: Re: FLASH: this should be easy!
From: Ramesh C T
Date: Mon, 25 Sep 2000 12:11:48 +0100

Hi Skye

Setup a movie like this,

fishPond (movie clip)
|
|
Button
fish (movie clip)

// script for button which is inside fishPond MC
on (release) {
_root.fishPond.reduceAlpha = 1;
}

--------------------------------
//script for fish MC which is inside fishPond
onClipEvent(enterFrame) {
if (_parent.reduceAlpha == 1) {
this._alpha = this._alpha -1;
}
}

then run the movie, click on the button.. watch the
fish reducing its alpha...Good luck

regards
Ramesh C T

--- Skye Giordano <skyeatwriteme [dot] com> wrote:
> This really should be simple, and bless the soul who
> explains it to me...
> I have a 1 frame project that has 2 items in the
> first frame:
>
> 1. A button
> 2. A movie clip of a fish swimming around whose
> instance name is "fish"
>
> What I want to happen is when the button is clicked,
> the fish's opacity
> begin to reduce until it is invisible WITHOUT the
> fish movie clip changing
> from where it is when the button is clicked. I've
> tried several methods
> whose logic should have worked but didn't. If
> anyone can explain how to
> make this happen in Flash 5, I would be very
> grateful. If you'd rather not
> explain, I have the file as described above at the
> following URL, and would
> be happy to deconstruct it if you could make this
> happen and send the file
> to me:
>
> http://www.nothnbut.net/~skye/test.zip
>
> PLEASE RESPOND PERSONALY (skyeatwriteme [dot] com ) as well
> as to the group.
> Many thanks!
>
> -Skye
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> NudeGuru.com is proud to sponsor the Flasher list
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> IT'S THE ART OF MONEY, HONEY!
> Tips and Advice from some of the most popular Flash
> artists + industry power-brokers on how to hold
> onto
> your rights, negotiate contracts and get full value
> for your work.http://www.nudeguru.com from Franke
> James
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> To unsubscribe or change your list settings go to
> http://www.chinwag.com/flasher or email
> helpatchinwag [dot] com
>


__________________________________________________
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
http://im.yahoo.com/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NudeGuru.com is proud to sponsor the Flasher list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IT'S THE ART OF MONEY, HONEY!
Tips and Advice from some of the most popular Flash
artists + industry power-brokers on how to hold onto
your rights, negotiate contracts and get full value
for your work.http://www.nudeguru.com from Franke James
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  Re: FLASH: this should be easy!, Roland Combes

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