Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Preserving Datatype formatting.

 [1/5] from: edanaii::cox::net at: 21-Feb-2003 14:39


OK. Next dumb question. :) How do I preserve datatype formatting? In other words, given the following:
>> Print %ThisFile.r
ThisFile.r
>> Print "Text"
Text How do I get this instead:
>> Print To-Magic-Function %ThisFile.r
%ThisFile.r
>> Print To-Magic-Function "Text"
Text Notice that the datatype specifiers (%") are displayed, not removed. If there is a function to do this, I have not found it yet. -- Sincerely, | Nearly all men can stand adversity, but if you Ed Dana | want to test a man's character, give him power. Software Developer | -- Abraham Lincoln 1Ghz Athlon Amiga |

 [2/5] from: edanaii:cox at: 21-Feb-2003 14:44


Ed Dana wrote:
> OK. > > Next dumb question. :) > > How do I preserve datatype formatting? >
You know. No sooner do I ask the question than I find the answer. :) It appears to be Mold. Someone please correct me if I'm wrong. -- Sincerely, | The Traveller awaits the morning tide. He doesn't Ed Dana | know what's on the other side. But something deep Software Developer | inside of him keeps telling him to go. He hasn't 1Ghz Athlon Amiga | found a reason to say no. | -- the Alan Parsons Project, Days are Numbers. =========== http://OurWorld.CompuServe.com/Homepages/EDanaII ===========

 [3/5] from: chris:ross-gill at: 21-Feb-2003 17:21


Hi Ed,
> In other words, given the following: > >> Print %ThisFile.r
<<quoted lines omitted: 6>>
> >> Print To-Magic-Function "Text" > "Text"
Use 'mold.
>> Print mold %ThisFile.r
%ThisFile.r
>> Print mold "Text"
"Text" HTH. - Chris

 [4/5] from: greggirwin:mindspring at: 21-Feb-2003 15:58


Hi Ed, ED> You know. No sooner do I ask the question than I find the answer. :) ED> It appears to be Mold. Yes, that's correct. -- Gregg

 [5/5] from: ptretter:charter at: 21-Feb-2003 16:53


such as: print mold %Thisfile.r %Thisfile.r

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted