dumbeau / AutoHotPie

Radial menus in Windows, aka PIE MENYOOS!
MIT License
304 stars 16 forks source link

[FEATURE REQUEST] Allow AHK script execution #124

Open Fjr3 opened 9 months ago

Fjr3 commented 9 months ago

At first, I thought about create a pie to expand some texts (as a text expander) Then, thought about modifying or reusing things I copy (as a clipboard manager) In general I think we can do lots more thing if we can execute AHK script - maybe leave it for intermediate/advanced users so the beginners won't be bothered

hced commented 9 months ago

At first, I thought about create a pie to expand some texts (as a text expander) Then, thought about modifying or reusing things I copy (as a clipboard manager) In general I think we can do lots more thing if we can execute AHK script - maybe leave it for intermediate/advanced users so the beginners won't be bothered

You can already run AHK scripts: Functions > More Functions... > Run File.

dumbeau commented 9 months ago

@Fjr3 So I do actually have a future plan for this. However! There are some nifty AHK features I didn't know about that might be useful to you.

You can pass paramters from AHP to AHK scripts:

MsgBox, %1%, %2%
exitapp

To further demonstrate this, here's a terrible graphic: image Slice 1 and 2 are calling the same script, but showing a different msgbox due to the script parameter typed in the AHP Run File field.