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 18:46:56 +0100

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

-----Original Message-----
From: owneratchinwag [dot] com [owneratchinwag [dot] com]On">mailto:owneratchinwag [dot] com]On Behalf Of
steveatfuse-media [dot] com
Sent: Friday, April 28, 2000 12:15 PM
To: flasheratchinwag [dot] com
Subject: RE: FLASH: Y position - moving down slowly


ok. I guess I'm just dense. this is what I have and it's giving me an
infinite loop error:

Set Variable: "Max" = "300"
Set Variable: "yPos" = GetProperty ("../Nav", _y)
If (MovieCheck eq "1")
Unload Movie (1)
Load Movie ("1.swf", 1)
Loop While (yPos<=Max)
Set Property ("../Nav", Y Position) = "yPos"
Set Variable: "yPos" = "yPos+.5"
End Loop
Go to and Stop (2)
Else If (MovieCheck eq "2")
Unload Movie (1)
Load Movie ("2.swf", 1)
Go to and Stop (2)
End If
--
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 helpatchinwag [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 helpatchinwag [dot] com


Replies
  Re: FLASH: Y position - moving down slow, Helen Triolo

Replies
  RE: FLASH: Y position - moving down slow, steve

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