Difference between revisions of "AMOSi:Text"

From Amiga Coding
Jump to: navigation, search
 
(now contains the correct article)
 
Line 1: Line 1:
#REDIRECT [[AMOSi:Text instructions]]
+
<i>an example can be found on AMOSPro_Examples:Examples/H-7/Help_79.AMOS</i>
 +
 
 +
 
 +
Prints some graphic TEXT at your chosen SCREEN coordinates.
 +
 
 +
 
 +
<code><pre>
 +
Text x,y,t$
 +
</pre></code>
 +
 
 +
 
 +
Note: t$ must be a string. If you want to use a number you must first convert it into a string with the STR$ function.

Latest revision as of 01:33, 18 November 2007

an example can be found on AMOSPro_Examples:Examples/H-7/Help_79.AMOS


Prints some graphic TEXT at your chosen SCREEN coordinates.


Text x,y,t$


Note: t$ must be a string. If you want to use a number you must first convert it into a string with the STR$ function.