From WikiChip
Difference between revisions of "mirc/picture windows"
(added create window section) |
|||
Line 1: | Line 1: | ||
{{mIRC Guide}} | {{mIRC Guide}} | ||
'''Picture Windows''' in [[mIRC]] are a special type of [[Custom windows - mIRC|custom windows]] that can be used a drawing canvas. mIRC provides a set of [[list of commands - mIRC|commands]], [[list of identifiers - mIRC|identifiers]], and [[on events - mIRC|events]] for manipulating them. Picture windows provide an alternative mean of creating a graphical user interface. | '''Picture Windows''' in [[mIRC]] are a special type of [[Custom windows - mIRC|custom windows]] that can be used a drawing canvas. mIRC provides a set of [[list of commands - mIRC|commands]], [[list of identifiers - mIRC|identifiers]], and [[on events - mIRC|events]] for manipulating them. Picture windows provide an alternative mean of creating a graphical user interface. | ||
+ | |||
+ | == Creating a window == | ||
+ | Picture windows can be created via the [[/window command - mIRC|/window]] command in combination with the -p switch. For example, | ||
+ | <source lang="mIRC"> | ||
+ | //window -dep @example -1 -1 500 400 | ||
+ | </source> | ||
+ | |||
+ | will create <code>@example</code> desktop picture window with an editbox of size 500x400. |
Revision as of 21:19, 21 December 2013
Template:mIRC Guide Picture Windows in mIRC are a special type of custom windows that can be used a drawing canvas. mIRC provides a set of commands, identifiers, and events for manipulating them. Picture windows provide an alternative mean of creating a graphical user interface.
Creating a window
Picture windows can be created via the /window command in combination with the -p switch. For example,
//window -dep @example -1 -1 500 400
will create @example
desktop picture window with an editbox of size 500x400.