| Author |
Message |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Mon Oct 17, 2011 4:41 pm Subject: iTunes 10.4 |
Thank you for the hint. I have not updated iTunes and therefore not noticed the problem.
In newer versions (>= 10.4) the iTunes window class name has changed from "iTunes" to "ITW ... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Sat Dec 11, 2010 2:41 pm Subject: Update |
error "Could not locate iTunes! Applications exits."
This error message appears only once after installing a newer iTunes version, for example when the database is updated.
Can you imple ... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Wed Dec 16, 2009 11:00 am Subject: New Version |
| There is a newer version of the script. Please look at the [url=http://www.autohotkey.com/forum/topic33288.html]first post. |
Topic: Sorting out iTunes |
ophthalmos
Replies: 2
Views: 375
|
Forum: Ask for Help Posted: Mon Nov 09, 2009 9:26 pm Subject: Remove dead tracks |
The following script does something similar and could perhaps be adapted to your own requirements.
; a translation to ahk of an js-example in the iTunes SDK documentation
#SingleInstance, Force
S ... |
Topic: WinTraymin to trayicon |
ophthalmos
Replies: 71
Views: 10686
|
Forum: Scripts & Functions Posted: Mon Nov 09, 2009 7:00 pm Subject: WinTraymin Menu |
Thanks, Sean.
If someone is interested: This is the code that works for me as desired (inside my ever running script).
Menu, wtmMenu, Add, Restore, wtm_Restore
Menu, wtmMenu, Add, Exit, wtm_Exit
M ... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Mon Nov 09, 2009 12:07 pm Subject: SC122 - Play/Pause |
SC122:: ; added
PlayPause:
COM_Invoke(iTunesApp, "PlayPause")
If COM_Invoke(iTunesApp, "Mute")
{
Gosub, ToggleMute
}
... |
Topic: WinTraymin to trayicon |
ophthalmos
Replies: 71
Views: 10686
|
Forum: Scripts & Functions Posted: Mon Nov 09, 2009 11:48 am Subject: WinTraymin Menu |
Who knows how to add a menu to the trayicon
So that each minimized window has its own menu (Restore and Exit)  |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Mon Oct 19, 2009 10:28 am Subject: media keys |
The script is already using media keys. However, only together with the modifier keys.
You can search for "Media_" to find (and to modify) the corresponding lines. |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Sat Sep 26, 2009 6:31 am Subject: iTunes and AutoHotkey |
Dear wrecklass,
many thanks for the feedback and suggestions. I updated the script. See my first post. |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Fri Sep 25, 2009 2:06 pm Subject: broken in iTunes 9 |
I have no problems with the latest version of iTunes under Win XP (32bit) and Vista (64bit).
The script terminates only the first time, when the disclaimer is shown or the database converter is activ ... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Thu Sep 03, 2009 7:47 pm Subject: Version 2.1 |
| Thank you for proofreading. I've made the corrections and uploaded the new version (with some new features). |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Wed Sep 02, 2009 2:57 pm Subject: COM_Release |
I think the same applies to the following variables, which represent only numbers.
Rating => COM_Release(getRating)
SoundVolume => COM_Release(PlayerVol)
Size => COM_Release(getSize) ... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Wed Sep 02, 2009 2:25 pm Subject: COM_Release |
| Wow! How quickly the clarification! Thank you, Sean! |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Wed Sep 02, 2009 12:25 pm Subject: crashes when a podcast is chosen |
Another solution is to enlarge the variable's holding capacity of the COM_Release function as followed:
COM_Release(ppv)
{
VarSetCapacity(ppv, 64) ; added by Ophthalmos
... |
Topic: iTunes and AutoHotkey |
ophthalmos
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Wed May 20, 2009 6:31 pm Subject: update |
| An extended version with the possibility of individual settings for the modifier hotkeys and the behavior at start-up can be downloaded as an exe-file [url=http://www.bluesquartett.de/itunes.htm]from ... |
| |