Difference between revisions of "Drawdot"

From Scriptwiki
Jump to: navigation, search
m (Why yes, yes of course i forgot the category.)
(Added "See Also", is this good?)
 
Line 7: Line 7:
 
  -h highlights the windows icon if it is minimized.
 
  -h highlights the windows icon if it is minimized.
 
  -n prevents the display from being updated immediately. This allows you to make changes to the window in the background and then display the results only when you have finished. You can update the display by using any of the /draw commands with only the window name specified.
 
  -n prevents the display from being updated immediately. This allows you to make changes to the window in the background and then display the results only when you have finished. You can update the display by using any of the /draw commands with only the window name specified.
  -r indicates that the color is in RGB format. You can use $rgb(N,N,N) to create an RGB value.
+
  -r indicates that the color is in RGB format. You can use [[$rgb|$rgb(N,N,N)]] to create an RGB value.
  
 
Examples:
 
Examples:
Line 13: Line 13:
 
Draws a dot in the window @drawingboard, with a color "4" (from your mIRC's color settings), size of 10 pixels, at the coordinates x = 15, y = 15 (15 pixels from top and 15 pixels from left), and -h highlights the window.
 
Draws a dot in the window @drawingboard, with a color "4" (from your mIRC's color settings), size of 10 pixels, at the coordinates x = 15, y = 15 (15 pixels from top and 15 pixels from left), and -h highlights the window.
 
  /drawdot -r @drawingboard $rgb(0,255,0) 11 15 15 35 35
 
  /drawdot -r @drawingboard $rgb(0,255,0) 11 15 15 35 35
Draws 2 dots with a size of 11 pixels in the window, 1 at coordinates x=15,y=15 and second one at x=35,y=35, using -r switch and $rgb() to make the color green in this case.
+
Draws 2 dots with a size of 11 pixels in the window, 1 at coordinates x=15,y=15 and second one at x=35,y=35, using -r switch and [[$rgb|$rgb()]] to make the color green in this case.
  
 
The whole window can be cleared by using the /clear command, eg. /clear @name. You can also specify the -n switch in /clear to delay the effect as described above.
 
The whole window can be cleared by using the /clear command, eg. /clear @name. You can also specify the -n switch in /clear to delay the effect as described above.
 +
 +
== See Also ==
 +
* [[$rgb]] for the use of RGB colors with this identifier.
 +
* http://www.youtube.com/watch?v=dQw4w9WgXcQ A guide on how to be a successful artist.
  
 
[[Category:Picture_Windows]]
 
[[Category:Picture_Windows]]

Latest revision as of 17:27, 28 June 2013

/drawdot -ihnr @ <color> <size> <x y> [<x y>...]

Draws a dot using the specified color and size at the x,y co-ordinates. Multiple co-ordinates can be provided.

Switches

-i draws in inverse mode.
-h highlights the windows icon if it is minimized.
-n prevents the display from being updated immediately. This allows you to make changes to the window in the background and then display the results only when you have finished. You can update the display by using any of the /draw commands with only the window name specified.
-r indicates that the color is in RGB format. You can use $rgb(N,N,N) to create an RGB value.

Examples:

/drawdot -h @drawingboard 4 10 15 15

Draws a dot in the window @drawingboard, with a color "4" (from your mIRC's color settings), size of 10 pixels, at the coordinates x = 15, y = 15 (15 pixels from top and 15 pixels from left), and -h highlights the window.

/drawdot -r @drawingboard $rgb(0,255,0) 11 15 15 35 35

Draws 2 dots with a size of 11 pixels in the window, 1 at coordinates x=15,y=15 and second one at x=35,y=35, using -r switch and $rgb() to make the color green in this case.

The whole window can be cleared by using the /clear command, eg. /clear @name. You can also specify the -n switch in /clear to delay the effect as described above.

See Also