[Pythonmac-SIG] FBAs with bundlebuilder?

Ronald Oussoren ronaldoussoren at mac.com
Mon Sep 13 16:24:48 CEST 2004


On 13-sep-04, at 16:18, Jacob Kaplan-Moss wrote:

> Has --
>
> That sounds brilliant!  I've been using been using a Python FBA to do 
> iTunes scripting (with very small AppleScript stubs in iTunes Scripts 
> menu), but I've been coding the script terminology files by hand, and 
> I love the idea of using a decorator to automate the process.
>
> As for creating FBAs, it's really quite simple; all you have to do is 
> add:
>
> 	<key>LSUIElement</key>
> 	<integer>1</integer>
>
> to the app's Info.plist, and you get a FBA.  I know there's a way to 
> get bundlebuilder to stick this automatically into the Info.plist, but 
> I haven't figured it out yet.

add a plist argument to the call to buildapp:


	buildapp(
		...
		plist=plistlib.PList(LSUIElement=1)
	)

Ronald



More information about the Pythonmac-SIG mailing list