Arcade Prehacks

Results 1 to 3 of 3
  1. #1
    Member J4QU1M3's Avatar
    Join Date
    Jul 2010
    Location
    'Murica
    Posts
    91

    Ipod touch DreamBoard theme

    i am going to attempt to create a theme for dreamboard on ipod/iphone.

    for those of you that do not know what dreamboard is, it is a super-epic-theme app that lets you turn your iDevice into whatever you want. for example my ipod is a better android than my dads android lol

    my idea is to make it just like the ps3 xmb crossbar thingy! any help would be greatly appreciated and i will post the completed them on this forum first before anywhere else

    thank you!

    EDIT: if you want to help, you will probably need to be good at coding/image making.

  2. #2
    Senior Member
    Join Date
    Jul 2008
    Posts
    1,871

    Re: Ipod touch DreamBoard theme

    What coding language?

    What kind of images?

  3. #3
    Member J4QU1M3's Avatar
    Join Date
    Jul 2010
    Location
    'Murica
    Posts
    91

    Re: Ipod touch DreamBoard theme

    Quote Originally Posted by Joonaqwe
    What coding language?
    .plist its for apple. short for Property List.
    Example
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    	<key>MainView</key>
    	<array>
    		<dict>
    			<key>Actions</key>
    			<array>
    				<string>launch com.wynd.dreamboard</string>
    			</array>
    			<key>Frame</key>
    			<string>110,190,100,100</string>
    			<key>Image</key>
    			<string>$ROOT/Hello.png</string>
    			<key>ViewType</key>
    			<string>Button</string>
    		</dict>
    	</array>
    </dict>
    </plist>
    Quote Originally Posted by code
    <key>Image</key>
    <string>$ROOT/Hello.png</string>
    <key>ViewType</key>
    <string>Button</string>
    this says that the image is called Hello.png inside the root directory, and the bottom makes it a button.

    Quote Originally Posted by code
    <key>Frame</key>
    <string>110,190,100,100</string>
    that is the size an position of the image/buttton. it is 110 pixels from the left. 190 pixels from the top. and is 100x100

    Quote Originally Posted by code
    <key>Actions</key>
    <array>
    <string>launch com.wynd.dreamboard</string>
    this says that when you press the image/button, it launches dreamboard.app which has the formal name of com.wynd.dreamboard

    Quote Originally Posted by Joonaqwe
    What kind of images?
    i actually got them all since its a ps3 theme and i already had the images. but thanks anyway for that part.

    P.S. i hope i helped a little bit in explaining it. i mainly just need help with where to put each string for wallpaper and other buttons.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •