Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

advertising

related pastes to tag 'itunes'

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