- going to need a different way of defining key combos
¥ Optimize, this thing is big and slow :(
¥ Apple Events! Apple Events! Apple Events!
+
+¥ I think I found a slight memory leak:
+ 425 MenuTunes 7.8% 8:29.87 1 56 4827 215M+ 3.14M 135M- 599M+
*/
#import "MenuTunes.h"
[menu addItem:[NSMenuItem separatorItem]];
}
}
+
curTrackIndex = -1; //Force update of everything
[self timerUpdate]; //Updates dynamic info in the menu
buffer = malloc(length);
AEGetDescData(&resultDesc, buffer, length);
+ AEDisposeDesc(&scriptDesc);
+ AEDisposeDesc(&resultDesc);
result = [NSString stringWithCString:buffer length:length];
if (![result isEqualToString:@""] &&
([result characterAtIndex:0] == '\"') &&
- (void)timerUpdate
{
int pid;
+
if (GetProcessPID(&iTunesPSN, &pid) == noErr)
{
int trackPlayingIndex = [[self runScriptAndReturnResult:@"return index of current track"] intValue];
+
if (trackPlayingIndex != curTrackIndex)
{
[self updateMenu];
curTrackIndex = trackPlayingIndex;
}
-
+
//Update Play/Pause menu item
if (playPauseMenuItem)
{