Search found 21 matches
- 30 Jan 2020, 05:43
- Forum: J'ai besoin d'aide
- Topic: Problème quand je send altgr
- Replies: 3
- Views: 2049
Re: Problème quand je send altgr
hmmm, et si on force le mode texte? :think: Send {Blind}{Text}| Nope cela ne marche pas non plus! Par contre ce code là envoi bien le symbole dans une zone texte mais n'active pas le raccourci en dehors de la zone texte... Send, {U+7C} Mais j'ai trouvé la solution ce matin après encore 2 heures d'e...
- 29 Jan 2020, 13:12
- Forum: J'ai besoin d'aide
- Topic: Problème quand je send altgr
- Replies: 3
- Views: 2049
Problème quand je send altgr
Bonjour, J'ai un programme qui utilise un raccourci avec la touche | je sais pas son nom en français mais les anglo-saxon l'appelle pipe bar ou vertical bar. Pour activer ce raccourci je fais la combinaison Altgr + 6 et ça marche depuis le clavier. Donc j'essai d'envoyer cette combinaison de touches...
- 21 Sep 2017, 04:18
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts - updates 2017-07-25
Hi guys, I'm new here. I've been using Radial Menu for the last few months and I have to say this tool makes things so much easier for me. Thanks so much for making this and for all the effort you guys have been putting in to improve RM. So let's get to my problem. I've made a context sensitive RM ...
- 01 Feb 2017, 14:28
- Forum: Hors Sujet
- Topic: Avais pas vu ça
- Replies: 3
- Views: 12154
Avais pas vu ça
Bonjour,
J'avais pas vu cette section française du forum, c'est une bonne chose ça merci!
Je me sers d'Autohotkey pour faire des trucs simples! J'utilise aussi le Radial Menu Script de Learning One dont je ne peu plus me passer maintenant!
@+
J'avais pas vu cette section française du forum, c'est une bonne chose ça merci!
Je me sers d'Autohotkey pour faire des trucs simples! J'utilise aussi le Radial Menu Script de Learning One dont je ne peu plus me passer maintenant!

@+
- 01 Jan 2017, 11:17
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts - updates 2016-12-27
Hi L1,
Great to see you and hear some news! I use it also every day and can't live without now! I also check frequently the forum to see if there is no update pending

Great to see you and hear some news! I use it also every day and can't live without now! I also check frequently the forum to see if there is no update pending


- 13 Aug 2016, 16:04
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
I'm not a good coder also, but from what I know the main menu and additional menus like yours (56,57) are not working the same way. for instance Submenus are not available with additional menus. If you want to use context sensitive menus(without submenu feature) and with the 'right click drag down',...
- 12 Aug 2016, 14:55
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
Hello,
Maybe the right click is set for the main menu and you can't override it to show your context sensitive menu ?... In this case try to delete the RMShowHotkey in the general settings and you should have the ability to bind your menus to the right click
Maybe the right click is set for the main menu and you can't override it to show your context sensitive menu ?... In this case try to delete the RMShowHotkey in the general settings and you should have the ability to bind your menus to the right click
- 01 Jul 2016, 14:52
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
hi, Have you read the nice documentation made by L1 ? basically you can create additional menus and show them according to the application you are using. Say you are working on paint you can have a menu for paint,using notepad you can have a menu for notepad, webrowser,etc... I use it a lot while wo...
- 13 Jun 2016, 02:22
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
1) No it works only if the window is active, to send keys on a background running app you need to use an other command named ControlSend: https://autohotkey.com/docs/commands/ControlSend.htm . You need to learn how we can find or identify windows by looking here: https://autohotkey.com/docs/misc/Win...
- 12 Jun 2016, 02:33
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
1) I just tested on vlc and mediaplayer and it works fine here. The window have to be active. is it the case ? 3) 3) How do you open a process that already exists, without starting a new one? I was a little confused by the request... This is normal you need to tell autohotkey to check if a process o...
- 11 Jun 2016, 15:20
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
In MyFunction.ahk you need that:
And in the item action
You can find keys reference here: https://autohotkey.com/docs/commands/Send.htm
Code: Select all
Send(What) {
Send, %What%
return
}
Code: Select all
Action= fun Send|I,{Space}Bmf,{Space}F2,{Space}Cp
- 11 Jun 2016, 13:54
- Forum: Ask For Help
- Topic: Send python command
- Replies: 4
- Views: 1525
Re: Send python command
That's an idea but I find it not very convevient, I would like something more powerful like dll call or COM Oject or anything else that don't need to open the console, send text, active previous window,etc... thanks for reply
Any other suggestion ?
Any other suggestion ?
- 11 Jun 2016, 13:46
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
@lotion: Yes you can as explained in my previous post
- 11 Jun 2016, 01:46
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
your item action is good but the function is bad. you don't need to make one for each... You have to put the exactly same thing that I wrote in MyFunction.ahk: Send(What) { Send, %What% return } The "what" in the function is a parameter and it act as a variable. when you call the function you give a...
- 10 Jun 2016, 11:57
- Forum: Ask For Help
- Topic: Send python command
- Replies: 4
- Views: 1525
Send python command
Hello,
I'm using blender a lot and I would like to know if it will be possible to send command/script to it with autohotkey. Blender use python and this is the command I would like to send to:
I'm using blender a lot and I would like to know if it will be possible to send command/script to it with autohotkey. Blender use python and this is the command I would like to send to:
Code: Select all
bpy.context.object.show_x_ray = True
- 10 Jun 2016, 00:56
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts
Hi all, @dubs: 1) According to the good documentation (located in the RM folder) you "can't" use autohotkey command directly in the item action. the correct way to do that is to write a little function in MyFunction.ahk Send(What) { Send, %What% return } Then in the item Action you can now call the ...
- 11 May 2016, 06:45
- Forum: Ask For Help
- Topic: Accessing a function in a program
- Replies: 0
- Views: 521
Accessing a function in a program
Hello, I would like to learn a bit more about send/post message to a program, I followed some tutos but I'm still at point zero after 2 days of tries. First I want to "tell" the program to switch to another toolbar. After looking the messages with Spy++ it seems too complicated for me because a lot ...
- 25 Apr 2016, 03:13
- Forum: Scripts and Functions
- Topic: Radial menu scripts
- Replies: 221
- Views: 92474
Re: Radial menu scripts - new: HTML-AHK radial menu examples
Hello, I get a shorcut to show a toolbar (made with many docks). When I press F1 the toolbar is shown Press again F1 the toolbar is hidden It works fine F1:: IfWinActive, ahk_exe blender-app.exe { MouseGetPos, MyXpos, MyYpos Toggle := !Toggle If Toggle { RM2_Show(81,MyXpos-120,MyYpos-60) ;Selection ...
- 21 Apr 2016, 10:10
- Forum: Ask For Help
- Topic: Minimize / Restore multiple windows
- Replies: 4
- Views: 1245
Re: Minimize / Restore multiple windows
Thanks, first time I use a loop! I replaced WinMaximize by WinRestore because I don't want Windows to be maximized #IfWinExist ahk_class GHOST_WindowClass Up:: Loop 5 { GroupAdd, WindowsToHide, ahk_class Photo_Lightweight_Viewer } WinMinimize ahk_group WindowsToHide return Down:: Loop 5 { GroupAdd, ...
- 21 Apr 2016, 08:44
- Forum: Ask For Help
- Topic: Minimize / Restore multiple windows
- Replies: 4
- Views: 1245
Minimize / Restore multiple windows
Hello, I'm trying to achieve something simple, I have 3 windows of the same program (windows builtin photo viewer) french traduction = Visionneuse de photos Windows What I want is toggle state with a shorcut between show/minimize or show/hide while working in an other application. I want them visibl...