Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Jerry Ndo #1
How do you scroll a text member to the bottom?
Hello all. I'm new in Director. I have a question on text scrolling. The
text, unlike field member, cannot use scrollByLine or scrollByPage. The text
that I have will be updated by the script and it needs to be in colors, thus
omitting field member as an option. It's for chat function where you will
see the last message on the bottom and the scroll has to stay on bottom
unless the user scrolls it up.
Please help.
Jerry Ndo Guest
-
Scroll Bar at bottom
I'm using a frame set and have a scroll bar at the bottom of the page I dont want. I assume this has to do with the page fitting into the browser. ... -
text attached to bottom of browser
I have some information I would like to stay at the bottom of the browser at all times (the copyright information and text links). I have an 800x600... -
Scroll bar cuts off bottom text
Flash MX I've got a scroll bar component and it works, the problem is the very last couple lines can't be seen when I scroll down. If I make a... -
body text at bottom of page
how do I get the body text to move up the page in the source code, but not on the webpage. The navigation bars push it down to where it shouldn't... -
Is it possible to detach text member from its scroll bar ???
Hi , Let's assume that I got a text member and an attached a custom scroll to it. Can I detach the text member from its scroll just for a little... -
Mark A. Boyd #2
Re: How do you scroll a text member to the bottom?
On 09 Dec 2003, "Jerry Ndo" <ndookie2000@yahoo.com> wrote:
Subtract the member's height from the sprite's height and set the member's> Hello all. I'm new in Director. I have a question on text scrolling.
> The text, unlike field member, cannot use scrollByLine or
> scrollByPage. The text that I have will be updated by the script and
> it needs to be in colors, thus omitting field member as an option.
> It's for chat function where you will see the last message on the
> bottom and the scroll has to stay on bottom unless the user scrolls it
> up.
scrollTop property to the difference.
#field members can have colors, too. It's just that if you're manipulating
chunks of text in them, you have to use the old syntax and they use the
indexed color system.
set the foreColor of word 3 of field "fieldMember" to 6
To convert a color object to a palette index:
idx = rgb(255,0,0).paletteIndex
set the foreColor of word 3 of field "fieldMember" to idx
--
Mark A. Boyd
Keep-On-Learnin' :)
Mark A. Boyd Guest
-
Jerry Ndo #3
Re: How do you scroll a text member to the bottom?
Thanks, Mark. You're da man!
"Mark A. Boyd" <mblist@sanDotrr.com> wrote in message
news:Xns944CBA22C53CBmblistssanDotrrcom@65.57.83.2 09...> On 09 Dec 2003, "Jerry Ndo" <ndookie2000@yahoo.com> wrote:
>>> > Hello all. I'm new in Director. I have a question on text scrolling.
> > The text, unlike field member, cannot use scrollByLine or
> > scrollByPage. The text that I have will be updated by the script and
> > it needs to be in colors, thus omitting field member as an option.
> > It's for chat function where you will see the last message on the
> > bottom and the scroll has to stay on bottom unless the user scrolls it
> > up.
> Subtract the member's height from the sprite's height and set the member's
> scrollTop property to the difference.
>
> #field members can have colors, too. It's just that if you're manipulating
> chunks of text in them, you have to use the old syntax and they use the
> indexed color system.
>
> set the foreColor of word 3 of field "fieldMember" to 6
>
> To convert a color object to a palette index:
>
> idx = rgb(255,0,0).paletteIndex
> set the foreColor of word 3 of field "fieldMember" to idx
>
>
> --
> Mark A. Boyd
> Keep-On-Learnin' :)
Jerry Ndo Guest



Reply With Quote

