Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: Y position - moving down slowly |
From: | Glen Rhodes |
Date: | Fri, 28 Apr 2000 21:36:43 +0100 |
You want to break your loop over two frames. So frame 1 of the loop has your
movement code, and frame 2 has the check to see if it's at 300 yet. If it
is, then it goes onto frame 3, otherwise, it jumps back to frame 1, and
moves again...
------------------
Glen Rhodes
dot com Entertainment Group Inc.
Tel: (905) 337-8524
Fax: (905) 337-8630
www.dceg.com
-----Original Message-----
From: ownerchinwag [dot] com [ownerchinwag [dot] com]On">mailto:ownerchinwag [dot] com]On Behalf Of
stevefuse-media [dot] com
Sent: Friday, April 28, 2000 2:07 PM
To: flasherchinwag [dot] com
Subject: RE: FLASH: Y position - moving down slowly
Thanks! that works, but it just doesn't want to "ease" down. It just
kinda zaps down. Any suggestions?
Date: Fri, 28 Apr 2000 13:33:46 -0500
From: "Glen Rhodes" <grhodesdceg [dot] com>
Subject: RE: FLASH: Y position - moving down slowly
Ok, your problem is
> Loop While (yPos<=Max)
> Set Property ("../Nav", Y Position) = "yPos"
> Set Variable: "yPos" = "yPos+.5"
> End Loop
You have to take the = "yPos" and remove the quotes..
like this..
Loop While (yPos<=Max)
Set Property ("../Nav", Y Position) = yPos
Set Variable: "yPos" = yPos+.5
End Loop
- ------------------
Glen Rhodes
dot com Entertainment Group Inc.
Tel: (905) 337-8524
Fax: (905) 337-8630
www.dceg.com
--
s t e v e | m e n d i z a b a l
f u s e m e d i a | s t u f f t h a t d o e s s t u f f
4 0 4 . 5 2 3 . 6 7 0 0
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the last 100 messages from the flasher list NOW
http://www.chinwag.com/flasher/last100.shtml
Flash books http://www.chinwag.com/flasher/books.shtml
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the last 100 messages from the flasher list NOW
http://www.chinwag.com/flasher/last100.shtml
Flash books http://www.chinwag.com/flasher/books.shtml
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
RE: FLASH: Y position - moving down slow, steve
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]