+ Reply
Page 9 of 11 FirstFirst ... 7891011 LastLast
Results 161 to 180 of 209

Thread: HTC Hero Theme

  1. #161
    Green Apple travis_t80's Avatar
    Join Date
    Sep 2008
    Location
    A-town
    Posts
    79
    Thanks
    6
    Thanked 3 Times in 2 Posts

    Can someone tell me how to change the time to 12-hour. I've been all through the code and cannot determine what to change and where.

    Am I getting smart with you? How would you know?

  2. #162
    What's Jailbreak?
    Join Date
    Feb 2008
    Posts
    18
    Thanks
    3
    Thanked 1 Time in 1 Post
    @toomanyphones - i created a folder through Categories for the Apps icon but it doesn't open when i click on the [+] button. any ideas?

    @rich1976 i have another version i guess because when i click on the weather location it opens a blank page in safari! I tried d/l your zip and 2 give me errors when i unzip them.

    @Besnath and others- does anyone have a complete or fairly complete theme yet?? there's like 15 unfinished ones floating in this thread and it's very hard to keep track. anyone have working clock & weather widgets,and working lockscreen theme? i really like most a little of everyones but maybe you should combine to complete a theme and give credit to eachother?
    Last edited by SourAppleFan; 08-18-2009 at 02:44 PM. Reason: sounded rude, re-worded.

  3. #163
    What's Jailbreak?
    Join Date
    Sep 2008
    Posts
    8
    Thanks
    0
    Thanked 1 Time in 1 Post
    Modify rich1976 copy....



    Flip clock in lighter font looks cool to me...
    dock more usable..

  4. #164
    Theme Creator Li-ion's Avatar
    Join Date
    Aug 2009
    Posts
    1,049
    Thanks
    104
    Thanked 436 Times in 204 Posts

    Quote Originally Posted by SourAppleFan View Post
    @toomanyphones - i created a folder through Categories for the Apps icon but it doesn't open when i click on the [+] button. any ideas?

    @rich1976 i have another version i guess because when i click on the weather location it opens a blank page in safari! I tried d/l your zip and 2 give me errors when i unzip them.

    @Besnath and others- does anyone have a complete or fairly complete theme yet?? there's like 15 unfinished ones floating in this thread and it's very hard to keep track. anyone have working clock & weather widgets,and working lockscreen theme? i really like most a little of everyones but maybe you should combine to complete a theme and give credit to eachother?

    Since the app icon is not exactly where the graphic is, you have to touch the little grey space in between the middle and the side icon to launch the side one.

  5. The Following User Says Thank You to Li-ion For This Useful Post:

    SourAppleFan (08-20-2009)

  6. #165
    Green Apple travis_t80's Avatar
    Join Date
    Sep 2008
    Location
    A-town
    Posts
    79
    Thanks
    6
    Thanked 3 Times in 2 Posts

    Nobody knows how to change from 24 to 12-hour?

    Am I getting smart with you? How would you know?

  7. #166
    What's Jailbreak?
    Join Date
    Jun 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Quote Originally Posted by travis_t80 View Post
    Nobody knows how to change from 24 to 12-hour?
    Does this help.. this is how to get it to 24hr format.. maybe you can work out how to get it to 12hr!

    Download this Widget.html file and replace it with the original in iVillain.theme directory to get the clock to show the time in 24hrs format.

  8. #167
    Green Apple
    Join Date
    Apr 2008
    Posts
    36
    Thanks
    1
    Thanked 13 Times in 9 Posts

    Quote Originally Posted by Li-ion View Post
    On page1- page9.png, there is a rounded square, which is kinda opaque and grey...

    Could you link me to it?

    Thanks!
    I'll try and post the psd files for both page1 to ... and also for the icons.

    Quote Originally Posted by travis_t80 View Post
    Nobody knows how to change from 24 to 12-hour?
    This was provided by cmart4 on this thread a few pages ago. i just removed these lines to get 24hour.

    You must add:

    if(hr==100){hr=112;am_pm='am';}
    else if(hr<112){am_pm='am';}
    else if(hr==112){am_pm='pm';}
    else if(hr>112){am_pm='pm';hr=(hr-12);}

    in Widget.html

    So it must looks:

    function dotime(){
    theTime=setTimeout('dotime()',1000);
    d = new Date();
    hr= d.getHours()+100;
    mn= d.getMinutes()+100;
    se= d.getSeconds()+100;
    if(hr==100){hr=112;am_pm='am';}
    else if(hr<112){am_pm='am';}
    else if(hr==112){am_pm='pm';}
    else if(hr>112){am_pm='pm';hr=(hr-12);}
    tot=''+hr+mn+se;
    Last edited by rich1976; 08-19-2009 at 03:38 AM. Reason: Automerged Doublepost

  9. #168
    iPhone? More like MyPhone
    Join Date
    Feb 2009
    Posts
    191
    Thanks
    0
    Thanked 10 Times in 10 Posts

    I managed to incorporate stacks v3 onto the Hero theme dock

  10. The Following User Says Thank You to ares07 For This Useful Post:

    eleazar123 (08-19-2009)

  11. #169
    iPhone? More like MyPhone map1978's Avatar
    Join Date
    Jan 2009
    Location
    JAX
    Posts
    154
    Thanks
    42
    Thanked 43 Times in 32 Posts

    anyone know why everytime I check off "user wallpaper" in this HTC theme, the weather widget doesn't show up with it?

    when i uncheck "user wallpaper" and go default, it works fine



    also, when i do use it as default, the font (changed everything back to default too) doesn't fit in the box properly





  12. #170
    Green Apple travis_t80's Avatar
    Join Date
    Sep 2008
    Location
    A-town
    Posts
    79
    Thanks
    6
    Thanked 3 Times in 2 Posts

    Quote Originally Posted by rich1976 View Post
    This was provided by cmart4 on this thread a few pages ago. i just removed these lines to get 24hour.

    You must add:

    if(hr==100){hr=112;am_pm='am';}
    else if(hr<112){am_pm='am';}
    else if(hr==112){am_pm='pm';}
    else if(hr>112){am_pm='pm';hr=(hr-12);}

    in Widget.html

    So it must looks:

    function dotime(){
    theTime=setTimeout('dotime()',1000);
    d = new Date();
    hr= d.getHours()+100;
    mn= d.getMinutes()+100;
    se= d.getSeconds()+100;
    if(hr==100){hr=112;am_pm='am';}
    else if(hr<112){am_pm='am';}
    else if(hr==112){am_pm='pm';}
    else if(hr>112){am_pm='pm';hr=(hr-12);}
    tot=''+hr+mn+se;
    Great, thanks!

    Am I getting smart with you? How would you know?

  13. #171
    iPhone? More like MyPhone
    Join Date
    Feb 2009
    Posts
    191
    Thanks
    0
    Thanked 10 Times in 10 Posts

    I managed to put clock.app and weather.app starting by clicking on 2 of the blank icons...sweet

    Now, anyone can figure out how to change spotligh background?

  14. #172
    What's Jailbreak?
    Join Date
    Aug 2009
    Posts
    2
    Thanks
    2
    Thanked 2 Times in 1 Post
    the dock buttons work much better if you use 5 icon dock and just add 2 blank icons on both sides of the phone icon. all you have to do is crop the blank space on each side of the smaller buttons.
    Attached Thumbnails Attached Thumbnails HTC Hero Theme-img_0306-1-.png   HTC Hero Theme-img_0307-1-.png   HTC Hero Theme-ipod.png   HTC Hero Theme-safari.png  

  15. The Following 2 Users Say Thank You to antonucci For This Useful Post:

    eleazar123 (08-19-2009), map1978 (08-21-2009)

  16. #173
    What's Jailbreak?
    Join Date
    Aug 2009
    Posts
    2
    Thanks
    2
    Thanked 2 Times in 1 Post
    and does anyone know where (and which file) to change the font size for the city and weather conditions?

  17. #174
    Green Apple
    Join Date
    Apr 2008
    Posts
    36
    Thanks
    1
    Thanked 13 Times in 9 Posts

    Quote Originally Posted by antonucci View Post
    and does anyone know where (and which file) to change the font size for the city and weather conditions?
    Edit the widget.html file

    <div id="WeatherContainer">
    <div id="TextContainer">
    <p style="display:block;position: absolute; top: 190px;left:19px;right:0px;width: 220px;text-shadow: 0px 2px 2px black;font-size:1.4em;" id="city"></p>
    <p style="display:block;position: absolute; top: 213px;left:217px;width: 310px;text-shadow: 0px 2px 2px black;" id="temp"></p>
    <p style="display:block;position: absolute; top: 213px;left:20px;width: 50px;text-align: left;text-shadow: 0px 2px 2px black;font-size:0.8em;" id="desc"></p>
    <p style="display:block;position: absolute; top: 217px;left:268px;width: 310px;color: white;text-shadow: 0px 2px 2px black;font-size:12px;" id="hi" >H:</p>
    <p style="display:block;position: absolute; top: 230px;left:268px;width: 310px;color: white;text-shadow: 0px 2px 2px black;font-size:12px;" id="low" >L:</p>
    </div>
    </div>
    <div id="Forecast" >
    <p style="display:block;position: absolute; top: 206px;left:285px;width: 310px;color: white;text-shadow: 0px 2px 2px black;font-size:12px;" id="hi0" ></p>
    <p style="display:block;position: absolute; top: 219px;left:285px;width: 310px;color: white;text-shadow: 0px 2px 2px black;font-size:12px;" id="low0" ></p>
    </div>


    id shows what part your editing and just change the font-size
    In this code you can also change the position of each element.
    Just make minor changes, re spring the springboard until you get the desired positions and size.

    id's

    "City" - City
    "desc" - Weather conditions
    & "temp" - For the Temperature

    Hope this all makes sense

  18. The Following User Says Thank You to rich1976 For This Useful Post:

    antonucci (08-20-2009)

  19. #175
    What's Jailbreak?
    Join Date
    Aug 2009
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Can anyone make a 5 icon dock for me with that theme??? in that order

    Byline(just an rss icon), Mail, Phone, BiteSMS(just a bubble or something like that), Safari

    would be very very nice i can't do that on my own...

  20. #176
    What's Jailbreak?
    Join Date
    Feb 2008
    Posts
    18
    Thanks
    3
    Thanked 1 Time in 1 Post
    if someone could help me with the following it would be greatly appreciated!

    1) lockscreen that works. mine is missing the arch slider unlock thinggy.
    2) the weather widget. it says Mostly Sunny but has Mostly Cloudy image and i cannot click on it to open a weather app or link in Safari.
    3) I would like to be able to change backgrounds for the lockscreen and home screen and still have working widgets.

    @enternalza you seem to be the expert. i can't wait til you release yours but in the meantime a few fixes would be awesome!

    edit: nevermind, i got it all taken care of. i found the imgsrc code and changed it. i also put the date/weather widget on my lockscreen. and i've also changed the icons for the weather! anyone with working photo or music widget?
    Last edited by SourAppleFan; 08-20-2009 at 07:55 PM.

  21. #177
    Theme Creator Li-ion's Avatar
    Join Date
    Aug 2009
    Posts
    1,049
    Thanks
    104
    Thanked 436 Times in 204 Posts

    I finally updated to 3.0, and got stacks.

    it looks amazing. I did what ares07 did.

  22. #178
    What's Jailbreak?
    Join Date
    Feb 2008
    Posts
    18
    Thanks
    3
    Thanked 1 Time in 1 Post
    Quote Originally Posted by marcus34 View Post
    did you do that new messages thing with status notifier?
    nope, just the tap to unlock picture.

    does it always say "New Message" when you go to unlock you screen? or did u customize that too? I was looking for a lockscreen notifier to do exactly what u have!
    Last edited by SourAppleFan; 08-20-2009 at 08:22 PM.

  23. #179
    Green Apple
    Join Date
    Apr 2008
    Posts
    36
    Thanks
    1
    Thanked 13 Times in 9 Posts

    Quote Originally Posted by SourAppleFan View Post
    if someone could help me with the following it would be greatly appreciated!

    1) lockscreen that works. mine is missing the arch slider unlock thinggy.
    2) the weather widget. it says Mostly Sunny but has Mostly Cloudy image and i cannot click on it to open a weather app or link in Safari.
    3) I would like to be able to change backgrounds for the lockscreen and home screen and still have working widgets.

    @enternalza you seem to be the expert. i can't wait til you release yours but in the meantime a few fixes would be awesome!

    edit: nevermind, i got it all taken care of. i found the imgsrc code and changed it. i also put the date/weather widget on my lockscreen. and i've also changed the icons for the weather! anyone with working photo or music widget?
    Here you go the PSD file i promised
    Attached Files Attached Files

  24. The Following User Says Thank You to rich1976 For This Useful Post:

    SourAppleFan (08-21-2009)

  25. #180
    Green Apple
    Join Date
    Oct 2008
    Posts
    58
    Thanks
    1
    Thanked 14 Times in 5 Posts

    I've decided to make my release private. PM me for my theme and I'll get it to you when I can.

  26. The Following 7 Users Say Thank You to eternalza For This Useful Post:

    Cryto (08-22-2009), hmarcia14 (08-21-2009), Jacki Lee (10-13-2009), johnmhensley (08-25-2009), lappyosx (08-23-2009), Li-ion (08-22-2009), ww2china (08-22-2009)

+ Reply
Page 9 of 11 FirstFirst ... 7891011 LastLast

Posting Permissions

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