<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://miniscript.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=71.226.33.30</id>
	<title>MiniScript Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://miniscript.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=71.226.33.30"/>
	<link rel="alternate" type="text/html" href="http://miniscript.org/wiki/Special:Contributions/71.226.33.30"/>
	<updated>2026-09-22T10:48:29Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.0</generator>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.pixel&amp;diff=333</id>
		<title>Image.pixel</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.pixel&amp;diff=333"/>
		<updated>2020-04-01T23:06:41Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Image]].pixel&amp;lt;/c&amp;gt; returns the color of a specific pixel in the image.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || horizontal coordinate of the pixel of interest, from 0 to width - 1&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || vertical coordinate of the pixel of interest, from 0 to height - 1&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&lt;br /&gt;
		//	print img.pixel(5, 7)&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.setPixel&amp;diff=332</id>
		<title>Image.setPixel</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.setPixel&amp;diff=332"/>
		<updated>2020-04-01T23:06:22Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Image]].setPixel&amp;lt;/c&amp;gt; sets the color of a specific pixel in the image. &lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || horizontal coordinate of the pixel of interest, from 0 to width - 1&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || vertical coordinate of the pixel of interest, from 0 to height - 1&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&lt;br /&gt;
		//	img.setPixel 5, 7, color.green&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.loop&amp;diff=331</id>
		<title>Sound.loop</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.loop&amp;diff=331"/>
		<updated>2020-04-01T23:05:51Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.loop&amp;lt;/c&amp;gt; controls whether a sound will play just once (false) or will repeat indefinitely (true) when played with Sound.play.  &amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/so...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].loop&amp;lt;/c&amp;gt; controls whether a sound will play just once (false) or will&lt;br /&gt;
repeat indefinitely (true) when played with [[Sound.play.]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/sounds/bonus.wav&amp;quot;)&lt;br /&gt;
		//	s.loop = true&lt;br /&gt;
		//	s.play; key.get; s.stop&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.mix&amp;diff=330</id>
		<title>Sound.mix</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.mix&amp;diff=330"/>
		<updated>2020-04-01T23:03:36Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].mix&amp;lt;/c&amp;gt; mixes another synthesized sound into this one, producing a more&lt;br /&gt;
complex sound.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''sound'' || Sound Object || || Other sound (already prepared with sound.init) to mix in&lt;br /&gt;
|-&lt;br /&gt;
| ''level'' || number || 1 || volume of other mixed-in sound relative to this one&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;daDing = new Sound&lt;br /&gt;
		//	daDing.init 0.5, noteFreq(72), [1, 1, 0]&lt;br /&gt;
		//	dd2 = new Sound&lt;br /&gt;
		//	dd2.init 0.5, noteFreq(84), [0]*40 + range(1, 0, -0.01)&lt;br /&gt;
		//	daDing.mix dd2&lt;br /&gt;
		//	daDing.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.mix&amp;diff=329</id>
		<title>Sound.mix</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.mix&amp;diff=329"/>
		<updated>2020-04-01T23:03:28Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.mix&amp;lt;/c&amp;gt; mixes another synthesized sound into this one, producing a more complex sound.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! De...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].mix&amp;lt;/c&amp;gt; mixes another synthesized sound into this one, producing a more&lt;br /&gt;
complex sound.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''sound'' || Sound Object || || Other sound (already prepared with sound.init) to mix in&lt;br /&gt;
|-&lt;br /&gt;
| ''level'' || number || 1 || volume of other mixed-in sound relative to this one&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;daDing = new Sound&lt;br /&gt;
		//	daDing.init 0.5, noteFreq(72), [1, 1, 0]&lt;br /&gt;
		//	dd2 = new Sound&lt;br /&gt;
		//	dd2.init 0.5, noteFreq(84), [0]*40 + range(1, 0, -0.01)&lt;br /&gt;
		//	daDing.mix dd2&lt;br /&gt;
		//	daDing.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.stop&amp;diff=328</id>
		<title>Sound.stop</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.stop&amp;diff=328"/>
		<updated>2020-04-01T23:00:58Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.stop&amp;lt;/c&amp;gt; stops this sound if it is currently playing.  == Example ==  &amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/sounds/bonus.wav&amp;quot;) s.loop = true s.play; key.get; s.stop&amp;lt;/ms&amp;gt;  Ca...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Sound.stop&amp;lt;/c&amp;gt; stops this sound if it is currently playing.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/sounds/bonus.wav&amp;quot;)&lt;br /&gt;
s.loop = true&lt;br /&gt;
s.play; key.get; s.stop&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.play&amp;diff=327</id>
		<title>Sound.play</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.play&amp;diff=327"/>
		<updated>2020-04-01T22:58:32Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].play&amp;lt;/c&amp;gt; plays a sound.  Call this on a Sound object initialized either&lt;br /&gt;
Sound.init, or loaded via file.loadSound.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''volume'' || number || 1 || volume (0-1) of the sound&lt;br /&gt;
|-&lt;br /&gt;
| ''pan'' || number || 0 || left (-1) to right (1) stereo pan of the sound&lt;br /&gt;
|-&lt;br /&gt;
| ''speed'' || number || 1 || speed multiplier (1 == standard speed)&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
the sound will automatically stop if .loop is false, but will repeat until explicitly&lt;br /&gt;
stopped if .loop is true.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/sounds/bonus.wav&amp;quot;)&lt;br /&gt;
s.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.play&amp;diff=326</id>
		<title>Sound.play</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.play&amp;diff=326"/>
		<updated>2020-04-01T22:57:57Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.play&amp;lt;/c&amp;gt; plays a sound.  Call this on a Sound object initialized either Sound.init, or loaded via file.loadSound.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Param...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Sound.play&amp;lt;/c&amp;gt; plays a sound.  Call this on a Sound object initialized either&lt;br /&gt;
Sound.init, or loaded via file.loadSound.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''volume'' || number || 1 || volume (0-1) of the sound&lt;br /&gt;
|-&lt;br /&gt;
| ''pan'' || number || 0 || left (-1) to right (1) stereo pan of the sound&lt;br /&gt;
|-&lt;br /&gt;
| ''speed'' || number || 1 || speed multiplier (1 == standard speed)&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
the sound will automatically stop if .loop is false, but will repeat until explicitly&lt;br /&gt;
stopped if .loop is true.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;s = file.loadSound(&amp;quot;/sys/sounds/bonus.wav&amp;quot;)&lt;br /&gt;
s.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.stopAll&amp;diff=325</id>
		<title>Sound.stopAll</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.stopAll&amp;diff=325"/>
		<updated>2020-04-01T22:49:25Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].stopAll&amp;lt;/c&amp;gt; stops all currently playing sounds.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.init&amp;diff=324</id>
		<title>Sound.init</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.init&amp;diff=324"/>
		<updated>2020-04-01T22:48:35Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.init&amp;lt;/c&amp;gt; synthesizes a sound from various parameters, including look-up tables that represent one cycle of the waveform and the volume envelope.  === Usage Notes...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].init&amp;lt;/c&amp;gt; synthesizes a sound from various parameters, including look-up tables&lt;br /&gt;
that represent one cycle of the waveform and the volume envelope.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
Call this on a new Sound object, or to reset a previous one.&lt;br /&gt;
duration (number, default 1): length of the sound, in seconds&lt;br /&gt;
freq (number, default 440): number of repeats of the waveform per second&lt;br /&gt;
envelope (list): volume (0 to 1) over the duration of the sound&lt;br /&gt;
waveform (list): wave value (-1 to 1) over one cycle&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;pew = new Sound&lt;br /&gt;
pew.init 0.3, [8000,100], [1,0]&lt;br /&gt;
pew.play&lt;br /&gt;
Example 2:&lt;br /&gt;
hitSnd = new Sound&lt;br /&gt;
hitSnd.init 1, 100, [1,0], Sound.noiseWave&lt;br /&gt;
hitSnd.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.stopAll&amp;diff=323</id>
		<title>Sound.stopAll</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.stopAll&amp;diff=323"/>
		<updated>2020-04-01T22:45:50Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.stopAll&amp;lt;/c&amp;gt; stops all currently playing sounds.  Category:Mini Micro&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Sound.stopAll&amp;lt;/c&amp;gt; stops all currently playing sounds.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.noiseWave&amp;diff=321</id>
		<title>Sound.noiseWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.noiseWave&amp;diff=321"/>
		<updated>2020-04-01T22:43:06Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.noiseWave&amp;lt;/c&amp;gt; returns a collection of random values.  === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produces a slightly buzz...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].noiseWave&amp;lt;/c&amp;gt; returns a collection of random values.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For use with the ''waveform'' parameter of [[Sound.init]].&lt;br /&gt;
This produces a slightly buzzy, retro tone.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.sawtoothWave&amp;diff=320</id>
		<title>Sound.sawtoothWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.sawtoothWave&amp;diff=320"/>
		<updated>2020-04-01T22:42:02Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.sawtoothWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a sawtooth wave.  === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This pr...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].sawtoothWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a sawtooth wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For use with the ''waveform'' parameter of [[Sound.init]].&lt;br /&gt;
This produces a slightly buzzy, retro tone.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.triangleWave&amp;diff=319</id>
		<title>Sound.triangleWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.triangleWave&amp;diff=319"/>
		<updated>2020-04-01T22:41:06Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].triangleWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a triangle wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For use with the ''waveform'' parameter of [[Sound.init]].&lt;br /&gt;
This produces a clean sound, almost like a sine wave.&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.triangleWave&amp;diff=318</id>
		<title>Sound.triangleWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.triangleWave&amp;diff=318"/>
		<updated>2020-04-01T22:40:55Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.triangleWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a triangle wave.  === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produc...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Sound.triangleWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a triangle wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For use with the ''waveform'' parameter of [[Sound.init]].&lt;br /&gt;
This produces a clean sound, almost like a sine wave.&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.squareWave&amp;diff=317</id>
		<title>Sound.squareWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.squareWave&amp;diff=317"/>
		<updated>2020-04-01T22:39:20Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.squareWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a square wave.  === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produc...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].squareWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a square wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For use with the ''waveform'' parameter of [[Sound.init]].&lt;br /&gt;
This produces a buzzy, old-school &amp;quot;chip tone&amp;quot; sound.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.sineWave&amp;diff=316</id>
		<title>Sound.sineWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.sineWave&amp;diff=316"/>
		<updated>2020-04-01T22:38:10Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].sineWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a sine wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
&amp;lt;c&amp;gt;[[Sound]].sineWave&amp;lt;/c&amp;gt; produces a smooth, pure tone.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.sineWave&amp;diff=315</id>
		<title>Sound.sineWave</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.sineWave&amp;diff=315"/>
		<updated>2020-04-01T22:37:47Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Sound.sineWave&amp;lt;/c&amp;gt; returns a 128-element list approximating a sine wave.  === Usage Notes === &amp;lt;c&amp;gt;Sound.sineWave&amp;lt;/c&amp;gt; produces a smooth, pure tone.  Category:Mini M...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound.sineWave]]&amp;lt;/c&amp;gt; returns a 128-element list approximating a sine wave.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
&amp;lt;c&amp;gt;[[Sound.sineWave]]&amp;lt;/c&amp;gt; produces a smooth, pure tone.&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.getImage&amp;diff=314</id>
		<title>Image.getImage</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.getImage&amp;diff=314"/>
		<updated>2020-04-01T22:35:14Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Image.getImage&amp;lt;/c&amp;gt; returns a rectangular portion of the image as a new image.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''left'' || number || 0 || leftmost horizontal coordinate of the portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''bottom'' || number || 0 || lowest vertical coordinate of the portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''width'' || number || image.width || width (in pixels) of portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''height'' || number || image.height || height (in pixels) of portion to get)&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Wumpus.png&amp;quot;)&lt;br /&gt;
		//	eyes = img.getImage(35, 59, 60, 48)&lt;br /&gt;
		//	view eyes&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.getImage&amp;diff=313</id>
		<title>Image.getImage</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.getImage&amp;diff=313"/>
		<updated>2020-04-01T22:35:03Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Image.getImage&amp;lt;/c&amp;gt; returns a rectangular portion of the image as a new image.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! Default Value !! Mean...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Image.getImage&amp;lt;/c&amp;gt; returns a rectangular portion of the image as a new image.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''left'' || number || 0 || leftmost horizontal coordinate of the portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''bottom'' || number || 0 || lowest vertical coordinate of the portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''width'' || number || image.width || width (in pixels) of portion to get&lt;br /&gt;
|-&lt;br /&gt;
| ''height'' || number || image.height || height (in pixels) of portion to get)&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Wumpus.png&amp;quot;)&lt;br /&gt;
		//	eyes = img.getImage(35, 59, 60, 48)&lt;br /&gt;
		//	view eyes&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.setPixel&amp;diff=312</id>
		<title>Image.setPixel</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.setPixel&amp;diff=312"/>
		<updated>2020-04-01T22:30:55Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Image.setPixel&amp;lt;/c&amp;gt; sets the color of a specific pixel in the image.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! Default Value !! Meaning |- | '...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Image.setPixel&amp;lt;/c&amp;gt; sets the color of a specific pixel in the image. &lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || horizontal coordinate of the pixel of interest, from 0 to width - 1&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || vertical coordinate of the pixel of interest, from 0 to height - 1&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&lt;br /&gt;
		//	img.setPixel 5, 7, color.green&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.pixel&amp;diff=311</id>
		<title>Image.pixel</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.pixel&amp;diff=311"/>
		<updated>2020-04-01T22:29:18Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Image.pixel&amp;lt;/c&amp;gt; returns the color of a specific pixel in the image.  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Image.pixel&amp;lt;/c&amp;gt; returns the color of a specific pixel in the image.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || horizontal coordinate of the pixel of interest, from 0 to width - 1&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || vertical coordinate of the pixel of interest, from 0 to height - 1&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&lt;br /&gt;
		//	print img.pixel(5, 7)&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Image.width&amp;diff=308</id>
		<title>Image.width</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Image.width&amp;diff=308"/>
		<updated>2020-04-01T22:24:35Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Image.width&amp;lt;/c&amp;gt; returns the width of the image, in pixels.  (Read-only.)  == Example ==  &amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&amp;lt;/ms&amp;gt;  Category:Mini Micro&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Image.width&amp;lt;/c&amp;gt; returns the width of the image, in pixels.  (Read-only.)&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;img = file.loadImage(&amp;quot;/sys/pics/Dart.png&amp;quot;)&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.print&amp;diff=307</id>
		<title>TextDisplay.print</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.print&amp;diff=307"/>
		<updated>2020-04-01T22:18:04Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.print&amp;lt;/c&amp;gt; prints a given string to this text display, followed by whatever&lt;br /&gt;
[[TextDisplay.delimiter]] contains.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''s'' || string || &amp;quot;&amp;quot; || string to print&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For the default text display,&lt;br /&gt;
this is equivalent to [[print]] by itself, so calling this as a&lt;br /&gt;
TextDisplay method is mainly useful when you have set up multiple&lt;br /&gt;
text displays.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.print &amp;quot;Hello World!&amp;quot;&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.print&amp;diff=306</id>
		<title>TextDisplay.print</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.print&amp;diff=306"/>
		<updated>2020-04-01T22:17:58Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.print&amp;lt;/c&amp;gt; prints a given string to this text display, followed by whatever TextDisplay.delimiter contains.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Pa...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.print&amp;lt;/c&amp;gt; prints a given string to this text display, followed by whatever&lt;br /&gt;
[[TextDisplay.delimiter]] contains.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''s'' || string || &amp;quot;&amp;quot; || string to print&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
For the default text display,&lt;br /&gt;
this is equivalent to [[print]] by itself, so calling this as a&lt;br /&gt;
TextDisplay method is mainly useful when you have set up multiple&lt;br /&gt;
text displays.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.print &amp;quot;Hello World!&amp;quot;&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.setCellBackColor&amp;diff=305</id>
		<title>TextDisplay.setCellBackColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.setCellBackColor&amp;diff=305"/>
		<updated>2020-04-01T22:14:24Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.setCellBackColor&amp;lt;/c&amp;gt; changes the background color of the given cell.  See also: TextDisplay.cellBackColor  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Para...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.setCellBackColor&amp;lt;/c&amp;gt; changes the background color of the given cell.&lt;br /&gt;
&lt;br /&gt;
See also: [[TextDisplay.cellBackColor]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
&amp;lt;c&amp;gt;TextDisplay.setCellBackColor&amp;lt;/c&amp;gt; may appear as either the text color or the surrounding color, depending&lt;br /&gt;
on whether the given cell is in inverse mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.setCellBackColor 0, 10, color.blue&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.cellBackColor&amp;diff=304</id>
		<title>TextDisplay.cellBackColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.cellBackColor&amp;diff=304"/>
		<updated>2020-04-01T22:11:55Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.cellBackColor&amp;lt;/c&amp;gt; returns the background color of the given cell.  See also:  TextDisplay.setCellBackColor  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Par...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.cellBackColor&amp;lt;/c&amp;gt; returns the background color of the given cell.&lt;br /&gt;
&lt;br /&gt;
See also:  [[TextDisplay.setCellBackColor]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
&amp;lt;c&amp;gt;TextDisplay.cellBackColor&amp;lt;/c&amp;gt; may appear as either the text color or the surrounding color, depending&lt;br /&gt;
on whether the given cell is in inverse mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print text.cellBackColor 0, 10&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.setCellColor&amp;diff=303</id>
		<title>TextDisplay.setCellColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.setCellColor&amp;diff=303"/>
		<updated>2020-04-01T22:09:24Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.setCellColor&amp;lt;/c&amp;gt; changes the foreground color of the given cell.&lt;br /&gt;
&lt;br /&gt;
See also: [[TextDisplay.cellColor]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''color'' || string || #FFFFFF || color to apply&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This may appear as either the text color or the surrounding color, depending&lt;br /&gt;
on whether the given cell is in inverse mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.setCellColor 0, 10, color.red&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.setCellColor&amp;diff=302</id>
		<title>TextDisplay.setCellColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.setCellColor&amp;diff=302"/>
		<updated>2020-04-01T22:09:00Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.setCellColor&amp;lt;/c&amp;gt; changes the foreground color of the given cell.   === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! Default Value !! Meani...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.setCellColor&amp;lt;/c&amp;gt; changes the foreground color of the given cell.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''color'' || string || #FFFFFF || color to apply&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This may appear as either the text color or the surrounding color, depending&lt;br /&gt;
on whether the given cell is in inverse mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.setCellColor 0, 10, color.red&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.cellColor&amp;diff=301</id>
		<title>TextDisplay.cellColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.cellColor&amp;diff=301"/>
		<updated>2020-04-01T22:06:29Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.cellColor&amp;lt;/c&amp;gt; returns the foreground color of the given cell.  See also: TextDisplay.setCellColor  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Na...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.cellColor&amp;lt;/c&amp;gt; returns the foreground color of the given cell.&lt;br /&gt;
&lt;br /&gt;
See also: [[TextDisplay.setCellColor]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This may appear as either the text color or the surrounding color, depending&lt;br /&gt;
on whether the given cell is in inverse mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print text.cellColor 0, 10&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.setCell&amp;diff=300</id>
		<title>TextDisplay.setCell</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.setCell&amp;diff=300"/>
		<updated>2020-04-01T22:04:08Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.setCell&amp;lt;/c&amp;gt; Directly sets a character into a given row and column of the text display.  This does not use (or change) the cursor position, nor does it apply the...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.setCell&amp;lt;/c&amp;gt; Directly sets a character into a given row and column of the text&lt;br /&gt;
display.  This does not use (or change) the cursor position, nor&lt;br /&gt;
does it apply the current text colors or inverse mode; it only change&lt;br /&gt;
the character displayed.&lt;br /&gt;
&lt;br /&gt;
See also: [[TextDisplay.cell]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of cell to change&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of cell to change&lt;br /&gt;
|-&lt;br /&gt;
| ''character'' || string || &amp;quot;&amp;quot; || character to store in the given cell&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.setCell 0, 10, &amp;quot;@&amp;quot;&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.cell&amp;diff=299</id>
		<title>TextDisplay.cell</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.cell&amp;diff=299"/>
		<updated>2020-04-01T21:59:55Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.cell&amp;lt;/c&amp;gt; returns the character stored at a given row and column of the text display.  See also: TextDisplay.setCell  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.cell&amp;lt;/c&amp;gt; returns the character stored at a given row and column&lt;br /&gt;
of the text display.&lt;br /&gt;
&lt;br /&gt;
See also: [[TextDisplay.setCell]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''x'' || number || 0 || column of interest&lt;br /&gt;
|-&lt;br /&gt;
| ''y'' || number || 0 || row of interest&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print text.cell(0,25)		// print character in top-left corner&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.delimiter&amp;diff=298</id>
		<title>TextDisplay.delimiter</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.delimiter&amp;diff=298"/>
		<updated>2020-04-01T21:57:15Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.delimiter&amp;lt;/c&amp;gt;: This value is a string which is printed after every print output.  === Usage Notes === Its default value is char(13), which is a carriage ret...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.delimiter&amp;lt;/c&amp;gt;: This value is a string which is printed after every [[print]] output.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
Its default value is char(13), which is a carriage return (moves the&lt;br /&gt;
cursor to the start of the next line).  You may set it to &amp;quot;&amp;quot; (empty&lt;br /&gt;
string) if you want no delimiter, allowing you to print several things&lt;br /&gt;
in a row all on the same line.  Note that TextDisplay.clear does not&lt;br /&gt;
reset this value; you will need to manually reassign char(13) to it&lt;br /&gt;
to restore normal behavior.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.delimiter = &amp;quot;&amp;quot;&lt;br /&gt;
		//	print &amp;quot;one&amp;quot;&lt;br /&gt;
		//	print &amp;quot;two&amp;quot;&lt;br /&gt;
		//	text.delimiter = char(13)&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.inverse&amp;diff=297</id>
		<title>TextDisplay.inverse</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.inverse&amp;diff=297"/>
		<updated>2020-04-01T21:55:11Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.inverse&amp;lt;/c&amp;gt; gets or sets whether subsequent printing should be done in &amp;quot;inverse&amp;quot; mode,&lt;br /&gt;
where the foreground and background colors are swapped.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This mode may also be controlled by printing two special characters: &lt;br /&gt;
char(134) sets inverse to true, and char(135) sets inverse to false.)&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.inverse = true; print &amp;quot; BLOCKY &amp;quot;; text.inverse = false&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.inverse&amp;diff=296</id>
		<title>TextDisplay.inverse</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.inverse&amp;diff=296"/>
		<updated>2020-04-01T21:54:58Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.inverse&amp;lt;/c&amp;gt; gets or sets whether subsequent printing should be done in &amp;quot;inverse&amp;quot; mode, where the foreground and background colors are swapped.  === Usage Notes...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.inverse&amp;lt;/c&amp;gt; gets or sets whether subsequent printing should be done in &amp;quot;inverse&amp;quot; mode,&lt;br /&gt;
where the foreground and background colors are swapped.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
this mode may also be controlled by printing two special characters: &lt;br /&gt;
char(134) sets inverse to true, and char(135) sets inverse to false.)&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.inverse = true; print &amp;quot; BLOCKY &amp;quot;; text.inverse = false&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.row&amp;diff=295</id>
		<title>TextDisplay.row</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.row&amp;diff=295"/>
		<updated>2020-04-01T21:53:29Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.row&amp;lt;/c&amp;gt; gets or sets the row of the text cursor, where subsequent printing will begin.  Row values range from 0 at the bottom of the screen, to 25 at the top....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.row&amp;lt;/c&amp;gt; gets or sets the row of the text cursor, where subsequent printing will&lt;br /&gt;
begin.  Row values range from 0 at the bottom of the screen, to 25 at the top.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.row = 25; print &amp;quot;At the top!&amp;quot;&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.column&amp;diff=294</id>
		<title>TextDisplay.column</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.column&amp;diff=294"/>
		<updated>2020-04-01T21:52:28Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.column&amp;lt;/c&amp;gt; gets or sets the column of the text cursor, where subsequent printing will begin.  Column values range from 0 on the left to 67 on the right.  == Exa...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.column&amp;lt;/c&amp;gt; gets or sets the column of the text cursor, where subsequent printing&lt;br /&gt;
will begin.  Column values range from 0 on the left to 67 on the right.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.column = 60; print &amp;quot;HEY!&amp;quot;&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.backColor&amp;diff=293</id>
		<title>TextDisplay.backColor</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.backColor&amp;diff=293"/>
		<updated>2020-04-01T21:51:13Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.backColor&amp;lt;/c&amp;gt; gets or sets the background color used on any future printing to this text display.  This is the surrounding color for normal text, or the text co...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.backColor&amp;lt;/c&amp;gt; gets or sets the background color used on any future printing to this&lt;br /&gt;
text display.  This is the surrounding color for normal text, or the&lt;br /&gt;
text color for inverse-mode text.&lt;br /&gt;
&lt;br /&gt;
= Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.backColor = color.navy&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.color&amp;diff=292</id>
		<title>TextDisplay.color</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.color&amp;diff=292"/>
		<updated>2020-04-01T21:50:04Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.color&amp;lt;/c&amp;gt; gets or sets the foreground color used on any future printing to this text display.  This is the text color for normal text, or the surrounding color...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.color&amp;lt;/c&amp;gt; gets or sets the foreground color used on any future printing to this&lt;br /&gt;
text display.  This is the text color for normal text, or the surrounding&lt;br /&gt;
color for inverse-mode text.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.color = color.aqua&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=TextDisplay.clear&amp;diff=291</id>
		<title>TextDisplay.clear</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=TextDisplay.clear&amp;diff=291"/>
		<updated>2020-04-01T21:48:14Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;TextDisplay.clear&amp;lt;/c&amp;gt; clears the text display, setting all cells to &amp;quot; &amp;quot; (space), with inverse turned off and all cell colors set to the match the display properties.  === U...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;TextDisplay.clear&amp;lt;/c&amp;gt; clears the text display, setting all cells to &amp;quot; &amp;quot; (space), with&lt;br /&gt;
inverse turned off and all cell colors set to the match the display&lt;br /&gt;
properties.&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This method does **not** change the cursor&lt;br /&gt;
position, nor does it reset TextDisplay.delimiter.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;text.clear   // clears the default text display&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=SolidColorDisplay.color&amp;diff=290</id>
		<title>SolidColorDisplay.color</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=SolidColorDisplay.color&amp;diff=290"/>
		<updated>2020-04-01T21:46:20Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;SolidColorDisplay.color&amp;lt;/c&amp;gt; gets or sets the color shown by this display.  The alpha channel	is functional, so you can make such a display semi-transparent.  == Example ==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;SolidColorDisplay.color&amp;lt;/c&amp;gt; gets or sets the color shown by this display.  The alpha channel	is functional, so you can make such a display semi-transparent.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;display(0).mode = displayMode.solidColor&lt;br /&gt;
display(0).color = &amp;quot;#0000FF88&amp;quot;  // semi-transparent blue&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Display.mode&amp;diff=289</id>
		<title>Display.mode</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Display.mode&amp;diff=289"/>
		<updated>2020-04-01T21:44:41Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;Display.mode&amp;lt;/c&amp;gt; this property gives (or allows you to change) the mode of a Display instance.  See also: displayMode  === Usage Notes === When you assign a different m...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;Display.mode&amp;lt;/c&amp;gt; this property gives (or allows you to change) the mode of a&lt;br /&gt;
Display instance.&lt;br /&gt;
&lt;br /&gt;
See also: [[displayMode]]&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
When you assign a different mode,&lt;br /&gt;
Mini Micro actually removes the Display instance from the&lt;br /&gt;
display list, and inserts a new one of the correct Display&lt;br /&gt;
subclass.  You may hang onto (and work with, off-screen) a&lt;br /&gt;
previous reference to the removed Display.  If you want a&lt;br /&gt;
reference to the new Display, be sure to assign it *after*&lt;br /&gt;
assigning to the mode.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;display(4).mode = displayMode.pixel	// set display 4 to pixel mode&lt;br /&gt;
		//		g = display(4)		// grab a reference to it as g&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Mouse.visible&amp;diff=259</id>
		<title>Mouse.visible</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Mouse.visible&amp;diff=259"/>
		<updated>2020-03-24T15:42:00Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;mouse.visible&amp;lt;/c&amp;gt; controls whether the mouse cursor is currently visible.  Assign false (0) to this to hide the mouse cursor, and true (1) to show it again.  == Example ==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;mouse.visible&amp;lt;/c&amp;gt; controls whether the mouse cursor is currently visible.  Assign false (0) to this to hide the mouse cursor, and true (1) to show it again.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;mouse.visible = false   // hides the mouse cursor&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Mouse.x&amp;diff=257</id>
		<title>Mouse.x</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Mouse.x&amp;diff=257"/>
		<updated>2020-03-24T15:37:45Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;mouse.x&amp;lt;/c&amp;gt; returns the current distance (in pixels) of the mouse cursor from the left edge of the screen.&lt;br /&gt;
&lt;br /&gt;
See also: [[mouse.y]]; [[Screen coordinates]]&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print mouse.x&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Mouse.y&amp;diff=256</id>
		<title>Mouse.y</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Mouse.y&amp;diff=256"/>
		<updated>2020-03-24T15:37:13Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;mouse.y&amp;lt;/c&amp;gt;  returns the current distance (in pixels) of the mouse cursor from the bottom edge of the screen.  See also: mouse.x; Screen coordinates  == Example ==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;mouse.y&amp;lt;/c&amp;gt;  returns the current distance (in pixels) of the mouse cursor from the bottom edge of the screen.&lt;br /&gt;
&lt;br /&gt;
See also: [[mouse.x]]; [[Screen coordinates]]&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print mouse.x&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Mouse.x&amp;diff=255</id>
		<title>Mouse.x</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Mouse.x&amp;diff=255"/>
		<updated>2020-03-24T15:35:30Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;mouse.x&amp;lt;/c&amp;gt; returns the current distance (in pixels) of the mouse cursor from the left edge of the screen.  == Example ==  &amp;lt;ms&amp;gt;print mouse.x&amp;lt;/ms&amp;gt;  Category:Mini Micro&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;mouse.x&amp;lt;/c&amp;gt; returns the current distance (in pixels) of the mouse cursor from the left edge of the screen.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print mouse.x&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Key.keyNames&amp;diff=254</id>
		<title>Key.keyNames</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Key.keyNames&amp;diff=254"/>
		<updated>2020-03-24T15:33:58Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;key.keyNames&amp;lt;/c&amp;gt; returns a list of all the key names available for use with [[key.pressed. ]]&lt;br /&gt;
&lt;br /&gt;
See also: [[key.pressed]]&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This can be used, for example, to check all possible inputs, if waiting for the user to press anything to continue, or while configuring their&lt;br /&gt;
input preferences.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;while true&lt;br /&gt;
         for n in key.keyNames&lt;br /&gt;
	     if key.pressed(n) then print n&lt;br /&gt;
	 end for&lt;br /&gt;
    end while&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Key.keyNames&amp;diff=253</id>
		<title>Key.keyNames</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Key.keyNames&amp;diff=253"/>
		<updated>2020-03-24T15:33:43Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;key.keyNames&amp;lt;/c&amp;gt; returns a list of all the key names available for use with key.pressed.   See also: key.pressed  === Usage Notes === This can be used, for example, to...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;key.keyNames&amp;lt;/c&amp;gt; returns a list of all the key names available for use with key.pressed. &lt;br /&gt;
&lt;br /&gt;
See also: [[key.pressed]]&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
This can be used, for example, to check all possible inputs, if waiting for the user to press anything to continue, or while configuring their&lt;br /&gt;
input preferences.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;while true&lt;br /&gt;
         for n in key.keyNames&lt;br /&gt;
	     if key.pressed(n) then print n&lt;br /&gt;
	 end for&lt;br /&gt;
    end while&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Key.axis&amp;diff=252</id>
		<title>Key.axis</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Key.axis&amp;diff=252"/>
		<updated>2020-03-24T15:25:47Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;key.axis&amp;lt;/c&amp;gt; returns the numeric value (from -1 to 1) of an input axis.  See also: key.pressed  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |- ! Parameter Name !! Type !! D...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;key.axis&amp;lt;/c&amp;gt; returns the numeric value (from -1 to 1) of an input axis.&lt;br /&gt;
&lt;br /&gt;
See also: [[key.pressed]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Type !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''axisName'' || string || Horizontal || name of axis to get&lt;br /&gt;
|} &lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
Available axis names are &amp;quot;Horizontal&amp;quot; and &amp;quot;Vertical&amp;quot;, which can be activated&lt;br /&gt;
by both WASD and arrow keys as well as any joystick or gamepad;&lt;br /&gt;
&amp;quot;JoyAxis1&amp;quot; through &amp;quot;JoyAxis29&amp;quot; which detect axis inputs from any joystick or gamepad, and &amp;quot;Joy1Axis1&amp;quot; through &amp;quot;Joy8Axis29&amp;quot; which detect&lt;br /&gt;
axis inputs from specific joystick/gamepad 1 through 8.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;print key.axis(&amp;quot;Vertical&amp;quot;)&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Key.pressed&amp;diff=250</id>
		<title>Key.pressed</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Key.pressed&amp;diff=250"/>
		<updated>2020-03-24T00:31:30Z</updated>

		<summary type="html">&lt;p&gt;71.226.33.30: Created page with &amp;quot;&amp;lt;c&amp;gt;key.pressed&amp;lt;/c&amp;gt; detects whether a specific key or button input is currently pressed.   See also: key.keyNames; key.axis  === Arguments ===  {| class=&amp;quot;wikitable&amp;quot; |-...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;key.pressed&amp;lt;/c&amp;gt; detects whether a specific key or button input is currently pressed. &lt;br /&gt;
&lt;br /&gt;
See also: [[key.keyNames]]; [[key.axis]]&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Default Value !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| ''keyName'' || string, default &amp;quot;space&amp;quot; || key/button to press&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
These include modifier keys (e.g. &amp;quot;left shift&amp;quot;, &amp;quot;right alt&amp;quot;) as &lt;br /&gt;
well as mouse buttons (e.g. &amp;quot;mouse 0&amp;quot;) and joystick/gamepad buttons&lt;br /&gt;
(&amp;quot;joystick 1 button 0&amp;quot;, etc.).  With regard to joystick buttons,&lt;br /&gt;
if you don't specify a number (e.g. &amp;quot;joystick button 0&amp;quot;), then&lt;br /&gt;
it will detect a press of button 0 on *any* joystick.&lt;br /&gt;
See [[key.keyNames]] for all the possible names to use with this method.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;while not key.pressed(&amp;quot;left&amp;quot;); end while   // waits until left arrow pressed&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>71.226.33.30</name></author>
		
	</entry>
</feed>