-- David wrote:

> Is there a way to use a variable, so that I could just make the
> change in one location, and it would replicate to all of those
> hotkeys?

This would require a little bit of work but you could reprogram your
F1-F8 keys to run .FxFunctions("F1"), .FxFunctions("F2"), etc.

You could start out the FxFunctions.PowerPro script as such:

If(Win.Class(Active) == "Class1"))
    Quit
If(Win.Class(Active) == "Class2"))
    Quit
If(Win.Class(Active) == "Class3"))
    Quit

And then you could define the actions for each key:

If(Arg(1) == "F1")
    ; do some sort of action
If(Arg(1) == "F2")
    ; do some sort of action
If(Arg(1) == "F3")
    ; do some sort of action

-- 

Alex Peters / Melbourne, Australia
PowerPro v4.2.02 / Windows XP



Attention: PowerPro's Web site has moved: http://www.ppro.org 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/power-pro/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to