Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 19 of 19
  1. #11

    Default

    Quote Originally Posted by 'keyclone',index.php?page=Thread&postID=47393#post 47393
    @Xenoo
    yes, i get what you are saying. no, there is no app or keyclone support for it.

    and yes, it is on the short list (but not top priority... there is something higher...)
    Well isn't that just awesome. I'm not a clicker myself, but I can still see this being useful as a built in keyclone function. Always looking forward to the keyclone updates .
    <Lunatic Rising> Fenris (Horde) US, PVE

    5x Shamans: Khazarel, Khazrael, Khazrela, Khazreal, Khazeral
    1....10....20....30....40....5052...60....70

    1x Paladin: Rhaeryn, 1x Priest: Valyon, 1x Druid: Thaedyn, 1x Mage: Runare, 1x Hunter: Alef
    1....10....20....30....40....50....60....70

  2. #12

    Default

    Quote Originally Posted by 'Xenoo',index.php?page=Thread&postID=47395#post473 95
    well even without using keyclone to send the keys, I could just unbind all keyboard keys on wow for the main guy and just have the bindings on the 2nd and 3rd wows
    You'd still have to hit they keys though instead of clicking. So essentially you would end up doing both in this case if you wanted all of your characters to do the same thing. Is that really what you're after?
    <Lunatic Rising> Fenris (Horde) US, PVE

    5x Shamans: Khazarel, Khazrael, Khazrela, Khazreal, Khazeral
    1....10....20....30....40....5052...60....70

    1x Paladin: Rhaeryn, 1x Priest: Valyon, 1x Druid: Thaedyn, 1x Mage: Runare, 1x Hunter: Alef
    1....10....20....30....40....50....60....70

  3. #13

    Default

    tbh
    Clicking is a totally retarded way of playing WoW anyway.

    Key bindings/presses or go home.
    Wilbur

  4. #14

    Default

    Quote Originally Posted by 'Wilbur',index.php?page=Thread&postID=47399#post47 399
    tbh
    Clicking is a totally retarded way of playing WoW anyway.

    Key bindings/presses or go home.
    yeah... right now I just have a standard keyboard - I should really get a gaming one then prolly use the kb to do stuff

  5. #15

    Default

    Quote Originally Posted by 'Khazrael',index.php?page=Thread&postID=47397#post 47397
    Quote Originally Posted by 'Xenoo',index.php?page=Thread&postID=47395#post473 95
    well even without using keyclone to send the keys, I could just unbind all keyboard keys on wow for the main guy and just have the bindings on the 2nd and 3rd wows
    You'd still have to hit they keys though instead of clicking. So essentially you would end up doing both in this case if you wanted all of your characters to do the same thing. Is that really what you're after?
    aw crap ur right... the keys won't go to minimized windows but I think theres a free keyclone type program that I tried at one point that you could tell to send key pushes to browsers with the same names

  6. #16

    Default

    WooooT!

    I found something!

    Its called Comfort Keys,it puts a fully customizable keyboard on your screen that runs on top of wow and you can make it transparent (you can also set a custom background for easy set up) so you can see the wow icons. When I go to click the wow icon I'm actually clicking on the virt. keyboard and that sends the msg to Keyclone and the current wow window so all you gotta do is just bind the virt. keyboard key to whatever wow icon it lines up with!

    Like I said before tho I'm a clicker so this isn't something that keyboard ppl would want.

    Right now I'm using the 30-day trial version so if anyone knows of something exactly like this but for free post it here!

    Thanks for all your help!

  7. #17

    Default

    I click sometimes too, depends on what's going on. But for example typing by not using the keyboard I already have and clicking a virt? That seems like going outside to get a drink, when you have a fully functioning faucet inside. Really, clicking has a purpose, but WoW performance, you're better off learning to faceroll. It will save you a lot of time, and you'll be a lot more effective. I promise.

  8. #18

    Default

    Hi,
    If I understand correctly, u want to send keypresses to your other clients , but by clicking on an Icon from your main windows..
    Well, You can do that easily with AHK, All you need to do is map coordinates of every icon on your main window and have them set to send a key press to wichever client u want..

    As my main is a Pally and my alts are all Shammies,, I use this method to map most of my shammy spells.. this way i can simply click a box and have all my shammies drop a totem or cast a specific spell that i want (eg Ghost wolf, Lightening Shield, Rock biter etc)..... During the fights though,, i still mainly use buttons 1-2-3-4 on the keybord to cast lightening bolts and Shocks as its easier and faster(button smashing) and at the same time i have my Pally spells being cast.. However if i want them to drop a particular totem i just click on its icon box (Cooordinate) and they all drop it OR do whatever i've set up on each shammy...

    I'll try to explain ,, Bellow is a small snipit of my AHK script,(just a small part of my script), As u can c there are mouse range coordinates,, So when i click at those cordinates on the main screen the script sends a perticular keypress to all my other clients,, ( which are mapped according to your prefference for each client),, i hope this all makes sense,,


    ; AHK Coordinats scripted action (fires on left mouse button click).

    ~LButton::
    ; ROW 1
    If MouseInRange(845,878,620,650)
    {
    ControlSend,,{Alt down}{1 down}{1 up}{Alt up}, ahk_id %wowid2%
    ControlSend,,{Alt down}{1 down}{1 up}{Alt up}, ahk_id %wowid3%
    ControlSend,,{Alt down}{1 down}{1 up}{Alt up}, ahk_id %wowid4%
    ControlSend,,{Alt down}{1 down}{1 up}{Alt up}, ahk_id %wowid5%
    }

    else If MouseInRange(880,914,620,650)
    {
    ControlSend,,{Alt down}{2 down}{2 up}{Alt up}, ahk_id %wowid2%
    ControlSend,,{Alt down}{2 down}{2 up}{Alt up}, ahk_id %wowid3%
    ControlSend,,{Alt down}{2 down}{2 up}{Alt up}, ahk_id %wowid4%
    ControlSend,,{Alt down}{2 down}{2 up}{Alt up}, ahk_id %wowid5%
    }

    else If MouseInRange(916,950,620,650)
    {
    ControlSend,,{Alt down}{3 down}{3 up}{Alt up}, ahk_id %wowid2%
    ControlSend,,{Alt down}{3 down}{3 up}{Alt up}, ahk_id %wowid3%
    ControlSend,,{Alt down}{3 down}{3 up}{Alt up}, ahk_id %wowid4%
    ControlSend,,{Alt down}{3 down}{3 up}{Alt up}, ahk_id %wowid5%
    }

    ; ROW 2

    MouseInRange(minx,maxx,miny,maxy)
    {
    MouseGetPos, x, y
    If (y >= miny) and (y <= maxy) and (x >= minx) and (x <= maxx)
    Return 1
    Return 0
    }


  9. #19

    Default

    why not just get something like this:

    http://www.lakefolks.org/cnt/


    Its a virtual keyboard that supposedly works with any windows app. Dunno if it would work with Keyclone or not but its free so you could give it a try...

    found it with a google search of "software virtual keyboard"
    http://www.google.com/search?hl=en&s...rd&btnG=Search

Similar Threads

  1. Quick question on KeyClone setup for just ONE button
    By tlitachi in forum New Multi-Boxers & Support
    Replies: 12
    Last Post: 03-30-2009, 10:56 PM
  2. Making the jump to 5x, healer question
    By antieuclid in forum Multiboxing Group Composition Discussion
    Replies: 6
    Last Post: 12-27-2008, 02:07 AM
  3. Alt Gr button screws up my keyboard.
    By Golle in forum Software Tools
    Replies: 4
    Last Post: 08-06-2008, 08:49 AM
  4. ahh noob question.. making guilds
    By Bena in forum General WoW Discussion
    Replies: 5
    Last Post: 05-10-2008, 11:21 AM
  5. Question about passing mouse clicks with AHK
    By Dorffo in forum Software Tools
    Replies: 4
    Last Post: 04-08-2008, 04:42 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
  •