itunes

cross-platform iTunes visualizer?

I'd like to make a cross-platform iTunes visualizer (Mac + Windows). I've looked at: Quartz Composer, which only runs on Mac OS, and appears to consist of dragging boxes around. I'd like to be able to actually program. VizKit, which seems kind of heavy, and doesn't come with any easy-to-modify sample projects. Can someone point me to...

Applescript iTunes Reveal

Is it correct that the reveal applescript command is broken with iTunes 9? Works: tell application "iTunes" play (track "Los") end tell Doesn't work: tell application "iTunes" reveal (track "Los") end tell But the following does work: tell application "iTunes" reveal (playlist "Music Videos") end tell Can anyone reproduce th...

How to prevent a window from opening from another application?

Hi, I will prevent a window from iTunes to be opened. I googled a lot but can't find an iTunes library that allows me to control such things, so I think I must get back to basics and close it after it opens, but how? I think: Tick a timer every 500 ms Check if the window handle is opened Close it Is that possible? How can I recogni...

How do I add artwork to an iTunes track with obj-c AppScript?

aTrack is an ITReference* object, value is an NSImage* object, initialized via a URL to a jpeg. [[[[[aTrack artworks] data_] set] to:value] send]; I get the following message in GDB: 2010-03-09 16:59:42.860 Sandbox[2260:a0f] Can't pack object of class NSImage (unsupported type): <NSImage 0x10054a440 Size={0, 0} Reps=( I then tried ...

iTunes Scripting Bridge reveal does not work

The following code should show a certain track in iTunes: NSString* iTunesPath = [[NSWorkspace sharedWorkspace] absolutePathForAppBundleWithIdentifier:@"com.apple.iTunes"]; iTunesApplication *iTunes = nil; if ( iTunesPath ) { iTunes = [[SBApplication alloc] initWithURL:[NSURL fileURLWithPath:iTunesPath]]; [iTunes setDelegate:self]; }...

Changing the .ipa file artwork of compiled iPhone application

Hello ! Everyone. Just do following steps & you will understand what problem I am facing right now. Create a new project from template. File / New Project - Navigation based application. Create any 32 x 32 image (.png) from any image editor & name it as icon.png Drag that file to your applications resources. Compile & run your project...

There's a way to avoid AppleStore?

Hi, i need to develop an iPhone application that is a Client of serverside application. This application is not for customer but for sell agents. I know that if i try to send to Apple to put on Apple Store they reject it because the application have no sense for Apple Store. The company is small so i can't use the Enterprise program. The...

Strange iPhone application icon view in the iTunes's Applications section

When I drag 'My iPhone App' application's file into iTunes it has proper view. Rounded corners and transparent background. Then I close iTunes and open it again. Corners are still rounded but... What has happened with the background? http://www.freeimagehosting.net/uploads/15fee337bc.png Icon is a project's resource file named 'iTunes...

sync image from itunes to iphone simulator

hi i want to know how i sync image from itunes to iphone simulator. Thanks ...

Translating itunes affiliate rss via xslt

I can't get this working for the life of me. Here is a snippet of the xml I get from an RSS feed from itunes affiliate. I want top print the values within tags but I cannot for some reason: <?xml version="1.0" encoding="utf-8"?> <feed xmlns:im="http://itunes.apple.com/rss" xmlns="http://www.w3.org/2005/Atom" xml:lang="en"> ...

access music database from cocoa

How do I access the iTunes database from my application. I seems apple can access iphone and itunes from their apps. How do I do the same? ...

Start applescript when itunes starts

Any way to bind an applescript to iTunes so that when iTunes is started the applescript is run? I have a script that runs continuously monitoring iTunes but it seems a waste to have it running even if iTunes is not running. Thanks ...

How to detect the active iTunes store on the iPhone/iPod Touch/iPad?

I'd like to be able to determine which store the user connects to from inside my app, so that I can direct them to some appropriate content for their device AND store. Does anyone know how to get this information? Basically, if the user is in the UK, and connects to the UK store, I want my function/method to return GB, if in Korea, I w...

How to play itunes videos in iphone?

I am new to iPhone development. I have a URL of a site. On clicking the "visit itunes" button on page, the itunes for that particular site is opened in my Mac iTunes. I am able to see the videos in iTunes. How can I implement this in my iPhone so that i can see the video in my iPhone? Thanks. ...

Can I using cross-site XmlHttpRequest in Itunes LP environment?

Itunes is based on Webkit platform and we can't use cross-site XmlHttpRequest in JavaScript because of security policy. But, as a exception, we can do that with a special header. Here is source code and I did it successfully in Safari: var url = 'http://mysite.net/canvas.php'; var mybody = "<?xml version='1.0' charset='utf-8'?><pers...

iTunes Visualization -- What type of code is it written in and what does that code look like?

Being a web developer, I know how event driven user interfaces are written, but do not have insight into other families of code (embedded software like automotive software, automation software on assembly lines, drivers, or the crawling lower-thirds on CNN, etc.) I was looking at the iTunes visualizer (example) and am curious: What co...

MonoTouch iPad iTunes Submit - Beta?

Using MonoTouch 2.0 and MonoDevelop 2.2.2 I created an iPad app. It is set to the 3.2 OS When I submit the app it says that this binary was created with a beta version. I have the newest XCode/SDK ...

itunes http link to apps with a keyword

Is there a way to generate an http link which will open iTunes to the results of a query for apps with a specific keyword. I have a number of apps and I want my users from my web site to see those with a common keyword. So not to my full list by default. ...

Get the next ten songs in iTunes DJ using AppleScript

I am creating an application using AppleScript and I want to display a list of the next ten (including the current) songs iTunes will play from iTunes DJ. I can't find it anywhere on the internet, Google, whatever so I asked it here. Can anyone help me? Thanks ...

Scrapy issue with iTunes' AppStore

I am using Scrapy to fetch some data from iTunes' AppStore database. I start with this list of apps: http://itunes.apple.com/us/genre/mobile-software-applications/id36?mt=8 In the following code I have used the simplest regex which targets all apps in the US store. from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor from ...