Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Christian Grass #1
text of a field member to file --> ugly characters instead of RETURN
Hello,
I have stored text within a field member. The text is line by line, that
is to say after each line a RETURN.
When writing this into a textfile, it results in ugly squares instead of
RETURNs and all is in one line.
How can I get rid of this and make it look properly? I use Director 8.5
and the FileIO Xtra.
Thank you in advance!
Chris
Christian Grass Guest
-
putting transform data from field text member
i have a scene that I want to set the transforms of the object to one's that I recorded from a startmovie handler. Ive tested the code for the... -
importing text into a field member pt2
All works fine when I import text (menu items) from an external txt file using fileIO xtra. However, forgetting security restrictions, I forgot that... -
Print text field member
I would like to allow the users to print a text field member when they play the projector. when I use: print member ("printable text... -
Printing a external text file or printing a text field cast member...
use BuddyApi Xtra to use external app. for print a file like MSWord, -
Printing a externat text file or printing a text field cast member...
Try searching the NG archives. Search on 'Print O Matic' (that's the Xtra..the lite version comes with Director). hth, doug "PrEnt"... -
Mark A. Boyd #2
Re: text of a field member to file --> ugly characters instead of RETURN
On 30 Oct 2003, Christian Grass <someone@something.net> wrote:
And probably Windows, not Mac.> How can I get rid of this and make it look properly? I use Director 8.5
> and the FileIO Xtra.
[url]http://makeashorterlink.com/?Q11025366[/url]
(tinyurl seems to be down today)
--
Mark A. Boyd
Keep-On-Learnin' :)
Mark A. Boyd Guest
-
Ned #3
Re: text of a field member to file --> ugly characters instead of RETURN
replace
RETURN
by
numToChar(13) & numToChar(10)
(or inverse order, can't remember right now) just before writing your text
to the file : windows txt file format expects CR+ LFas line ends, and not
only CR
--
----------------
-- Ned
----------------------------------------
Bien faire et laisser braire
----------------------------------------
"Christian Grass" <someone@something.net> a écrit dans le message de
news:oprxu5qpiyi5yru5@forums.macromedia.com...
| Hello,
|
| I have stored text within a field member. The text is line by line, that
| is to say after each line a RETURN.
| When writing this into a textfile, it results in ugly squares instead of
| RETURNs and all is in one line.
|
| How can I get rid of this and make it look properly? I use Director 8.5
| and the FileIO Xtra.
|
| Thank you in advance!
|
| Chris
Ned Guest
-
Christian Grass #4
Thank you !
thank you!
replacing simply the RETURNs by "numToChar(13) & numToChar(10)" works!!!
On Thu, 30 Oct 2003 17:32:40 +0100, Ned <nednet_HATES_SPAM@wanadoo.fr>
wrote:
> replace
> RETURN
> by
> numToChar(13) & numToChar(10)
> (or inverse order, can't remember right now) just before writing your
> text
> to the file : windows txt file format expects CR+ LFas line ends, and not
> only CR
>Christian Grass Guest



Reply With Quote

