advertising
related pastes to tag 'itunes'
- 1926108 - Stuff: itunes
-
- #!/bin/sh
- # iTunes now playing example script for snow leopard
- # for 10.5 you probably need to remove the 'arch -i386' part from the commands below
- #
- ARTIST=`arch -i386 osascript -e 'tell application "iTunes" to artist of current track as string';`
- TITLE=`arch -i386 osascript -e 'tell application "iTunes" to name of current track as string';`
- ALBUM=`arch -i386 osascript -e 'tell application "iTunes" to album of current track as string';`
- STATE=`arch -i386 osascript -e 'tell application "iTunes" to player state as string'`;
- 1841506 - PowerTunes Crash Report: osx itunes powertunes
-
- Process: PowerTunes [13153]
- Path: /Applications/PowerTunes.app/Contents/MacOS/PowerTunes
- Identifier: com.fatcatsoftware.PowerTunes
- Version: ??? (1.1.3)
- Code Type: X86 (Native)
- Parent Process: launchd [255]
- Date/Time: 2010-03-15 20:15:04.516 +0100
- 1581964 - MacIrssi and iTunes applescript : itunes macirssi applescript snowleopard
-
- -- small script to use for displaying iTunes track+artist+album wherever you open an applescript
- -- when iTunes is running
- tell application "iTunes"
- if player state is playing then
- -- get track, artist and album
- set currenttrack to the name of current track
- set currentartist to the artist of current track
- 1581948 - MacIrssi and iTunes applescript : itunes macirssi applescript snowleopard
-
- -- small script to use for displaying iTunes track+artist+album wherever you open an applescript
- -- when iTunes is running
- tell application "iTunes"
- if player state is playing then
- -- get track, artist and album
- set currenttrack to the name of current track
- set currentartist to the artist of current track
- 1358207 - algorithm China: itunes
-
- int[0..623] MT
- int index = 0
- function initializeGenerator(int seed) {
- MT[0] := seed
- for i from 1 to 623 {
- MT[i] := last 32 bits of(1812433253 * (MT[i-1] xor (right shift by 30 bits(MT[i-1]))) + i)
- }
- }