Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: FLASH RE: two questions |
From: | Matt Perkins |
Date: | Fri, 5 May 2000 16:46:35 +0100 |
you can use action script to scroll the text ... i think that animating it
scrolling and going to the next/prev frame is a horrible way to scroll the
text. all of the tut's that i've seen did it this way.
here is a basic way to do it in as (this is a scroll up) you should be able
to change the referances to make it work with the other swf.
On (Press)
Set Variable: "scrollstep" = /:scrollstepm
Set Variable: "textheight" = GetProperty("rambletext",_height)
Set Variable: "texty" = GetProperty("rambletext",_y)
Set Variable: "textlowery" = textheight + texty
Set Variable: "maskheight" = GetProperty("ramblemask",_height)
Set Variable: "masky" = GetProperty("ramblemask",_y)
Set Variable: "masklowery" = maskheight + masky
Set Variable: "newloc" = texty+scrollstep
Set Variable: "newlowery" = textheight + newloc
If (texty <= masky)
Set Property ("rambletext", Y Position) = newloc
End If
End On
since you're using a mask, basiclly don't let the bottom of the text go
above the bottom of the mask. did that make any sence?
> ::: Matt Perkins
> sol_6 ::: http://hfaze.ice.org
hfazevnet [dot] net
icq: 2690753
-----Original Message-----
From: ownerchinwag [dot] com [ownerchinwag [dot] com]On">mailto:ownerchinwag [dot] com]On Behalf Of kumi
Sent: Friday, May 05, 2000 11:20 AM
To: flasherchinwag [dot] com
Subject: FLASH: FLASH RE: two questions
hello i have a couple of questions:
1) i have a swf file inside a swf file, where i want to load a text file
that scrolls with up/down buttons. i downloaded a tutorial which scrolls a
loaded text file, but it's not inside another swf file. when i incorporated
it into my file, it didn't scroll the text. is it because in my case i have
a swf file in another? how can i make it work?
2) i'm rephrasing a question i asked before, since i didn't get any
response, i thought i wasn't clear enough... when the user inputs their user
name and password to login, i want the user name to appear later to
personalize their visit to the site. I have been trying with text fields and
variables, but i don't really know what to do. Please help!
thanks
kumi
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
FLASH: FLASH RE: two questions, kumi
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]