After Effect

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

After Effect

14 Jan 2018, 07:08

Hi guys
I am a newbie user of Wacom tablet and My knowledge is limited in AHK language, So I hope you will help me with what you wrote in the script Ahk in or After Effects or Photoshop.
Thanks in advance.
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

14 Jan 2018, 10:09

please help.
User avatar
Off Topic
Posts: 43
Joined: 07 Oct 2017, 20:57

Re: After Effect

14 Jan 2018, 13:52

I have scripts for After Effects, Illustrator, and Photoshop but it's all strictly mouse oriented (I don't use tablets) and they're too unorganized/messy to give out at the moment, so it'd be much better if you explained what you want to do and I give an example of how to do it. Right now, I've no idea what you're asking here because you don't provide any information other than the fact you have a tablet and that you want to use AHK for an Adobe program, you should explain what you're wanting to do so the burden of imagination, work, communication, and all other things aren't on the audience. If you expect people to help you, then you should help them get to a position where they can help you in the first place.

Are you trying to do something (e.g. -- Why'd you say "please help" without saying what you need help with?), or are you asking "Can I have free scripts?" My scripts are completely catered for my own use with a gaming mouse, are usually around 1200+ lines long and aren't commented, so just handing them over wouldn't be nearly as helpful as you saying something like "I want to increase my brush size with this button, how can I do that?" or etc.
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

15 Jan 2018, 03:07

Hi guys
My English is not good, please excuse me
I mean that each of us shares his Scripts and ideas with forum members,
Mr. Off Topic, give me even one example for your Scripts.
Thanks in advance.
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

15 Jan 2018, 04:17

Hi All
My Teacher (Off Topic)
This 2 Example in Photoshop:
- Choose a command (Time Line) from the Window menu.
- Choose a command (Bottom Right Pixel Color) from Trim from Image Window menu.

Thanks in advance.
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

16 Jan 2018, 14:45

This 2 Example in Photoshop:

How do I do the following:
- Choose a command (Time Line) from the Window menu.
- Choose a command (Bottom Right Pixel Color) from Trim from Image Window menu.

Thanks in advance.
User avatar
Off Topic
Posts: 43
Joined: 07 Oct 2017, 20:57

Re: After Effect

16 Jan 2018, 18:53

asad41163 wrote:This 2 Example in Photoshop:

How do I do the following:
- Choose a command (Time Line) from the Window menu.
- Choose a command (Bottom Right Pixel Color) from Trim from Image Window menu.

Thanks in advance.
There's a good chance that I don't understand your requests here because they seem like very basic and simple things, which are literally just knowing what keys need to be pressed and then writing it into code. If so, then I'll drop a few, but I'm not going to write an entire script for you -- and it seems very odd that someone who's used AHK for 4 years would need someone who's only used it (and programmed in general) for three months to help them out like this. I don't want to sound mean in pointing that out but it seems very strange to me and (in my experience in other hobby-oriented forums) can be an indication that the person in question doesn't want to exert the effort to even attempt it themselves though they easily could if they did, which I hope is not true in this case. Regardless, I've tested these and commented out what's happening:

Code: Select all

; Select Timeline from Window toolbar menu
!F19::
	Send, {AltDown}{w}{AltUp} ; Alt key to engage Toolbar, "w" for Window
	Send, {Up 4} ; "Timeline" has no Alt shortcut, so press Up four times to select it
	Send, {Enter} ; Enter to confirm
Return

; Select Trim from Bottom-Right pixel
F19::
	Send, {AltDown}{i}{AltUp}{r} ; Alt key to engage Toolbar, "i" for Image, "r" for Trim
	Send, {Tab}{Down 2}{Space} ; Tab to engage checkmarks, Down twice to selection, Space to toggle checkmark
	Send, {Enter} ; Enter to confirm and exit Trim dialogue menu
Return
User avatar
jeeswg
Posts: 6902
Joined: 19 Dec 2016, 01:58
Location: UK

Re: After Effect

17 Jan 2018, 02:06

Get toolbar item/menu item IDs:
Interacting with specific elements in unique programs - AutoHotkey Community
https://autohotkey.com/boards/viewtopic ... 49#p189249
homepage | tutorials | wish list | fun threads | donate
WARNING: copy your posts/messages before hitting Submit as you may lose them due to CAPTCHA
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

17 Jan 2018, 12:32

Hi guys, Hi Mr. Off Topic
I appreciate your participation, thank you very much
The examples that you shared with me in Photoshop
And the examples that you might give me in After Effects
It will help me a lot in learning and training on Autohotkey
I hope you are as generous as we have always known

Thanks for all
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

17 Jan 2018, 12:42

Hi guys, Hi Mr. jeeswg
I appreciate your participation, thank you very much

Thanks for all
asad41163
Posts: 268
Joined: 29 Jul 2014, 14:31

Re: After Effect

18 Jan 2018, 15:18

Hi all
This example works very well

Code: Select all

#IfWinActive ahk_exe notepad.exe
e::WinMenuSelectItem, , , File, Page Setup 
w::WinMenuSelectItem, , , Edit, Find  
e::WinMenuSelectItem, , , File, Page Setup 
How this example works, like the previous examples

Code: Select all

#IfWinActive ahk_exe Photoshop.exe
a::WinMenuSelectItem, , , File, Open
Thanks for all

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: No registered users and 214 guests