Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: Creating Themes With Dreamboard
is a discussion within theiPhone 4|4S New Skins / Themes Launches
forums, a part of theNew Skins / Themes Launches
section;Same here lol gn
...-
03-22-2011, 12:22 AM #61
Same here lol gn
-
03-22-2011, 03:24 AM #62Theme Creator
- Join Date
- Jan 2008
- Location
- Singapore
- Posts
- 2,217
- Thanks
- 764
- Thanked 915 Times in 589 Posts
Panorama Wallpaper for DreamBoard
Panorama Wallpaper for DreamBoard
not exactly panorama, the wallpaper is continues on each page rather than what the real panorama in android phone does, but it'll do for now.
Here some guidance
- FrameHeight 640 for iPhone4 and (480 for legacy device? im not sure)
- FrameWidth depends on how many pages is your springboard, mine is 5 pages (included page0), each page is 320px - so the wallpaper width 5x320 = 1600px BUT since the beginning and the end of the sprinboard will bounce when u scroll, we have to add extra 320px (to remove black background bounce) so the width wallpaper for 5 pages spingboard is (5x320)+320=1920px and so on
- To eliminate black background when it bounce FrameX has to start at -150 (minus 150)
Go play around with it<dict>
<key>FrameHeight</key>
<integer>640</integer>
<key>FrameWidth</key>
<integer>1920</integer>
<key>FrameX</key>
<integer>-150</integer>
<key>FrameY</key>
<integer>0</integer>
<key>Image</key>
<string>/DreamBoard/Endroid/Images/BG.png</string>
<key>ViewType</key>
<string>ImageView</string>
</dict>
here's sample of 5 pages springboard wallpaper (should be working for lesser pages)
Last edited by falcon212; 03-22-2011 at 09:50 AM.
iPhone Themes:
FlowBoard - Kassou HD - BoxorHD Widescreen - BoxorHD - BoxorHD Ceramic White - Bookshelf - AsymmetricHD
iPad Themes: Honeypad Pro - HoneyPad Pro Retina - BoxorHD - BoxorHD Retina - Bookshelf - BoxorHD Ceramic White
- All my themes in one Cydia website - open the link from your iDevice
PayPal Donation: [email protected] | Twitter: changroy | HoneyPad Pro
-
The Following User Says Thank You to falcon212 For This Useful Post:
DaEliminator (12-05-2011)
-
03-22-2011, 08:17 AM #63Theme Creator
- Join Date
- Oct 2010
- Location
- file://
- Posts
- 3,600
- Thanks
- 163
- Thanked 1,217 Times in 588 Posts
-
03-22-2011, 12:24 PM #64
Well im bout to go to my next class (im in college) so after that im done for today and ill post it
-
03-22-2011, 01:29 PM #65Livin the iPhone Life
- Join Date
- Sep 2008
- Location
- In a van down by the river
- Posts
- 4,831
- Thanks
- 551
- Thanked 515 Times in 427 Posts
This looks like themeing for Android. Maybe I should start here instead and get a head start on it.
-
03-22-2011, 03:16 PM #66
ok here the basic setup for making menus
This is the home button on my ubuntu theme. it actually consists of two buttons. normally i would just use one button with a toggle, like the endroid all apps button, but with multiple menu choices like in my theme i need to have it disappear if i tap something else, which will not happen with a toggle
ok this is how this works, i have two buttons right. the top button shows the menu, then moves out the way so the bottom button (which hides the menu) is tappable. (since the topmost view blocks ones below it) and then when i tap the bottom button to hide the menu, it moves the upper button back into place. that way next time i tap that area it will show the menu. this is useful because i can use the move command whether or not it is in place or not to make sure it goes back to its original position, therefore hiding the HomeMenu no matter what.Code:<dict> <key>Actions</key> <array> <string>show HomeMenuBG</string> <string>setx home1 400 NO</string> </array> <key>FrameHeight</key> <integer>65</integer> <key>FrameWidth</key> <integer>30</integer> <key>FrameX</key> <integer>290</integer> <key>FrameY</key> <integer>0</integer> <key>Image</key> <string>/DreamBoard/Ubuntu/Images/Home.png</string> <key>Toggled</key> <true/> <key>ToggledInteraction</key> <true/> <key>ViewType</key> <string>Button</string> <key>id</key> <string>home1</string> </dict> <dict> <key>Actions</key> <array> <string>hide HomeMenuBG</string> <string>setx home1 290 NO</string> </array> <key>FrameHeight</key> <integer>65</integer> <key>FrameWidth</key> <integer>30</integer> <key>FrameX</key> <integer>290</integer> <key>FrameY</key> <integer>0</integer> <key>Image</key> <string>/DreamBoard/Ubuntu/Images/Home.png</string> <key>Toggled</key> <true/> <key>ToggledInteraction</key> <true/> <key>ViewType</key> <string>Button</string> <key>id</key> <string>home2</string> </dict>
this is a secondary test button, which will be another menu that id tap, it hides the HomeMenu whether it is open or not. of course if its not open then nothing even happens.
Code:<dict> <key>Actions</key> <array> <string>hide HomeMenuBG</string> <string>setx home1 290 NO</string> </array> <key>FrameHeight</key> <integer>30</integer> <key>FrameWidth</key> <integer>30</integer> <key>FrameX</key> <integer>290</integer> <key>FrameY</key> <integer>90</integer> <key>Image</key> <string>/DreamBoard/Ubuntu/red.png</string> <key>ViewType</key> <string>Button</string> </dict>

all i need to add is more actions for other menus and such, right now it only hides the HomeMenuLast edited by PhanaticD; 03-22-2011 at 03:41 PM.
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
The Following 4 Users Say Thank You to PhanaticD For This Useful Post:
JesseDegenerate (03-23-2011), Starwalker3000 (03-22-2011), TheWarlu (03-22-2011), TK4|2|1 (03-23-2011)
-
03-22-2011, 03:31 PM #67Theme Creator
- Join Date
- Mar 2010
- Location
- Current.plist
- Posts
- 337
- Thanks
- 203
- Thanked 116 Times in 68 Posts
Nice work... see "hide" can be usefull :-)
Care to post some screenshot?
-
03-22-2011, 03:43 PM #68
i actually just did
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
03-22-2011, 03:58 PM #69Theme Creator
- Join Date
- Mar 2010
- Location
- Current.plist
- Posts
- 337
- Thanks
- 203
- Thanked 116 Times in 68 Posts
Thx :-)
It's a good idea, I'll have to play with that. I'm working on a menu system myselfDon't be afraid of the plist... and never giveup...
-
03-22-2011, 06:27 PM #70
i just talked to wyndwarrior, these are the only actions so far
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
03-22-2011, 07:10 PM #71Theme Creator
- Join Date
- Jul 2007
- Location
- "tax"-achusetts, USA
- Posts
- 814
- Thanks
- 51
- Thanked 1,063 Times in 318 Posts
Thanks Phanatic!! I created a whole menu system using your first idea above, and it works great!! I'm able to push a menu button (home) and it hides all other menu buttons (including home) and show "home2", and when "home2" is pressed it closes that menu and shows all other menu buttons again.
I've been working on this all day and your idea was perfect!!
EDIT
my code (if anyone is interested):
<dict>
<key>Actions</key>
<array>
<string>toggle appGrid</string>
<string>toggle gridBG</string>
<string>toggle gridOverlay</string>
<string>sety MediaButton 550 NO</string>
<string>sety HomeButton 550 NO</string>
<string>sety GamesButton 550 NO</string>
<string>sety AppsButton 550 NO</string>
<string>sety ToolsButton 550 NO</string>
<string>sety AppsButton2 417 NO</string>
</array>
<key>FrameHeight</key>
<integer>59</integer>
<key>FrameWidth</key>
<integer>59</integer>
<key>FrameX</key>
<integer>256</integer>
<key>FrameY</key>
<integer>417</integer>
<key>Image</key>
<string>/DreamBoard/P9/Images/Apps/Apps.png</string>
<key>ViewType</key>
<string>Button</string>
<key>id</key>
<string>AppsButton</string>
</dict>
<dict>
<key>Actions</key>
<array>
<string>toggle appGrid</string>
<string>toggle gridBG</string>
<string>toggle gridOverlay</string>
<string>sety HomeButton 417 NO</string>
<string>sety GamesButton 417 NO</string>
<string>sety AppsButton 417 NO</string>
<string>sety MediaButton 417 NO</string>
<string>sety ToolsButton 417 NO</string>
<string>sety AppsButton2 550 NO</string>
</array>
<key>FrameHeight</key>
<integer>59</integer>
<key>FrameWidth</key>
<integer>59</integer>
<key>FrameX</key>
<integer>130</integer>
<key>FrameY</key>
<integer>550</integer>
<key>Image</key>
<string>/DreamBoard/P9/Images/Apps/Apps2.png</string>
<key>ViewType</key>
<string>Button</string>
<key>id</key>
<string>AppsButton2</string>
</dict>Last edited by thefinga; 03-22-2011 at 09:55 PM.
-
03-22-2011, 08:42 PM #72Theme Creator
- Join Date
- Jan 2008
- Location
- Singapore
- Posts
- 2,217
- Thanks
- 764
- Thanked 915 Times in 589 Posts
I'm trying to make games folder horizontal scrollable, but it seems to always stick in one page
Last edited by falcon212; 03-22-2011 at 09:02 PM.
iPhone Themes:
FlowBoard - Kassou HD - BoxorHD Widescreen - BoxorHD - BoxorHD Ceramic White - Bookshelf - AsymmetricHD
iPad Themes: Honeypad Pro - HoneyPad Pro Retina - BoxorHD - BoxorHD Retina - Bookshelf - BoxorHD Ceramic White
- All my themes in one Cydia website - open the link from your iDevice
PayPal Donation: [email protected] | Twitter: changroy | HoneyPad Pro
-
03-22-2011, 09:29 PM #73
can u post ur code for the view?
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
03-22-2011, 10:36 PM #74Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,686
- Thanks
- 1,089
- Thanked 5,025 Times in 2,993 Posts
Do y'all know what wad cause dreamboard to not have a background but icons are there?
-
03-22-2011, 10:47 PM #75
a syntax error
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
03-22-2011, 11:17 PM #76Theme Creator
- Join Date
- Jan 2008
- Location
- Singapore
- Posts
- 2,217
- Thanks
- 764
- Thanked 915 Times in 589 Posts
Finally managed to make custom folder for games (any folder actually)
The folder (put this code along with all the icons) - the page is depend
<dict>
<key>Actions</key>
<array>
<string>toggle gameGrid</string>
<string>toggle gameGridBG</string>
<string>toggle gameGridOverlay</string>
</array>
<key>FrameHeight</key>
<integer>85</integer>
<key>FrameWidth</key>
<integer>65</integer>
<key>FrameX</key>
<integer>1208</integer>
<key>FrameY</key>
<integer>125</integer>
<key>Image</key>
<string>/DreamBoard/Endroid/Images/Apps/[email protected]</string>
<key>ViewType</key>
<string>Button</string>
</dict>To hide the game grid, I put toggle action "hide gameGrid" on the widget button<dict>
<key>AllApps</key>
<false/>
<key>Apps</key>
<array>
<string>se.illusionlabs.labyrinth2</string>
<string>com.donutgames.trafficrush</string>
<string>com.popcap.bejeweled2</string>
<string>com.clickgamer.AngryBirds</string>
<string>com.chillingo.cuttherope</string>
<string>com.dingogames.tastyplanet1iphone</string>
<string>com.naturalmotion.j3n64</string>
<string>jp.co.ponos.mrspace</string>
<string>com.Halfbrick.Fruit</string>
<string>jp.co.cave.daifukkatsu</string>
<string>com.ea.tetris</string>
<string>com.appular.pushpanic</string>
<string>jp.co.capcom.sf4us</string>
<string>com.donutgames.catphysics</string>
<string>com.leftover.CookieDozer</string>
<string>com.bluecarrotgames.axeinface</string>
<string>com.popcap.PvZ</string>
<string>com.neonplay.paperglider</string>
</array>
<key>Alpha</key>
<real>0.0</real>
<key>ClipToBounds</key>
<true/>
<key>Cols</key>
<integer>4</integer>
<key>FrameHeight</key>
<integer>400</integer>
<key>FrameWidth</key>
<integer>310</integer>
<key>FrameX</key>
<integer>10</integer>
<key>FrameY</key>
<integer>70</integer>
<key>GapX</key>
<integer>77</integer>
<key>GapY</key>
<integer>85</integer>
<key>IconHeight</key>
<integer>85</integer>
<key>IconWidth</key>
<integer>65</integer>
<key>PageHeight</key>
<integer>340</integer>
<key>PageWidth</key>
<integer>310</integer>
<key>Rows</key>
<integer>4</integer>
<key>Toggled</key>
<false/>
<key>ToggledInteraction</key>
<true/>
<key>UserInteraction</key>
<false/>
<key>ViewType</key>
<string>AppGrid</string>
<key>id</key>
<string>gameGrid</string>
</dict>
short video in action<dict>
<key>Actions</key>
<array>
<string>toggle law</string>
<string>hide gameGridBG</string>
<string>hide gameGridOverlay</string>
<string>hide gameGrid</string>
<string>hide closeGamefolder</string>
</array>
<key>FrameHeight</key>
<integer>36</integer>
<key>FrameWidth</key>
<integer>73</integer>
<key>FrameX</key>
<integer>238</integer>
<key>FrameY</key>
<integer>445</integer>
<key>Image</key>
<string>/DreamBoard/Endroid/Images/Apps/Widgets.png</string>
<key>ViewType</key>
<string>Button</string>
</dict>
[ame=http://www.youtube.com/watch?v=P3hz1xQditg]YouTube - Android OS on iPhone (Endroid Dreamboard)[/ame]iPhone Themes:
FlowBoard - Kassou HD - BoxorHD Widescreen - BoxorHD - BoxorHD Ceramic White - Bookshelf - AsymmetricHD
iPad Themes: Honeypad Pro - HoneyPad Pro Retina - BoxorHD - BoxorHD Retina - Bookshelf - BoxorHD Ceramic White
- All my themes in one Cydia website - open the link from your iDevice
PayPal Donation: [email protected] | Twitter: changroy | HoneyPad Pro
-
03-22-2011, 11:50 PM #77
nice
but i hope ur gonna change it off the widget button haha
Official DreamBoard Wiki
Twitter | YouTube
My Themes: ipod 5g themes | Origins [blue] | Ubuntu Ultimate | Windows 7 OS
-
03-23-2011, 12:16 AM #78Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,686
- Thanks
- 1,089
- Thanked 5,025 Times in 2,993 Posts
-
03-23-2011, 12:26 AM #79
Thats just means u didnt type it correctly. If u want ppl to help more accurately u gotta give me more than "its not working"
-
03-23-2011, 12:32 AM #80Sug Luv Super Moderator
- Join Date
- Jan 2011
- Location
- Hammond Louisiana
- Posts
- 28,686
- Thanks
- 1,089
- Thanked 5,025 Times in 2,993 Posts
Phanatic if ya talking to me I downloaded a whole theme and unzipped in endroid folder and this happened... It's from the Forum Jesse made




LinkBack URL
About LinkBacks
Reply With Quote


