All public logs

Jump to navigation Jump to search

Combined display of all available logs of MiniScript Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 13:37, 12 January 2021 JoeStrout talk contribs created page How to convert a folder into a .minidisk (Created page with "Mini Micro can mount a folder in the host (Mac/Windows/Linux) file system, making it appear in Mini Micro as /usr or /usr2. This is convenient when you want to use extern...")
  • 13:31, 12 January 2021 JoeStrout talk contribs created page How to convert a .minidisk into a folder (Created page with "A .minidisk file is used by Mini Micro to store the entire contents of a virtual disk in one host (Windows/Mac/Linux) file. This is convenient in that it keeps your host...")
  • 18:27, 9 January 2021 JoeStrout talk contribs created page FileHandle.atEnd (Created page with "The <c>atEnd</c> method of the FileHandle class returns true after attempting to read past the end of the file. Note that <c>atEnd</c> is not true after the last successf...")
  • 21:45, 5 January 2021 JoeStrout talk contribs created page FileHandle (Created page with "In Mini Micro and command-line MiniScript, the <c>FileHandle</c> class is a small class that represents a file that has been opened for reading, writing, or updating v...")
  • 21:24, 5 January 2021 JoeStrout talk contribs created page Command-line MiniScript (Redirected page to Command-Line MiniScript) Tag: New redirect
  • 21:21, 5 January 2021 JoeStrout talk contribs created page File.open (Created page with "In Mini Micro and command-line MiniScript, the <c>file.open</c> function returns a FileHandle object that enables further reads, writes, or updates of the file...")
  • 21:09, 5 January 2021 JoeStrout talk contribs created page File.info (Created page with "The <c>file.info</c> method returns a map of details about an existing file or directory at the given path. === Arguments === {| class="wikitable" |- ! Parameter Nam...")
  • 21:01, 5 January 2021 JoeStrout talk contribs created page Category:Command-Line MiniScript (Created page with "Pages that apply to the command-line MiniScript (running on any operating system). Category:Environments")
  • 17:40, 5 January 2021 JoeStrout talk contribs created page File (Created page with "The <c>file</c> module provides access to disk files in both Mini Micro and command-line MiniScript. == Methods and Properties == The following table shows methods...")
  • 04:37, 30 December 2020 JoeStrout talk contribs created page File:SimpleTileShapes.png (An illustration of the tile set included with Mini Micro at /sys/pics/TileShapes.png. The blue background and tile index numbers (assuming TileDisplay.tileSetTileSize = 64) have been added for illustration purposes.)
  • 04:37, 30 December 2020 JoeStrout talk contribs uploaded File:SimpleTileShapes.png (An illustration of the tile set included with Mini Micro at /sys/pics/TileShapes.png. The blue background and tile index numbers (assuming TileDisplay.tileSetTileSize = 64) have been added for illustration purposes.)
  • 04:35, 30 December 2020 JoeStrout talk contribs created page TileDisplay.setCell (Created page with "<c>TileDisplay.setCell</c> Directly sets the tile index at a given row and column of a tile display. Tile indexes start at 0 in the top-left corner of the tile set. See...")
  • 00:16, 4 December 2020 JoeStrout talk contribs created page TileDisplay.scrollY (added usage note)
  • 00:07, 4 December 2020 JoeStrout talk contribs created page TileDisplay.scrollX (Initial creation)
  • 00:02, 4 December 2020 JoeStrout talk contribs created page TileDisplay (Initial creation)
  • 23:46, 12 October 2020 JoeStrout talk contribs created page Package (Redirected page to How to package a Mini Micro game) Tag: New redirect
  • 19:32, 12 October 2020 JoeStrout talk contribs created page How To (Redirected page to Category:How To) Tag: New redirect
  • 04:30, 11 September 2020 JoeStrout talk contribs created page Minnie (Created page with "Minnie is the name of the MiniScript mascot. She is a [https://en.wikipedia.org/wiki/Chinchilla chinchilla]. frameless|center Why a chinchilla? From th...")
  • 04:27, 11 September 2020 JoeStrout talk contribs created page File:Minnie.png
  • 04:27, 11 September 2020 JoeStrout talk contribs uploaded File:Minnie.png
  • 04:24, 11 September 2020 JoeStrout talk contribs created page Http.get (Created page with "In Mini Micro, the http.get function returns the contents of a URL using the HTTP protocol. It supports text, images, sounds, and raw binary data. === Arguments ===...")
  • 03:54, 11 September 2020 JoeStrout talk contribs created page Http (Created page with "In Mini Micro, the <msinline>http</msinline> module is a small collection of functions for interacting with web sites and services using the HTTP protocol. {| class="wiki...")
  • 21:29, 16 August 2020 JoeStrout talk contribs created page File:GfxPrint.png (Demonstration of PixelDisplay.Print, using various colors and fonts.)
  • 21:29, 16 August 2020 JoeStrout talk contribs uploaded File:GfxPrint.png (Demonstration of PixelDisplay.Print, using various colors and fonts.)
  • 18:13, 1 August 2020 JoeStrout talk contribs created page File.loadSound (Created page with "The <c>file.loadSound</c> loads a sound file from disk, returning a Sound object. The file may be in either WAV or OGG format. == Example == <ms>snd = file.loadSoun...")
  • 17:13, 19 June 2020 JoeStrout talk contribs created page Square brackets (Created page with "Square brackets are used in MiniScript to ''index'' into a value — that is, to select just one element out of a collection of elements. They are also used to slice lists an...")
  • 15:32, 3 June 2020 JoeStrout talk contribs created page Outer (Created page with "The '''outer''' intrinsic function gets a reference to the variables of the enclosing scope. In the case of nested functions, it's the variables local to the function in whic...")
  • 15:23, 3 June 2020 JoeStrout talk contribs created page Locals (Created page with "'''locals''' is a reference to the set of local variables. It's a map where each key is an identifier string, and the value is the value of that variable. Because assignment...")
  • 13:44, 3 June 2020 JoeStrout talk contribs created page Globals (Created page with "'''globals''' is a built-in keyword that references variables at the global scope. Any assignment outside of any function creates (or updates) an entry in the '''globals'...")
  • 13:30, 3 June 2020 JoeStrout talk contribs created page Variables (Created page with "A ''variable'' is a word (also called an identifier) associated with a value. Think of variables as little boxes that you can store data in. You create a variable simply by as...")
  • 03:35, 3 June 2020 JoeStrout talk contribs created page How to do many things at once (Created page with "MiniScript can only do one thing at a time, but by switching between many tasks very quickly, it can create the illusion of doing many things at once. (This is in fact how al...")
  • 20:47, 4 May 2020 JoeStrout talk contribs deleted page Sound.nosieWave (Page title is a typo (and the correct page already exists))
  • 15:50, 4 May 2020 JoeStrout talk contribs created page How to do simple physics (Created page with "Games often need simple Newtonian physics to make things move in a believable manner. That basically means, objects have inertia and tend to stay in motion once they're in mo...")
  • 03:35, 1 May 2020 JoeStrout talk contribs moved page Pixeldisplay.print to PixelDisplay.print without leaving a redirect (wrong capitalization)
  • 03:34, 1 May 2020 ZachStrout talk contribs created page Pixeldisplay.print (Created page with "<c>PixelDisplay.print</c> draws some text to the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''str...")
  • 03:29, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.getImage (Created page with "<c>PixelDisplay.getImage</c> returns a portion of the pixel display as an Image. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! M...")
  • 03:27, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.drawImage (Created page with "<c>PixelDisplay.drawImage</c> draws an Image, or a portion of an Image, to the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! D...")
  • 03:19, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.setPixel (Created page with "<c>PixelDisplay.setPixel</c> sets the color of a specific pixel within the display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !...")
  • 02:48, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.pixel (Created page with "<c>PixelDisplay.pixel</c> returns the color of a specific pixel within the display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value...")
  • 02:45, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.fillEllipse (Created page with "<c>PixelDisplay.fillEllipse</c> fills an ellipse defined by an axis-aligned rectangle on the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Ty...")
  • 02:42, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.drawEllipse (Created page with "<c>PixelDisplay.drawEllipse</c> draws (outlines) an ellipse defined by an axis-aligned rectangle on the pixel display. === Arguments === {| class="wikitable" |- ! Parame...")
  • 02:36, 1 May 2020 ZachStrout talk contribs created page PixelDisplay.fillRect (Created page with "<c>PixelDisplay.fillRect</c> fills an axis-aligned rectangle on the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !!...")
  • 00:16, 29 April 2020 ZachStrout talk contribs created page PixelDisplay.drawRect (Created page with "<c>Pixeldisplay.drawRect</c> draws (outlines) an axis-aligned rectangle on the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default V...")
  • 00:09, 29 April 2020 ZachStrout talk contribs created page PixelDisplay.fillPoly (Created page with "<c>PixelDisplay.fillPoly</c> fills a polygon on the pixel display. The ''points'' argument can be either a list of maps containing "x" and "y" values, or a list of 2-elem...")
  • 00:06, 29 April 2020 ZachStrout talk contribs created page PixelDisplay.drawPoly (Created page with "<c>PixelDisplay.drawPoly</c> draws (outlines) a polygon on the pixel display. The ''points'' argument can be either a list of maps containing "x" and "y" values, or a list of...")
  • 00:03, 29 April 2020 ZachStrout talk contribs created page PixelDisplay.line (Created page with "<c>PixelDisplay.line</c> draws a line on the pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''x1'' ||...")
  • 23:56, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.clear (Created page with "<c>PixelDisplay.clear</c> clears, resets, and resizes this pixel display. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning...")
  • 23:51, 28 April 2020 ZachStrout talk contribs created page PixelDipslay.color (Created page with "<c>PixelDisplay.color</c> is the default color used for drawing. This is used in the various drawing methods (e.g. PixelDisplay.line) if no color argument is given....")
  • 23:50, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.scrollY (Created page with "<c>PixelDisplay.scrollY</c> This is an offset, in screen pixels, which makes the pixel display appear shifted down on screen (or up with negative values). == Example ==...")
  • 23:48, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.scrollX (Created page with "<c>PixelDisplay.scrollX</c> is an offset, in screen pixels, which makes the pixel display appear shifted to the left on screen (or to the right with negative values). == Exam...")
  • 23:47, 28 April 2020 JoeStrout talk contribs moved page PixelDisplay.clear to PixelDisplay.scale without leaving a redirect (wrong title)
  • 23:42, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.clear (Created page with "<c>PixelDisplay.clear</c> is a scaling factor controlling how this pixel display is rendered on screen. The default value of 1 means that one pixel in the display draws as 1...")
  • 23:40, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.height (Created page with "<c>PixelDisplay.height</c> is the number of pixel rows in the display. This is a read-only value; to change the width and height of the display, use [[PixelDisplay.clear]...")
  • 23:37, 28 April 2020 ZachStrout talk contribs created page PixelDisplay.width (Created page with "<c>PixelDisplay.width</c> is the number of pixel columns in the display. === Usage Notes === This is a read-only value; to change the width and height of the display, use P...")
  • 16:51, 28 April 2020 SpatialPlays talk contribs created page User:SpatialPlays (Created user page)
  • 06:09, 28 April 2020 SpatialPlays talk contribs created page NoteFreq (Adds noteFreq and entire frequency note table in the standard MIDI range. (Please don't ask how long this took...))
  • 04:47, 28 April 2020 SpatialPlays talk contribs created page Sound.fadeOut (Adds Sound.fadeOut, examples of usage, as well as links to other relevant pages.)
  • 04:28, 28 April 2020 SpatialPlays talk contribs created page Sound.fadeIn (Created page with "<c>Sound.fadeIn</c> controls how much to fade a sound in from silence in seconds. == Examples == This script creates a sort of comedic sliding up sound that fades in for...")
  • 03:58, 28 April 2020 SpatialPlays talk contribs created page Sound.envelope (Added Sound.evelope and example script (without using init))
  • 23:21, 27 April 2020 SpatialPlays talk contribs created page Sound.duration (Created Sound.duration, and included a function on how to convert musical notation into time for musicians.)
  • 22:52, 27 April 2020 JoeStrout talk contribs created page PixelDisplay (Created page with "The <c>PixelDisplay</c> class in Mini Micro is a display type that represents a rectangular pixel buffer, with methods to efficiently draw lines, shapes, images, and text....")
  • 21:55, 27 April 2020 SpatialPlays talk contribs created page Sound.freq (Created Sound.freq, including working examples and references to relevant functions)
  • 21:16, 27 April 2020 User account SpatialPlays talk contribs was created
  • 20:09, 27 April 2020 JoeStrout talk contribs created page Import (Created page with "<c>import</c> is a Mini Micro function that loads a MiniScript file from the current directory, '''/sys/lib''', '''/usr/lib''', or some path defined in env.importPaths...")
  • 16:41, 27 April 2020 JoeStrout talk contribs created page TextDisplay (Created page with "The <c>TextDisplay</c> class in Mini Micro is a display type that represents a 68-column, 26-row text character display. Each row/column position in this display is calle...")
  • 15:22, 22 April 2020 Hilbert talk contribs created page User:Hilbert (About Hilbert)
  • 12:02, 22 April 2020 Hilbert talk contribs blocked BrooksWilkin463 talk contribs with an expiration time of indefinite (account creation disabled, cannot edit own talk page) (Spamming links to external sites)
  • 12:01, 22 April 2020 Hilbert talk contribs deleted page User:BrooksWilkin463 (Mass deletion of pages added by BrooksWilkin463)
  • 12:01, 22 April 2020 Hilbert talk contribs deleted page Via4D Situs Kali Togel Aci Terbaik Komisi Terbesar (Mass deletion of pages added by BrooksWilkin463)
  • 06:03, 16 April 2020 BrooksWilkin463 talk contribs created page Via4D Situs Kali Togel Aci Terbaik Komisi Terbesar (Created page with "<br>Via4D Situs Bandar Togel Aci Terbaik Komisi Terbesar – Anda siap ke sini pasti beserta kesulitan bikin menemukan Kali Togel yang Resmi borong juga memiliki penawaran dis...")
  • 06:03, 16 April 2020 BrooksWilkin463 talk contribs created page User:BrooksWilkin463 (Created page with "My name is Brooks and I am studying American Studies and Chemistry at Killara / Australia.<br><br>My webpage: slot online terbaik, [http://via4d.com/ via4d.com],")
  • 06:03, 16 April 2020 User account BrooksWilkin463 talk contribs was created
  • 13:08, 14 April 2020 JoeStrout talk contribs deleted page FuncDef (page was a mistake; no such thing exists)
  • 23:08, 12 April 2020 ZachStrout talk contribs created page Sprite.tint (Created page with "<c>Sprite.tint:</c> Tint color to apply to the sprite image. A tint of <c>color.red</c>, for example, will make white pixels in the sprite image appear red; other colors...")
  • 23:07, 12 April 2020 JoeStrout talk contribs created page /sys (Created page with "<c>"/sys"</c> is the system disk in Mini Micro. It contains files such as the following: * '''data''': a folder of data used by some of the demo programs * '''demo''': a...")
  • 22:04, 12 April 2020 ZachStrout talk contribs created page Sprite.overlaps (Created page with "<c> Sprite.overlaps</c> checks whether this sprite overlaps (touches) another one, by comparing their bounds. === Arguments === {| class="wikitable" |- ! Parameter Name !!...")
  • 22:02, 12 April 2020 ZachStrout talk contribs created page Sprite.contains (Created page with "<c>Sprite.contains</c> returns whether the sprite's world bounds contains the given x,y point (given in world coordinates). === Arguments === {| class="wikitable" |- ! Para...")
  • 21:58, 12 April 2020 ZachStrout talk contribs moved page Sprite.worldbounds to Sprite.worldBounds
  • 21:58, 12 April 2020 ZachStrout talk contribs moved page Sprite.localbounds to Sprite.localBounds
  • 21:55, 12 April 2020 ZachStrout talk contribs created page Sprite.worldbounds (Created page with "<c>Sprite.worldbounds</c> returns the current bounds of the sprite in world coordinates. This is calculated by applying the sprite's current x, y, [...")
  • 21:53, 12 April 2020 ZachStrout talk contribs created page Sprite.localbounds (Created page with "<c>sprite.localBounds</c> assigns a Bounds object to this property to define the sprite bounds in "local" coordinates. That means the bounds the sprite would have if it w...")
  • 21:52, 12 April 2020 ZachStrout talk contribs created page Sprite.rotation (Created page with "<c>Sprite.rotation</c>: Tint color to apply to the sprite image. A tint of <c>color.red</c>, for example, will make white pixels in the sprite image appear red; other col...")
  • 21:49, 12 April 2020 ZachStrout talk contribs created page Sprite.scale (Created page with "<c>Sprite.scale</c> is the scale factor of the sprite. A scale of 1 means that one pixel in the image appears as one pixel on screen. Setting scale=2 makes...")
  • 21:48, 12 April 2020 ZachStrout talk contribs created page Sprite.y (Created page with "<c>Sprite.y</c> is the vertical position of the sprite, in Screen coordinates (adjusted by SpriteDisplay.scrollY. == Example == <ms>sp = new Sprite sp.image = file.l...")
  • 21:45, 12 April 2020 ZachStrout talk contribs created page Sprite.x (Created page with "<c>Sprite.x</c> Horizontal position of the sprite, in Screen coordinates (adjusted by SpriteDisplay.scrollX. == Example == <ms>sp = new Sprite sp.image = file.loadIm...")
  • 21:44, 12 April 2020 ZachStrout talk contribs created page Sprite.image (Created page with "<c>Sprite.image</c>: Image displayed by the sprite. == Example == <ms>sp = new Sprite sp.image = file.loadImage("/sys/pics/Wumpus.png") display(4).sprites.push sp</ms>...")
  • 21:38, 12 April 2020 ZachStrout talk contribs created page SpriteDisplay.sprites (Created page with "<c>SpriteDisplay.sprites</c> is the list that contains all sprites in the display. Sprites are layered according to their order in this list, with sprites[0] at the back, an...")
  • 21:36, 12 April 2020 ZachStrout talk contribs created page SpriteDisplay.clear (Created page with "<c>SpriteDisplay.clear</c> Clears all sprites from the display (resetting .sprites to an empty list). It also resets SpriteDisplay.scrollX|.scroll...")
  • 21:34, 12 April 2020 ZachStrout talk contribs created page SpriteDisplay.scrollY (Created page with "<c>SpriteDisplay.scrollY</c>: Vertical scroll amount subtracted from the position of all sprites on the display. This is the standard way of making it appear that the world i...")
  • 21:32, 12 April 2020 ZachStrout talk contribs created page SpriteDisplay.scrollX (Created page with "<c>SpriteDisplay.scrollX</c>: Horizontal scroll amount subtracted from the position of all sprites on the display. This is the standard way of making it appear that the world...")
  • 19:30, 12 April 2020 JoeStrout talk contribs created page SpriteDisplay (Created page with "The <c>SpriteDisplay</c> class in Mini Micro is a display type that holds and draws Sprites, little images that can be efficiently moved, rotated, and scaled....")
  • 15:12, 10 April 2020 JoeStrout talk contribs created page How to move a sprite with directional inputs (Created page with "Directional (horizontal and vertical) inputs in Mini Micro are best detected using the <c>key.axis</c> method. This will respond to arrow keys, WASD, and any connecte...")
  • 23:10, 6 April 2020 JoeStrout talk contribs created page BootOpts.grfon (Created page with "<c>bootOpts.grfon</c> is a file which Mini Micro looks for upon startup, which controls several options about the appearance and behavior of the machine. You may want to...")
  • 23:01, 6 April 2020 JoeStrout talk contribs created page Game controllers (Created page with "Mini Micro supports up to eight game controllers (gamepads or joysticks) via the key module. The fastest way to identify what a particular button or axis input is cal...")
  • 14:56, 3 April 2020 JoeStrout talk contribs created page Tools (Created page with "This page lists some external tools that work well with MiniScript. See also Open-Source projects. == Source Code Editors == === NotePad++ UDL === https://github.com/S...")
  • 15:37, 2 April 2020 JoeStrout talk contribs created page Sound (Created page with "In Mini Micro, the <msinline>Sound</msinline> class both represents individual audio clips that can be played, and a handful of global sound-related properties and methods...")
  • 15:21, 2 April 2020 JoeStrout talk contribs created page Image (Created page with "In Mini Micro, the <c>Image</c> class represents a picture, i.e. a rectangular array of pixel colors. {| class="wikitable" |- ! Method or Property !! Purpose |- | Image...")
  • 15:09, 2 April 2020 JoeStrout talk contribs created page Image.height (Created page with "<c>Image.height</c> returns the height of the image, in pixels. (Read-only.) == Example == <ms>img = file.loadImage("/sys/pics/Dart.png") print img.height</ms> Categ...")
  • 23:05, 1 April 2020 71.226.33.30 talk created page Sound.loop (Created page with "<c>Sound.loop</c> controls whether a sound will play just once (false) or will repeat indefinitely (true) when played with Sound.play. <ms>s = file.loadSound("/sys/so...")
  • 23:03, 1 April 2020 71.226.33.30 talk created page Sound.mix (Created page with "<c>Sound.mix</c> mixes another synthesized sound into this one, producing a more complex sound. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! De...")
  • 23:00, 1 April 2020 71.226.33.30 talk created page Sound.stop (Created page with "<c>Sound.stop</c> stops this sound if it is currently playing. == Example == <ms>s = file.loadSound("/sys/sounds/bonus.wav") s.loop = true s.play; key.get; s.stop</ms> Ca...")
  • 22:57, 1 April 2020 71.226.33.30 talk created page Sound.play (Created page with "<c>Sound.play</c> plays a sound. Call this on a Sound object initialized either Sound.init, or loaded via file.loadSound. === Arguments === {| class="wikitable" |- ! Param...")
  • 22:48, 1 April 2020 71.226.33.30 talk created page Sound.init (Created page with "<c>Sound.init</c> synthesizes a sound from various parameters, including look-up tables that represent one cycle of the waveform and the volume envelope. === Usage Notes...")
  • 22:45, 1 April 2020 71.226.33.30 talk created page Sound.stopAll (Created page with "<c>Sound.stopAll</c> stops all currently playing sounds. Category:Mini Micro")
  • 22:44, 1 April 2020 71.226.33.30 talk created page Sound.nosieWave (Created page with "<c>Sound.noiseWave</c> returns a collection of random values. === Usage Notes === For use with the ''waveform'' parameter of Sound.init. These will approximate white...")
  • 22:43, 1 April 2020 71.226.33.30 talk created page Sound.noiseWave (Created page with "<c>Sound.noiseWave</c> returns a collection of random values. === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produces a slightly buzz...")
  • 22:42, 1 April 2020 71.226.33.30 talk created page Sound.sawtoothWave (Created page with "<c>Sound.sawtoothWave</c> returns a 128-element list approximating a sawtooth wave. === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This pr...")
  • 22:40, 1 April 2020 71.226.33.30 talk created page Sound.triangleWave (Created page with "<c>Sound.triangleWave</c> returns a 128-element list approximating a triangle wave. === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produc...")
  • 22:39, 1 April 2020 71.226.33.30 talk created page Sound.squareWave (Created page with "<c>Sound.squareWave</c> returns a 128-element list approximating a square wave. === Usage Notes === For use with the ''waveform'' parameter of Sound.init. This produc...")
  • 22:37, 1 April 2020 71.226.33.30 talk created page Sound.sineWave (Created page with "<c>Sound.sineWave</c> returns a 128-element list approximating a sine wave. === Usage Notes === <c>Sound.sineWave</c> produces a smooth, pure tone. Category:Mini M...")
  • 22:35, 1 April 2020 71.226.33.30 talk created page Image.getImage (Created page with "<c>Image.getImage</c> returns a rectangular portion of the image as a new image. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Mean...")
  • 22:30, 1 April 2020 71.226.33.30 talk created page Image.setPixel (Created page with "<c>Image.setPixel</c> sets the color of a specific pixel in the image. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | '...")
  • 22:29, 1 April 2020 71.226.33.30 talk created page Image.pixel (Created page with "<c>Image.pixel</c> returns the color of a specific pixel in the image. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''...")
  • 22:26, 1 April 2020 JoeStrout talk contribs moved page RawData.length to Image.width without leaving a redirect (wrong title)
  • 22:24, 1 April 2020 71.226.33.30 talk created page RawData.length (Created page with "<c>Image.width</c> returns the width of the image, in pixels. (Read-only.) == Example == <ms>img = file.loadImage("/sys/pics/Dart.png")</ms> Category:Mini Micro")
  • 22:17, 1 April 2020 71.226.33.30 talk created page TextDisplay.print (Created page with "<c>TextDisplay.print</c> prints a given string to this text display, followed by whatever TextDisplay.delimiter contains. === Arguments === {| class="wikitable" |- ! Pa...")
  • 22:14, 1 April 2020 71.226.33.30 talk created page TextDisplay.setCellBackColor (Created page with "<c>TextDisplay.setCellBackColor</c> changes the background color of the given cell. See also: TextDisplay.cellBackColor === Arguments === {| class="wikitable" |- ! Para...")
  • 22:11, 1 April 2020 71.226.33.30 talk created page TextDisplay.cellBackColor (Created page with "<c>TextDisplay.cellBackColor</c> returns the background color of the given cell. See also: TextDisplay.setCellBackColor === Arguments === {| class="wikitable" |- ! Par...")
  • 22:09, 1 April 2020 71.226.33.30 talk created page TextDisplay.setCellColor (Created page with "<c>TextDisplay.setCellColor</c> changes the foreground color of the given cell. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meani...")
  • 22:06, 1 April 2020 71.226.33.30 talk created page TextDisplay.cellColor (Created page with "<c>TextDisplay.cellColor</c> returns the foreground color of the given cell. See also: TextDisplay.setCellColor === Arguments === {| class="wikitable" |- ! Parameter Na...")
  • 22:04, 1 April 2020 71.226.33.30 talk created page TextDisplay.setCell (Created page with "<c>TextDisplay.setCell</c> 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...")
  • 21:59, 1 April 2020 71.226.33.30 talk created page TextDisplay.cell (Created page with "<c>TextDisplay.cell</c> returns the character stored at a given row and column of the text display. See also: TextDisplay.setCell === Arguments === {| class="wikitable"...")
  • 21:57, 1 April 2020 71.226.33.30 talk created page TextDisplay.delimiter (Created page with "<c>TextDisplay.delimiter</c>: 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...")
  • 21:54, 1 April 2020 71.226.33.30 talk created page TextDisplay.inverse (Created page with "<c>TextDisplay.inverse</c> gets or sets whether subsequent printing should be done in "inverse" mode, where the foreground and background colors are swapped. === Usage Notes...")
  • 21:53, 1 April 2020 71.226.33.30 talk created page TextDisplay.row (Created page with "<c>TextDisplay.row</c> 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....")
  • 21:52, 1 April 2020 71.226.33.30 talk created page TextDisplay.column (Created page with "<c>TextDisplay.column</c> 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...")
  • 21:51, 1 April 2020 71.226.33.30 talk created page TextDisplay.backColor (Created page with "<c>TextDisplay.backColor</c> 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...")
  • 21:50, 1 April 2020 71.226.33.30 talk created page TextDisplay.color (Created page with "<c>TextDisplay.color</c> 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...")
  • 21:48, 1 April 2020 71.226.33.30 talk created page TextDisplay.clear (Created page with "<c>TextDisplay.clear</c> clears the text display, setting all cells to " " (space), with inverse turned off and all cell colors set to the match the display properties. === U...")
  • 21:46, 1 April 2020 71.226.33.30 talk created page SolidColorDisplay.color (Created page with "<c>SolidColorDisplay.color</c> gets or sets the color shown by this display. The alpha channel is functional, so you can make such a display semi-transparent. == Example ==...")
  • 21:44, 1 April 2020 71.226.33.30 talk created page Display.mode (Created page with "<c>Display.mode</c> 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...")
  • 19:49, 31 March 2020 JoeStrout talk contribs created page File.loadImage (Created page with "<c>File.loadImage</c> loads an image from a PNG or JPEG file on disk. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''p...")
  • 21:33, 26 March 2020 JoeStrout talk contribs created page RawData (Created page with "The <c>RawData</c> class in Mini Micro represents a buffer of raw bytes. Interpretation of these bytes is entirely up to the programmer. === Properties === {| class="wik...")
  • 21:27, 26 March 2020 JoeStrout talk contribs created page RawData.resize (Created page with "<cs>RawData.resize</cs> resizes the raw data buffer to the given number of bytes. Previous data (if any) is retained to the extent that it will fit in the new buffer. ==...")
  • 04:17, 26 March 2020 JoeStrout talk contribs created page DisplayMode (Created page with "<c>displayMode</c> is a Mini Micro global function that returns a map that contains a number for every supported mode in the display system. {| class="wikitable" |- !...")
  • 04:00, 26 March 2020 JoeStrout talk contribs created page File:DisplayLayout.png (Illustrates the 8-layer display architecture of Mini Micro, with the default display types configured by clear.)
  • 04:00, 26 March 2020 JoeStrout talk contribs uploaded File:DisplayLayout.png (Illustrates the 8-layer display architecture of Mini Micro, with the default display types configured by clear.)
  • 03:56, 26 March 2020 JoeStrout talk contribs created page Display (Created page with "In Mini Micro, <c>Display</c> is the base class for all the display types, and the class of any display that is off (mode 0). In addition, <c>display</c> (all lowercase)...")
  • 19:56, 24 March 2020 JoeStrout talk contribs created page Key (Created page with "In Mini Micro, the <msinline>key</msinline> module is a small collection of functions related to detecting the keyboard state and handling the keyboard input buffer, as we...")
  • 19:51, 24 March 2020 JoeStrout talk contribs deleted page Intrinsic (mistake (and correct page already existed))
  • 15:42, 24 March 2020 71.226.33.30 talk created page Mouse.visible (Created page with "<c>mouse.visible</c> 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 ==...")
  • 15:40, 24 March 2020 71.226.33.30 talk created page Intrinsic (Created page with "<c>mouse.button</c> returns true (1), if the given mouse/trackpad button is currently pressed, or false (0) otherwise. === Usage Notes === Button 0 is the main/left mouse but...")
  • 15:37, 24 March 2020 71.226.33.30 talk created page Mouse.y (Created page with "<c>mouse.y</c> returns the current distance (in pixels) of the mouse cursor from the bottom edge of the screen. See also: mouse.x; Screen coordinates == Example ==...")
  • 15:35, 24 March 2020 71.226.33.30 talk created page Mouse.x (Created page with "<c>mouse.x</c> returns the current distance (in pixels) of the mouse cursor from the left edge of the screen. == Example == <ms>print mouse.x</ms> Category:Mini Micro")
  • 15:33, 24 March 2020 71.226.33.30 talk created page Key.keyNames (Created page with "<c>key.keyNames</c> 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...")
  • 15:25, 24 March 2020 71.226.33.30 talk created page Key.axis (Created page with "<c>key.axis</c> returns the numeric value (from -1 to 1) of an input axis. See also: key.pressed === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! D...")
  • 00:31, 24 March 2020 71.226.33.30 talk created page Key.pressed (Created page with "<c>key.pressed</c> detects whether a specific key or button input is currently pressed. See also: key.keyNames; key.axis === Arguments === {| class="wikitable" |-...")
  • 00:26, 24 March 2020 71.226.33.30 talk created page Key.get (Created page with "<c>key.get</c> removes and returns the next key in the keyboard input buffer. If the input buffer is currently clear (empty), then this method waits until a key is pressed....")
  • 23:50, 23 March 2020 71.226.33.30 talk created page Key.clear (Created page with "<c>key.clear</c> clears the keyboard input buffer. This is often used before exiting a game, so that any key presses made during the game don't spill out into the command lin...")
  • 23:47, 23 March 2020 71.226.33.30 talk created page Key.available (Created page with "<c>key.available</c> returns whether there is a keypress available in the input buffer. If true, you can call key.get to get the next key immediately. See also:key.clear; key...")
  • 17:27, 19 March 2020 JoeStrout talk contribs created page Sprite (Created page with "<c>Sprite</c> is a built-in class in the Mini Micro API. It represents an image which can be added to a SpriteDisplay, enabling it to be drawn to the screen very effi...")
  • 20:41, 18 March 2020 JoeStrout talk contribs created page Code Snippets (Created page with "In Mini Micro, ''code snippets'' are a feature of the code editor. These are bits of code which can be inserted from the Code button in the toolbar, optionally wrapping a...")
  • 16:27, 18 March 2020 ZachStrout talk contribs created page Yield (Created page with "<c>yield</c> pauses the execution of the script until the next "tick" of the host app. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 16:25, 18 March 2020 ZachStrout talk contribs created page Wait (Created page with "<c>wait</c> pauses execution of this script for some amount of time. See also: time, yield === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Me...")
  • 16:22, 18 March 2020 ZachStrout talk contribs created page Version (Created page with "<c>version</c> gets a map with information about the version of MiniScript and the host environment that you're currently running. === Usage Notes === <c>version</c> will in...")
  • 16:20, 18 March 2020 ZachStrout talk contribs created page Values (Created page with "<c>values</c> returns the values of a dictionary, or the characters of a string.(Returns any other value as-is.) See also: Indexes === Arguments === {| class="wikitable" |-...")
  • 16:16, 18 March 2020 71.226.33.30 talk created page Val (Created page with "<c>val</c> returns the numeric value of a given string. (If given a number, returns it as-is; if given a list or map, returns null.) See also: str === Arguments === {| cla...")
  • 15:47, 18 March 2020 71.226.33.30 talk created page Upper (Created page with "<c>upper</c> return an upper-case (all capitals) version of a string. See also: lower === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Mea...")
  • 15:44, 18 March 2020 71.226.33.30 talk created page Time (Created page with "<c>time</c> returns the number of seconds since the script started running. Category:Intrinsic Functions")
  • 15:43, 18 March 2020 71.226.33.30 talk created page Tan (Created page with "<c>tan</c> returns the tangent of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || nu...")
  • 16:26, 17 March 2020 71.226.33.30 talk created page Sum (Created page with "<c>sum</c> returns the total of all elements in a list, or all values in a map. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | '...")
  • 16:24, 17 March 2020 71.226.33.30 talk created page Shuffle (Created page with "<c>shuffle</c> randomize the order of elements in a list, or the mappings from keys to values in a map. This is done in place. === Arguments === {| class="wikitable" |- ! P...")
  • 16:23, 17 March 2020 71.226.33.30 talk created page String type (Created page with "<c>string type</c> returns a map that represents the string datatype in MiniScript's core type system. See also: number, list, map, funcRef === Arguments ===...")
  • 16:21, 17 March 2020 71.226.33.30 talk created page Str (Created page with "<c>str</c> coverts any value to a string === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || any || value to convert |} ==...")
  • 16:20, 17 March 2020 71.226.33.30 talk created page Sqrt (Created page with "<c>sqrt</c> returns the square root of a number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || number || number to get...")
  • 16:18, 17 March 2020 71.226.33.30 talk created page Split (Created page with "<c>split</c> splits a string into a list, by some delimiter. See also: join === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |...")
  • 16:15, 17 March 2020 71.226.33.30 talk created page Sort (Created page with "<c>sort</c> Sorts a list in place. With null or no argument, this sorts the list elements by their own values. See also: shuffle === Arguments === {| class="wikitabl...")
  • 16:12, 17 March 2020 71.226.33.30 talk created page Slice (Created page with "<c>slice</c> returns a subset of a string or list. This is equivalent to using the square-brackets slice operator seq[from:to], but with ordinary function syntax. === Argume...")
  • 16:08, 17 March 2020 71.226.33.30 talk created page Sin (Created page with "<c>sin</c> returns the sine of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || numbe...")
  • 16:06, 17 March 2020 71.226.33.30 talk created page Sign (Created page with "<c>sign</c> returns -1 for negative numbers, 1 for positive numbers, and 0 for zero. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 16:04, 17 March 2020 71.226.33.30 talk created page Rnd (Created page with "<c>rnd</c> Generates a pseudorandom number between 0 and 1 (including 0 but not including 1). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!...")
  • 16:02, 17 March 2020 71.226.33.30 talk created page Round (Created page with "<c>round</c> rounds a number to the specified number of decimal places. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' ||...")
  • 16:00, 17 March 2020 71.226.33.30 talk created page Replace (Created page with "<c>replace</c> Replace all matching elements of a list or map, or substrings of a string, with a new value. === Arguments === {| class="wikitable" |- ! Parameter Name !! De...")
  • 15:54, 17 March 2020 71.226.33.30 talk created page Remove (Created page with "<c>remove</c> removes part of a list, map, or string. See also: indexOf === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''se...")
  • 15:50, 17 March 2020 71.226.33.30 talk created page Range (Created page with "<c>range</c> Return a list containing a series of numbers within a range. from (number, default 0): first number to include in the list to (number, default 0): point at which...")
  • 15:47, 17 March 2020 71.226.33.30 talk created page Push (Created page with "<c>push</c> appends an item to the end of a list, or inserts it into a map as a key with a value of 1. See also: pop; pull; insert === Arguments === {| class="wi...")
  • 15:45, 17 March 2020 71.226.33.30 talk created page Pull (Created page with "<c>pull</c> removes and returns the first item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See...")
  • 15:43, 17 March 2020 71.226.33.30 talk created page Pop (Created page with "<c>pop</c> removes and returns the last item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See al...")
  • 15:35, 17 March 2020 71.226.33.30 talk created page Pi (Created page with "<c>pi</c> returns the universal constant π, that is, the ratio of a circle's circumference to its diameter. == Example == <ms>pi // returns 3.141593</ms> Category:Intri...")
  • 15:33, 17 March 2020 71.226.33.30 talk created page Number type (Created page with "<c>funcname</c> Returns a map that represents the number datatype in miniScript's core type system. See also: string; list; map; funcRef === Usage Notes ==...")
  • 15:28, 17 March 2020 71.226.33.30 talk created page Map type (Created page with "<c>map type</c> returns a map that represents the map datatype in MiniScript's core type system. See also: number; string; list; funcRef === Usage Notes ===...")
  • 15:25, 17 March 2020 JoeStrout talk contribs moved page Log(x, base) to Log without leaving a redirect
  • 15:23, 17 March 2020 JoeStrout talk contribs moved page Indexof to IndexOf without leaving a redirect
  • 15:22, 17 March 2020 JoeStrout talk contribs moved page HashIndex to HasIndex
  • 15:21, 17 March 2020 JoeStrout talk contribs moved page Self.join to Join without leaving a redirect
  • 19:20, 16 March 2020 JoeStrout talk contribs deleted page Hashindex (incorrect capitalization)
  • 17:59, 16 March 2020 71.226.33.30 talk created page Lower (Created page with "<c>lower</c> returns a lower-case version of a string. See also: upper === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''sel...")
  • 17:56, 16 March 2020 71.226.33.30 talk created page Log(x, base) (Created page with "<c>log(x, base)</c> returns the logarithm (with the given) of the given number, that is, the number y such that base^y = x. === Arguments === {| class="wikitable" |- ! Para...")
  • 17:52, 16 March 2020 71.226.33.30 talk created page List type (Created page with "<c>list type</c> returns a map that represents the list datatype in MiniScript's core type system. See also: number, string, map, funcRef === Arguments ===...")
  • 17:48, 16 March 2020 71.226.33.30 talk created page Self.len (Created page with "<c>self.len</c> returns the number of characters in a string, elements in a list, or key/value pairs in a map. May be called with function syntax or dot syntax. === Argument...")
  • 17:46, 16 March 2020 71.226.33.30 talk created page Self.join (Created page with "<c>self.join</c> joins the elements of a list together to form a string. See also: split === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!...")
  • 17:42, 16 March 2020 71.226.33.30 talk created page Insert (Created page with "<c>insert</c> inserts a new element into a string or list. See also: remove === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |...")
  • 17:38, 16 March 2020 71.226.33.30 talk created page Indexof (Created page with "<c>indexOf</c> returns index or key of the given value, or if not found. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''self''...")
  • 17:34, 16 March 2020 71.226.33.30 talk created page HashIndex (Created page with "<c>hashIndex</c> return whether the given index is valid for this object, that is, whether it could be used with square brackets to get some value from self. See also: In...")
  • 17:31, 16 March 2020 71.226.33.30 talk created page Indexes (Created page with "<c>indexes</c> Returns the keys of a dictionary, or the non-negative indexes for a string or list. See also hasIndex === Arguments === {| class="wikitable" |- ! Paramet...")
  • 17:28, 16 March 2020 71.226.33.30 talk created page Hashindex (Created page with "<c>hashIndex</c> return whether the given index is valid for this object, that is, whether it could be used with square brackets to get some value from self. See also: In...")
  • 17:22, 16 March 2020 71.226.33.30 talk created page Hash (Created page with "<c>hash</c> Returns an integer that is "relatively unique" to the given value.In the case of strings, the hash is case-sensitive. In the case of a list or map, the hash combi...")
  • 17:18, 16 March 2020 71.226.33.30 talk created page FuncRef (Created page with "<c>funcRef</c> Returns a map that represents a function reference in MiniScript's core type system. This can be used with `isa` to check whether a variable refers to a functi...")
  • 16:53, 16 March 2020 71.226.33.30 talk created page Floor (Created page with "<c>floor</c> Returns the "floor", i.e. closest whole number less than or equal to the given number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Val...")
  • 16:48, 16 March 2020 71.226.33.30 talk created page Cos (Created page with "<c>cos</c> Returns the cosine of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || nu...")
  • 23:36, 15 March 2020 ZachStrout talk contribs created page Code (Created page with "<c>code</c> Return the Unicode code point of the first character of the given string. This is the inverse of `char`. May be called with function syntax or dot syntax. === A...")
  • 23:19, 15 March 2020 ZachStrout talk contribs created page Ceil (Created page with "<c>ceil</c> Returns the "ceiling", i.e. closest whole number greater than or equal to the given number. See also: floor === Arguments === {| class="wikitable" |- ! Para...")
  • 23:16, 15 March 2020 ZachStrout talk contribs created page Char (Created page with "<c>char</c> Gets a character from its Unicode code point. See also: code === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''codeP...")
  • 23:09, 15 March 2020 ZachStrout talk contribs created page BitXor (Created page with "<c>bitXor</c> treats its arguments as integers, and computes the bitwise `xor`: each bit in the result is set only if the corresponding bit is set in exactly one (not zero or...")
  • 23:02, 15 March 2020 ZachStrout talk contribs created page BitOr (Created page with "<c>bitOr</c> treats its arguments as integers, and computes the bitwise `or`: each bit in the result is set if the corresponding bit is set in either (or both) of the argument...")
  • 22:51, 15 March 2020 ZachStrout talk contribs created page BitAnd (Created page with "<c>bitAnd</c> treats its arguments as integers, and computes the bitwise `and`: each bit in the result is set only if the corresponding bit is set in both arguments. === Arg...")
  • 22:42, 15 March 2020 ZachStrout talk contribs created page Atan (Created page with "<c>atan</c> is a function that returns the arctangent of a value or ratio, that is, the angle (in radians) whose tangent is y/x. This will return an angle in the correct quad...")
  • 22:38, 15 March 2020 ZachStrout talk contribs created page Asin (Created page with "<c>asin</c> is a function that returns the inverse sine, that is, the angle (in radians) whose sine is the given value. === Arguments === {| class="wikitable" |- ! Paramete...")
  • 22:18, 15 March 2020 User account ZachStrout talk contribs was created
  • 00:11, 14 March 2020 JoeStrout talk contribs created page Startup.ms (Created page with "The special file '''startup.ms''', if located at the root level of the user.minidisk file found by Mini Micro when it starts up, will be automatically loaded and run....")
  • 23:55, 13 March 2020 JoeStrout talk contribs created page How to package a Mini Micro game (Created page with "To "package" a Mini Micro game means to bundle up all the files into a format that end-users can download (or access on the web) and play without needing anything else. T...")
  • 02:45, 13 March 2020 JoeStrout talk contribs created page File:MiniMicro256.png (Mini Micro logo (256x192 version).)
  • 02:45, 13 March 2020 JoeStrout talk contribs uploaded File:MiniMicro256.png (Mini Micro logo (256x192 version).)
  • 22:39, 11 March 2020 JoeStrout talk contribs created page How to run a program on startup (Created page with "In Mini Micro, any program found at /usr/startup.ms on the default user disk is run when the machine starts up. You can use this when packaging your game for distribution...")
  • 22:13, 11 March 2020 JoeStrout talk contribs created page How to detect NaN (Created page with "Invalid math operations may result in a numeric value of NaN ("Not a Number"). These values have special semantics: they are not considered equal to anything, even themselves...")
  • 03:56, 11 March 2020 JoeStrout talk contribs created page Category:Numeric Functions (Created page with "The functions below all operate on numbers.")
  • 03:56, 11 March 2020 JoeStrout talk contribs created page Acos (Created page with "The <msinline>acos</msinline> function returns the inverse cosine, that is, the angle (in radians) whose cosine is the given value. === Arguments === {| class="wikitable" |...")
  • 03:53, 11 March 2020 JoeStrout talk contribs created page Abs (Created page with "The <msinline>abs</msinline> function returns the absolute value of the given number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 15:18, 8 March 2020 JoeStrout talk contribs created page File:ScreenCoordinates.png (Illustration of screen coordinates.)
  • 15:18, 8 March 2020 JoeStrout talk contribs uploaded File:ScreenCoordinates.png (Illustration of screen coordinates.)
  • 15:17, 8 March 2020 JoeStrout talk contribs created page Screen coordinates (Created page with "In Mini Micro, screen coordinates refers to the number of pixels from the bottom-left corner of the screen. These are the coordinates returned by mouse.x and mouse....")
  • 14:40, 8 March 2020 JoeStrout talk contribs created page Mouse (Created page with "In Mini Micro, the <msinline>mouse</msinline> module is a small collection of functions related to detecting the mouse state, and controlling display of the mouse cursor....")
  • 14:28, 8 March 2020 JoeStrout talk contribs created page Mouse.button (Created page with "In Mini Micro, the mouse.button function returns whether a given mouse button is currently pressed. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default...")
  • 14:15, 8 March 2020 JoeStrout talk contribs created page File:SpriteClickDemo.png (Screen shot for How to detect a click on a sprite.)
  • 14:15, 8 March 2020 JoeStrout talk contribs uploaded File:SpriteClickDemo.png (Screen shot for How to detect a click on a sprite.)
  • 14:14, 8 March 2020 JoeStrout talk contribs created page How to detect a click on a sprite (Created page with "To detect a mouse click on a sprite, give the sprite a localBounds, and then call .contains on the sprite, passing in mouse. Th...")
  • 22:19, 7 March 2020 JoeStrout talk contribs created page File:HowToFadeSprite.png (Screen shot from the example on How to make a sprite translucent.)
  • 22:19, 7 March 2020 JoeStrout talk contribs uploaded File:HowToFadeSprite.png (Screen shot from the example on How to make a sprite translucent.)
  • 22:18, 7 March 2020 JoeStrout talk contribs created page How to make a sprite translucent (Created page with "You can change the opacity of a sprite by using the alpha channel of the tint color. An alpha value of 255 (or FF in hex) is completely opaque; an alpha value of zero is comp...")
  • 16:33, 6 March 2020 JoeStrout talk contribs created page File:HowToPointScreenshot.png (Screen shot of the How to point a sprite at a file code example, in several different states.)
  • 16:33, 6 March 2020 JoeStrout talk contribs uploaded File:HowToPointScreenshot.png (Screen shot of the How to point a sprite at a file code example, in several different states.)
  • 13:56, 6 March 2020 JoeStrout talk contribs created page How to move a sprite forward (Created page with "Move a sprite in its "forward" direction (i.e. in the +X direction when the sprite is not rotated) by using the cos and sin functions, as shown below. Note that cos...")
  • 14:14, 5 March 2020 JoeStrout talk contribs created page How to move a sprite towards a target (Created page with "To move a sprite at a constant speed towards a target, find the difference in X and Y, and normalize by multiplying by the desired speed divided by the total distance. Then s...")
  • 15:17, 4 March 2020 JoeStrout talk contribs created page How to check if one value contains another (Created page with "If you need to check whether a string contains a given substring, or a list or map contains a specified value, then you can use indexOf and compare the result to null....")
  • 14:19, 4 March 2020 JoeStrout talk contribs created page How to load a sprite from the web (Created page with "To load a sprite from an image on the web, simply pass the URL to http.get, and assign the result to the sprite's .image property. == Example == <ms>clea...")
  • 13:59, 4 March 2020 JoeStrout talk contribs created page Category:How To (Created page with "These "How To" articles each explain how to accomplish one small task, usually with a complete example you can paste in and try. Many of the examples apply to a specific envi...")
  • 13:57, 4 March 2020 JoeStrout talk contribs created page How to point a sprite at a target (Created page with "To point a sprite at a target, use the atan function to calculate the angle in radians, then multiply by 180/pi to convert to degrees, and assign the result to the spr...")
  • 16:10, 27 February 2020 JoeStrout talk contribs created page Open-Source Projects (Created page with "This page is a collection of links to open-source projects in or for MiniScript. === Main Repository === https://github.com/JoeStrout/miniscript Official repository of sourc...")
  • 19:14, 21 February 2020 JoeStrout talk contribs created page Naming Conventions (Created page with "The MiniScript intrinsic functions and Mini Micro API have established the following conventions with regard to naming variables. == Capitalizatio...")
  • 01:41, 21 February 2020 JoeStrout talk contribs created page Category:Map Methods (Created page with "These are methods that work on or with maps.")
  • 01:40, 21 February 2020 JoeStrout talk contribs created page Category:String Methods (Created page with "These are methods that work on or with strings.")
  • 01:40, 21 February 2020 JoeStrout talk contribs created page Category:List Methods (Created page with "These are methods that work on or with lists.")
  • 01:39, 21 February 2020 JoeStrout talk contribs created page Len (Created page with "<c>len</c> is a intrinsic function that returns the number of elements in a list, the number of characters in a string, or the number...")
  • 21:05, 20 February 2020 JoeStrout talk contribs created page Category:Conventions (Created page with "Pages in this category describe standard practices for using MiniScript.")
  • 21:03, 20 February 2020 JoeStrout talk contribs created page File extension (Created page with "The standard file extension for MiniScript files is: '''.ms''' See also MIME types. Category:Conventions")
  • 21:02, 20 February 2020 JoeStrout talk contribs created page Mime types (Created page with "MiniScript scripts may be identified as the following MIME types: * text/x-minicript * application/x-miniscript See also file extension. Category:Conventions")
  • 14:50, 20 February 2020 JoeStrout talk contribs created page Category:Intrinsic Functions (Created page with "Intrinsic functions are functions that are predefined, either as part of the MiniScript core, or added by the host environment.")
  • 14:49, 20 February 2020 JoeStrout talk contribs created page Print (Created page with "<c>print</c> is an intrinsic function that displays a string to the user. It is a standard intrinsic, though there may be some implement...")
  • 14:39, 20 February 2020 JoeStrout talk contribs created page Parentheses (Created page with "Parentheses in MiniScript have only three uses: 1. Use them to group math operations in the order you want them, just as in algebra. <source lang="miniscript">x = (2+4)*7...")
  • 04:40, 20 February 2020 JoeStrout talk contribs created page Category:Operators (Created page with "Operators are symbols or keywords that act directly on operands supplied either after, or on either side of, the operator.")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)