Close
Showing results 1 to 10 of 44

Hybrid View

  1. #1

    Default

    This code renames the windows using one keypress and works fine for me. Haven't tested the 5 WoW version as I only have 2 accounts but it should work.

    2 WoWs:

    Code:
    <Hotkey ScrollLockOn Ctrl R>    
        <SendPC local>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" WoW1>
            <RenameWin "World of Warcraft" WoW2>
    5 WoWs:

    Code:
    <Hotkey ScrollLockOn Ctrl R>
        <SendPC local>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
    
            <RenameWin "World of Warcraft" WoW1>
            <RenameWin "World of Warcraft" WoW2>
            <RenameWin "World of Warcraft" WoW3>
            <RenameWin "World of Warcraft" WoW4>
            <RenameWin "World of Warcraft" WoW5>
    It may be beneficial to split it into separate keypresses as well in case you need to open a new WoW after a crash or something.

  2. #2

    Default

    Quote Originally Posted by Rafipi View Post
    This code renames the windows using one keypress and works fine for me. Haven't tested the 5 WoW version as I only have 2 accounts but it should work.

    2 WoWs:

    Code:
    <Hotkey ScrollLockOn Ctrl R>    
        <SendPC local>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" WoW1>
            <RenameWin "World of Warcraft" WoW2>
    5 WoWs:

    Code:
    <Hotkey ScrollLockOn Ctrl R>
        <SendPC local>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
            <RenameWin "World of Warcraft" HiddenDialog>
    
            <RenameWin "World of Warcraft" WoW1>
            <RenameWin "World of Warcraft" WoW2>
            <RenameWin "World of Warcraft" WoW3>
            <RenameWin "World of Warcraft" WoW4>
            <RenameWin "World of Warcraft" WoW5>
    It may be beneficial to split it into separate keypresses as well in case you need to open a new WoW after a crash or something.
    I'm using AHK for rename, AHK can rename by he windows chosen.
    Code:
    ~1:: 
    IfWinActive, World of Warcraft 
    {
    if not GetKeyState("Scrolllock", "T")
    	Return
    WinSetTitle, WoW1
    Return 
    }

  3. #3

    Default

    ...
    Last edited by Rathik : 05-24-2017 at 08:45 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
  •