AutoHotkey Community

It is currently May 24th, 2012, 1:20 pm

All times are UTC [ DST ]


Search found 10 matches
Search these results:

Author Message

 Forum: Support   Topic: extending hotstrings?

Posted: June 28th, 2008, 11:53 pm 

Replies: 7
Views: 478


would be nice if it would work similar to the following :*O?:r20::xx :*O?:xx0::cc so that if i typl r200 it first changes to xx and takes the xx also as input and triggers the second hotstring if 0 is the next input. could i use some other kind of send method for this to work? I heard some expert sa...

 Forum: Support   Topic: Hotkeys without any keys inbetween

Posted: June 27th, 2008, 9:06 pm 

Replies: 5
Views: 866


/* * This only works with the two characters j and f "in between" but i want a solution for *anything* */ keypressed := 0 RShiftPressed :=0 LShiftPressed :=0 *RShift up:: if (LShiftPressed) { if (GetKeyState("LShift","P")) { ; ignore &...

 Forum: Support   Topic: extending hotstrings?

Posted: June 27th, 2008, 9:04 pm 

Replies: 7
Views: 478


Hmm I thought the problem was clear.

r20 will fire before r200 so r200 will not work at all. Clear now?

 Forum: Support   Topic: extending hotstrings?

 Post subject: extending hotstrings?
Posted: June 27th, 2008, 5:40 pm 

Replies: 7
Views: 478


We have a "compose" key which is triggered by caps+tab (will set composeActive := 1). when compose is activated r20 should transform to xx, r200 to cc and r200 0 to mm. It works if we do it like the following. :*O?C:r20`n:: if (composeActive) { send xx composeActive := 0 }...

 Forum: Offtopic   Topic: Love vs Hate

Posted: June 26th, 2008, 10:55 pm 

Replies: 9
Views: 1467


For this topic Catullus already wrote a beautiful poem: Odi et amo. quare id faciam, fortasse requiris? nescio, sed fieri sentio et excrucior. ~ Catullus, Carmen 85 Translation: I hate and I love. Why do I do it, perchance you might ask? I don't know, but I feel it happening to me and I'm burning up.

 Forum: Support   Topic: Hotkeys without any keys inbetween

Posted: June 26th, 2008, 10:12 pm 

Replies: 5
Views: 866


Hi, I would like to turn Capslock on/off iff both Shift keys are pressed and no other key is pressed inbetween. {RShift down} {LShift down} {RShift up} {LShift up} -> Capslock {RShift down} {LShift down} {LShift up} {RShift up} -> Capslock Of course the mirrored versions too. But I dont want Capsloc...

 Forum: Support   Topic: [Solved] map Alt & Shift & Tab to ShiftAltTab?

Posted: June 18th, 2008, 3:16 pm 

Replies: 6
Views: 543


Thanks engunneer! Now that we know whats wrong about [VxE]'s and PurloinedHeart's suggestions, can we find a solution that actually works? :) I need something that does the following: If tab is pressed and caps or the # key is down do "something", If tab is pressed alt is down send alttab ...

 Forum: Support   Topic: [Solved] map Alt & Shift & Tab to ShiftAltTab?

Posted: June 16th, 2008, 11:46 pm 

Replies: 6
Views: 543


Code:
<+<!Tab::ShiftAltTab

Even in an empty skript it says:
The Alt Tab hotkey "<+<!Tab" must have exactly one modifier/prefix

So can you tell me whats wrong about it? :)

 Forum: Support   Topic: [Solved] map Alt & Shift & Tab to ShiftAltTab?

Posted: June 16th, 2008, 7:19 pm 

Replies: 6
Views: 543


Code:
Shift & Alt & Tab::MsgBox this does not work


Invalid hot key.

Was my question unclear or you are unsure about a solution?
ciao
xmav000

 Forum: Support   Topic: [Solved] map Alt & Shift & Tab to ShiftAltTab?

Posted: June 16th, 2008, 3:29 pm 

Replies: 6
Views: 543


Solved (hopefully) inspired by this the {Blind} allows alttab and shifaltttab to work as expected not sure about sideeffects yet. ciao xmav000 *tab:: if ( GetKeyState("SC038","P") ) { Send,{Blind}{AltDown}{tab} ; We don't send Al...
Sort by:  
Page 1 of 1 [ Search found 10 matches ]


All times are UTC [ DST ]


cron
Powered by phpBB® Forum Software © phpBB Group