Flasher Archive

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


Subject: FLASH: Click and hold scrollable text
From: Paul Kilgour
Date: Thu, 9 Mar 2000 18:14:01 GMT

Hi all,

I'm trying to do some click and hold scrollable text, but it's not working.

This is the Action for the 'Up' button:

On (Press,Key:<Up>)
Set Variable: "currentScroll" = scrollableText.scroll
If (currentScroll > 1)
Set Variable: "scrollableText.scroll" = currentScroll - 1
End If
End On


This is the Action for the 'Down' button:

On (Press,Key:<Down>)
Set Variable: "currentScroll" = scrollableText.scroll
If (currentScroll < scrollableText.maxscroll)
Set Variable: "scrollableText.scroll" = currentScroll + 1
End If
End On

This is the Frame Action:

Set Variable:"scrollableText"=my text goes here"

This is as per Colin Moock's tutorial. As far as I can see. I would write to
Colin, but his site is showing a red background!!!

Basically, it's only allowing me to scroll the text one line at a time,
which is how I always had it before I tried to do it this way.

Can anyone see what's wrong?

Also, the text is coming out white! How do I get the text the colour that I
want it?

Many thanks in advance.



flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and The Flash Film Festival
"The World�s Premier Flash Solutions Conference and Expo"
March 27-29, Nob Hill Masonic Center, San Francisco, California

-Register before Feb 25 and save $200!!-- www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  Re: FLASH: Click and hold scrollable tex, Neal Cabage

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