Close
Showing results 1 to 3 of 3
  1. #1

    Default [WOW] [HotKeyNet] Error When Renaming Windows

    When attempting to run my script in HotKeyNet wow seems to run into an error that is either text-less or the error message is unviewable.
    Here is a screenshot of what I am experiencing.

    In the action log HotKeyNet is able to find the window and rename it but then results in this error. The game still appears to be running in the background. Within WOW I have experimented with all 3 different DirectX settings.

    Has anyone else ran into this issue?

    My script.
    Code:
    //----------------------------------------------------------------
    // RENAME WINDOWS
    //----------------------------------------------------------------
    <Command AutoExec>
        <RenameWin "World of Warcraft" WoW1> 
        <RemoveWinFrame> 
        <RenameWin "World of Warcraft" WoW2> 
        <RemoveWinFrame> 
    
    
    //----------------------------------------------------------------
    // RENAME WINDOWS AND REMOVE BORDERS
    //----------------------------------------------------------------
    <Hotkey Ctrl Shift R>
       <RenameWin WoW1 WoW1>
        <RemoveWinFrame> 
        <RenameWin WoW2 WoW2>
       <RemoveWinFrame> 
    
    
    //----------------------------------------------------------------
    // SET PIP CONFIGURATION
    //----------------------------------------------------------------
    <Command SetPip>
       <TargetWin %2%>
          <SetWinSize 640 360>
          <SetWinPos 1200 700>
       <TargetWin %1%>
          <SetWinPos 0 0>
          <SetWinSize 1920 1080>
       <TargetWin %2%>
          <SetForegroundWin>
          <UpdateWin>
       <TargetWin %1%>
          <SetWinRegion 1200 700 640 360>
          <SetForegroundWin>
    
    
    //----------------------------------------------------------------
    // TOGGLE PIP HOTKEY
    //----------------------------------------------------------------
    <Hotkey ScrollLockOn F1>
       <Toggle>
          <SetPip WoW1 WoW2>
       <Toggle>
          <SetPip WoW2 WoW1>
    
    
    //-----------------------------------------------------------
    // DEFINE LABELS FOR SENDING KEY STROKES 
    //-----------------------------------------------------------
    <Label w1 Local SendWinS WoW1>
    <Label w2 Local SendWinS WoW2>
    
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn 1>
    <SendLabel w1, w2>
    <Key %Trigger%> 
    
    
    <Hotkey ScrollLockOn Ctrl 2-9>
    <SendLabel w2>
    <Key %Trigger%>
    
    
    //================================================================
    // END OF FILE
    //================================================================

  2. #2
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

  3. #3

    Default

    Quote Originally Posted by MiRai View Post
    Perfect! This is the solution to the issue I've been experiencing.
    It seems that when WoW is launched a second hidden dialogue window is also launched with the same window title as WoW.

    Thank you very much for the assistance.

Posting Rules

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