Computer Science Canada Text area with certain height and width (without GUI?) |
Author: | mooki3 [ Thu Jan 12, 2012 9:48 pm ] | ||
Post subject: | Text area with certain height and width (without GUI?) | ||
What is it you are trying to achieve? I want to create a text area at a specific location with specific dimensions. If the text goes beyond the amount of space given, it will simply scroll down. I'm planning to put a set of questions inside, so there will be some coding (I don't want the text to show up, I want what I actually coded) What is the problem you are having? Is it possible to do this without GUI? Describe what you have tried to solve this problem I've tried GUI, but it will only show the text, not the actual program I've written. If it happens that GUI can execute the program, it would be helpful to know how!
Please specify what version of Turing you are using 4.1.1 |
Author: | Raknarg [ Thu Jan 12, 2012 9:55 pm ] |
Post subject: | RE:Text area with certain height and width (without GUI?) |
I think what you're looking for is the font module. Look it up. Basically you call a variable to a new font and use that in Font.Draw |
Author: | mooki3 [ Thu Jan 12, 2012 10:10 pm ] |
Post subject: | Re: Text area with certain height and width (without GUI?) |
Ermm, I don't think I need Font.Draw. I want to make a textbox where I can put my program inside (Not the actual text, I want what the program is supposed to do) |
Author: | Tony [ Thu Jan 12, 2012 10:45 pm ] | ||
Post subject: | RE:Text area with certain height and width (without GUI?) | ||
a window in text mode? View.Set
If you want to stay in graphics mode, then you can use locate to move your puts around. |