by ZvezdanD » Sat Jan 03, 2009 9:40 am
MM3 monkey wrote:what does Ctrl+Space do?
It select/deselect the current track, i.e. the track which has the keyboard focus (not current playing song). My RegExp Find & Replace and Invert Selection/Select None scripts are based on this keyboard shortcut, especially the second one. Why I am using it? Well, because of the MM lack of some another, more important API functions which I need as a script developer. For example, I need a function which could tell me which panel is active (main tracklist or Now playing). So, I need to use some dirty tricks with keyboard simulation to get such information.

[quote="MM3 monkey"]what does Ctrl+Space do?[/quote]
It select/deselect the current track, i.e. the track which has the keyboard focus (not current playing song). My RegExp Find & Replace and Invert Selection/Select None scripts are based on this keyboard shortcut, especially the second one. Why I am using it? Well, because of the MM lack of some another, more important API functions which I need as a script developer. For example, I need a function which could tell me which panel is active (main tracklist or Now playing). So, I need to use some dirty tricks with keyboard simulation to get such information. :(