Core Function Opt

From Sputnik Wiki
Revision as of 18:18, 21 April 2012 by UberFoX (Talk | contribs)
Jump to: navigation, search
Opt( <option>, <value> ) 

Contents

Description

Changes the operation of various Sputnik functions/parameters.

option

The option to change. See Remarks.

value

Optional; The parameter (varies by option). See Remarks.

Note - If no value is given the CURRENT value of the given option will be returned

Return Value

Returns the value of the previous setting.

Remarks

  1. The absolute max possible delay before sending the same hotkey again (Default is 15 miliseconds)
  1. Sets the way coords are used in the caret functions, either absolute coords or coords relative to the current active window:
  2. 0 = relative coords to the active window
  3. 1 = absolute screen coordinates (default)
  4. 2 = relative coords to the client area of the active window
  1. Sets the way colours are defined, either RGB or BGR.
  2. 0 = Colours are defined as RGB (0xRRGGBB) (default)
  3. 1 = Colours are defined as BGR (0xBBGGRR)
  1. Alters the length of the brief pause in between mouse clicks.
  2. Time in milliseconds to pause (default=10).
  1. Alters the length a click is held down before release.
  2. Time in milliseconds to pause (default=10).
  1. Alters the length of the brief pause at the start and end of a mouse drag operation.
  2. Time in milliseconds to pause (default=250).
  1. Sets the way coords are used in the mouse functions, either absolute coords or coords relative to the current active window:
  2. 0 = relative coords to the active window
  3. 1 = absolute screen coordinates (default)
  4. 2 = relative coords to the client area of the active window
  1. Sets the way coords are used in the pixel functions, either absolute coords or coords relative to the current active window:
  2. 0 = relative coords to the active window
  3. 1 = absolute screen coordinates (default)
  4. 2 = relative coords to the client area of the active window
  1. Specifies if Sputnik attaches input threads when using then SendKeys() function. When not attaching (default mode=0) detecting the state of capslock/scrolllock and numlock can be unreliable under NT4. However, when you specify attach mode=1 the Send("{... down/up}") syntax will not work and there may be problems with sending keys to "hung" windows. ControlSend() ALWAYS attaches and is not affected by this mode.
  2. 0 = don't attach (default)
  3. 1 = attach
  1. Specifies if Sputnik should store the state of capslock before a Send function and restore it afterwards.
  2. 0 = don't store/restore
  3. 1 = store and restore (default)
  1. Alters the the length of the brief pause in between sent keystrokes.
  2. Time in milliseconds to pause (default=5). Sometimes a value of 0 does not work; use 1 instead.
  1. Alters the length of time a key is held down before released during a keystroke. For applications that take a while to register keypresses (and many games) you may need to raise this value from the default.
  2. Time in milliseconds to pause (default=1).
  1. Specifies if hidden window text can be "seen" by the window matching functions.
  2. 0 = Do not detect hidden text (default)
  3. 1 = Detect hidden text
  1. Allows the window search routines to search child windows as well as top-level windows.
  2. 0 = Only search top-level windows (default)
  3. 1 = Search top-level and child windows
  1. Alters the method that is used to match window text during search operations. (Note -- 0 to 3 are case insensitive)
  2. 0 = Match the text from the start (Same as the function Left()) (default)
  3. 1 = Match the text from the end (Same as the function Right())
  4. 2 = Match any substring in the text
  5. 3 = Exact text match
  6. 4 = Advanced mode (See Window Titles and Text (Advanced) )
  1. Alters the method that is used to match window titles during search operations. (Note -- 0 to 3 are case insensitive)
  2. 0 = Match the title from the start (Same as the function Left()) (default)
  3. 1 = Match the title from the end (Same as the function Right())
  4. 2 = Match any substring in the title
  5. 3 = Exact title match
  6. 4 = Advanced mode (See Window Titles and Text (Advanced) )
  1. Alters how to pause after a successful window-related operation.
  1. Alters the method that is used to match process names during search operations. (Note -- 0 to 3 are case insensitive)
  2. 0 = Match the name from the start (Same as the function Left()) (default)
  3. 1 = Match the name from the end (Same as the function Right())
  4. 2 = Match any substring in the name
  5. 3 = Exact name match
  6. 4 = Advanced mode.

Example

Opt("CaretCoordMode", 1);        //1=absolute, 0=relative
Opt("MouseClickDelay", 10);      //10 milliseconds
Opt("MouseClickDownDelay", 10);  //10 milliseconds
Opt("MouseClickDragDelay", 250); //250 milliseconds
Opt("MouseCoordMode", 1);        //1=absolute, 0=relative
Opt("PixelCoordMode", 1);        //1=absolute, 0=relative
Opt("SendAttachMode", 0);        //0=don't attach, 1=do attach
Opt("SendCapslockMode", 1);      //1=store and restore, 0=don't
Opt("SendKeyDelay", 5);          //5 milliseconds
Opt("SendKeyDownDelay", 1);      //1 millisecond
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox