Close
Showing results 1 to 8 of 8

Threaded View

  1. #5

    Default

    Ok so the current errors are ones like these:

    From this pc: <SendWinM WoW1><KeyDown Space><SendWinM WoW2><KeyDown Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp Space><SendWinM WoW2><KeyUp Space>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp Space> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp Space> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyDown S><SendWinM WoW2><KeyDown S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyDown S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyDown S> failed: no window is targeted


    From this pc: <SendWinM WoW1><KeyUp S><SendWinM WoW2><KeyUp S>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <KeyUp S> failed: no window is targeted
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <KeyUp S> failed: no window is targeted
    ------------------------------------------------------------------

    Current Script looks like this:

    Code:
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6. except w, a, s, d, space>
    
    
    <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
      	 <SendLabel w1, w2>
       	<Key %Trigger%>
    
    
    <MovementHotkey w, s, a, d, space>
           	<SendLabel w1, w2>
            	<Key %Trigger%>
    
    
    <hotkey pause>
    	<sendpc local>
    	<ToggleHotkeys>
    
    
    ///-----------------------------------------------------------
    // BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
    // THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU
    // WANT TO BROADCAST.
    //-----------------------------------------------------------
    <UseKeyAsModifier Oem3>
    
    
    <Hotkey Oem3 LButton, MButton, RButton>  
       <SendLabel w1, w2>
           <ClickMouse %TriggerMainKey%>
           	
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC local>
          <Run "C:\program files (x86)\World of Warcraft\WoW-64.exe">
          <Run "E:\World of Warcraft\WoW-64.exe">
    
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
    // Please configure the path correctly
    //-----------------------------------------------------------
    <Hotkey Alt Ctrl L>
    <LaunchAndRename Local "C:\program files (x86)\World of Warcraft\WoW-64.exe" WoW1>
    <LaunchAndRename Local "E:\World of Warcraft\WoW-64.exe" WoW2>

    When I do Ctrl/Alt/L it loads the 2 WoW's twice.
    Last edited by Khatovar : 12-28-2012 at 12:17 AM

Posting Rules

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