Thread: Info file in theme
-
08-04-2009, 01:54 PM #1iPhoneaholic
- Join Date
- Jul 2009
- Location
- Behind You
- Posts
- 349
- Thanks
- 58
- Thanked 42 Times in 39 Posts
Info file in theme
I am trying to find out if you can merge multiple Info files. Ex If I have a theme that has one and I have one that makes it so I do not have a clock at the top center location can I just take the text that is from one and copy it to the other and they both will still work?
Below is a copy of two of them
1//////
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
<key>UndockedIconLabelStyle</key>
<string>color: transparent</string>
</dict></plist>
///////
2//////
<?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>TimeStyle</key>
<string>margin-left: 200px</string>
</dict>
</plist>
////////
Thanks for any help
-
08-04-2009, 07:45 PM #2My iPhone is a Part of Me
- Join Date
- Apr 2009
- Location
- North Augusta, SC
- Posts
- 526
- Thanks
- 33
- Thanked 284 Times in 195 Posts
Yep you sure can. Take the <key> and <string> lines from one and copy them to the other. Be sure they are placed together and somewhere between the <dict> and </dict>. Also don't place them between any <key> and <string> lines. <key> and <strings> can't be separated. Hope it's not too confusing.
-
The Following User Says Thank You to iTJ For This Useful Post:
JJMA (08-04-2009)
-
08-04-2009, 07:50 PM #3iPhoneaholic
- Join Date
- Jul 2009
- Location
- Behind You
- Posts
- 349
- Thanks
- 58
- Thanked 42 Times in 39 Posts
So it would be
/////////////////
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
<key>UndockedIconLabelStyle</key>
<string>color: transparent</string>
<key>TimeStyle</key>
<string>margin-left: 200px</string>
</dict></plist>
//////////////////
what is in red is what I took from the second one. If that is right then I have somewhat of an idea. thanks for the help


-
08-04-2009, 09:35 PM #4My iPhone is a Part of Me
- Join Date
- Apr 2009
- Location
- North Augusta, SC
- Posts
- 526
- Thanks
- 33
- Thanked 284 Times in 195 Posts
Yep. Spot on.
-
08-05-2009, 05:29 AM #5iPhoneaholic
- Join Date
- Jul 2009
- Location
- Behind You
- Posts
- 349
- Thanks
- 58
- Thanked 42 Times in 39 Posts
Thanks again you are a bit help



LinkBack URL
About LinkBacks
Reply With Quote
