Re: text formatting with Lingo: proprty not found

2001-05-02 Thread Clint Little
"Clint Little" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Tuesday, May 01, 2001 10:16 AM >Subject: Re: text formatting with Lingo: proprty not found > > > > > > > > > >if I sue the next message: > > >member("monitor&

RE: text formatting with Lingo: proprty not found

2001-05-01 Thread Bastien Bouchard
> > >I get an error: ...property not found: #color Try the old syntaxe: set the forecolor of word x of member("y") to... Bastien Bouchard Logique multimédia [EMAIL PROTECTED] 99 Turcot Beauport (Qué.) G1B 2L4 (418) 821-0301 [To remove yourself from this list, or to change to digest mode, go t

Re: text formatting with Lingo: proprty not found

2001-05-01 Thread Martijn Janssen
Tuesday, May 01, 2001 10:16 AM Subject: Re: text formatting with Lingo: proprty not found > > > > >if I sue the next message: > >member("monitor").char[1..12].color = rgb(200, 150, 75) > > > >I get an error: ...property not found: #color > > Is you

Re: text formatting with Lingo: proprty not found

2001-05-01 Thread Clint Little
> >if I sue the next message: >member("monitor").char[1..12].color = rgb(200, 150, 75) > >I get an error: ...property not found: #color Is your member a field by any chance? If so, then you need to use foreColor HTH, -- Clint [To remove yourself from this list, or to change to digest mode, g

text formatting with Lingo: proprty not found

2001-05-01 Thread Martijn Janssen
Hi all, I'm a newbie here, so sorry if this subject is a part of the forum's history... if I sue the next message: member("monitor").char[1..12].color = rgb(200, 150, 75) I get an error: ...property not found: #color The code is on the manual, on the site, but it doesn't seem to work for me : (

Re: Text formatting

2000-11-22 Thread Kerry Thompson
>I tested this in both D7.02 and D8.0 on Windows 98 and it works fine for >me on a whole cast member: > > member(1).topSpacing = 10 > >I haven't tested on Mac. Is that where you are seeing it fail? No, I'm running Win 98, D8, but now I can't reproduce the error either. I opted for bottomSpac

Re: Text formatting

2000-11-22 Thread James Newton
Kerry Thompson <[EMAIL PROTECTED]> > Just one adjustment in the syntax, James. Since topSpacing and > bottomSpacing are chunk expressions, it appears they can't be > applied to the cast as a whole; you have to apply it by paragraph. Hi Kerry, I tested this in both D7.02 and D8.0 on Windows 98 an

Re: Text formatting

2000-11-22 Thread Kerry Thompson
Thanks, James and Karina--problem solved. Both of your solutions worked equally well for formatting, but I went with James' solution because the line numbers are closely tied to the on-screen clues, and the extra RETURNs I was putting in was messing that up. Just one adjustment in the syntax,

RE: Text formatting

2000-11-22 Thread Karina Steffens
Hi Kerry, > I've tried doing it in a loop: >lHeight =12 >shortLine = 6 >repeat with i = 1 to text.line.count > member("clues").lineheight = lHeight > put text.line[i] after member ("clues") > member("clues").fontsize = shortLine > put " " & RETURN after member ("cl

Re: Text formatting

2000-11-22 Thread James Newton
Kerry Thompson <[EMAIL PROTECTED]> > I have a text cast member that contains a list of clues for a puzzle. > The client wants some space between the clues. ... > Ideally, what I'd like to do is have the clues in 10-point type, with > line height of 14; and the spacer lines about 6 points and heigh

Re: Text formatting

2000-11-21 Thread Colin Holgate
>I've done the same with fontsize, with the same result--the entire >cast member (and sprite) ends up the same font and spacing. The solution is to put hard returns at the end of each visual line. You can do that by using the charpostoloc() function to work out where the lines will break. Put

Text formatting

2000-11-21 Thread Kerry Thompson
First, thanks, Fumio, Mark, and Daniel for the info on duplicate(). Now I've got something that may be a bit trickier. D8, Win 98. I have a text cast member that contains a list of clues for a puzzle. The client wants some space between the clues. I'd like to just set the line height and be do

RE: FileIO & Text formatting

2000-11-02 Thread Robert Wingate
> How do I need to format a text file in order to import > individual lines into a field with FileIO, as I seem to > get that annoying square box before each line once read in. Read these: http://www.macromedia.com/support/director/ts/documents/tn3133.html http://www.macromedia.com/support/dire

FileIO & Text formatting

2000-11-02 Thread David Kimmer
How do I need to format a text file in order to import individual lines into a field with FileIO, as I seem to get that annoying square box before each line once read in. Am I making sense? Dave. - [To remove yourself from this list, or t