Results 1 to 3 of 3

Thread: BANK_BUTTON_PRESET_SETUP help

  1. #1
    Join Date
    May 2012
    Posts
    58
    Mentioned
    2 Post(s)
    Quoted
    23 Post(s)

    Default BANK_BUTTON_PRESET_SETUP help

    Hi,

    I did a brief search of the forums and docs & couldn't find anything on the preset setup button.

    bankScreen.clickButton(BANK_BUTTON_PRESET_SETUP);

    Does anyone know of any functions to save a preset, select a preset as 1 or 2?

  2. #2
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Simba Code:
    const
      BANK_BUTTON_SEARCH = 0;
      BANK_BUTTON_PIN = 1;
      BANK_BUTTON_PRESET_SETUP = 2;
      BANK_BUTTON_PRESET_1 = 3;
      BANK_BUTTON_PRESET_2 = 4;
      BANK_BUTTON_NOTE = 5;

    So to click the preset 1 button:
    Simba Code:
    bankScreen.clickButton(BANK_BUTTON_PRESET_1);

    There isn't currently any methods to save a preset, as the user normally does that before running a script.

  3. #3
    Join Date
    May 2012
    Posts
    58
    Mentioned
    2 Post(s)
    Quoted
    23 Post(s)

    Default

    Ok, thanks for the quick reply.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •