+ Reply
Page 19 of 53 FirstFirst ... 91718192021 29 ... LastLast
Results 361 to 380 of 1045
  1. #361
    iPhone? More like MyPhone whodatfan's Avatar
    Join Date
    Dec 2007
    Posts
    293
    Thanks
    13
    Thanked 257 Times in 93 Posts

    Hey Ice,

    Man, thanks for the help. It took me a while to get it just right and tweek it, but it turned out perfect! I created another dummy oneLine and pasted yours to it. I had to use part of another oneline as well cause the weather icon was doing some crazy stuff, but I finally got it perfect. Check it out:


  2. #362
    iPhone? More like MyPhone Bear Hunter's Avatar
    Join Date
    Sep 2008
    Posts
    279
    Thanks
    17
    Thanked 102 Times in 53 Posts

    CLOCK SECOND HAND DISABLE FIX

    Ok...so after a few minutes of analysis...Here is the proper fix to disable the second hand on the clock and still have the hour and minute hands work to save a little system resources. According to the site the code "noSeconds" must be added to the last part of the string in the HTML file. So looking at the HTML file you will notice that it references both the "coolclock.js" and "moreskins.js". Looking a little deeper you will note that the radius in the HTML file for "swissRail" is 50. So by the process of elimination I checked to see if the radius for "swissRail" was 50 in both "coolclock.js" and "moreskins.js"....and they werent. So after fixing the radius to reflect the exact string in the HTML file....all is working.

    Pics are worth a thousand words...so here you go. Just make a backup of your current files and then replace with these after you apply the changes I have highlighted below in each file:


  3. #363
    iPhoneaholic
    Join Date
    Aug 2007
    Posts
    431
    Thanks
    44
    Thanked 24 Times in 19 Posts

    Here is my theme thanks to Bear.

    Thanks Bear!
    Attached Thumbnails Attached Thumbnails [RELEASE] OSX LEOPARD ADD-ONs-theme.jpg  

  4. #364
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by whodatfan View Post
    Hey Ice,

    Man, thanks for the help. It took me a while to get it just right and tweek it, but it turned out perfect! I created another dummy oneLine and pasted yours to it. I had to use part of another oneline as well cause the weather icon was doing some crazy stuff, but I finally got it perfect. Check it out:

    it looks good glad i can help and that you got it working...looking back at the code ..i see i left out the last part of the weather icon, must have missed it on the copy and paste..sorry my bad......thats probably why it was doing somthing funny....but i edited the other post so if anyone else copies it.....
    If I Helped You Hit The Thanks Button

  5. #365
    iPhone? More like MyPhone Bear Hunter's Avatar
    Join Date
    Sep 2008
    Posts
    279
    Thanks
    17
    Thanked 102 Times in 53 Posts

    Quote Originally Posted by Ice9812 View Post
    it looks good glad i can help and that you got it working...looking back at the code ..i see i left out the last part of the weather icon, must have missed it on the copy and paste..sorry my bad......thats probably why it was doing somthing funny....but i edited the other post so if anyone else copies it.....
    Ice any luck on the calendar self update?

    ....and I haven't looked at your code mod yet for the calendar, but it would be sweet to get the city on the left with icon in the middle and temp on the right for the current weather....

  6. #366
    iPhone? More like MyPhone whodatfan's Avatar
    Join Date
    Dec 2007
    Posts
    293
    Thanks
    13
    Thanked 257 Times in 93 Posts

    Yeah Ice, it took me a while, but I finally got mine right looking off of one of the other oneLine stylesheets. Thanks for fixing it though, not everyone will be able to trouble shoot that kind of stuff. Great job man. Thanks again.

  7. #367
    Livin the iPhone Life Bernie-Mac's Avatar
    Join Date
    Aug 2007
    Location
    Las Vegas, NV
    Posts
    1,525
    Thanks
    162
    Thanked 136 Times in 95 Posts

    How do you open the .html file to edit it?
    iLive an iLife
    One of the few proud owners of a white iPhone 4 (that i built myself)


    follow me @ berniemakaveli

  8. #368
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by Bear Hunter View Post
    Ice any luck on the calendar self update?

    ....and I haven't looked at your code mod yet for the calendar, but it would be sweet to get the city on the left with icon in the middle and temp on the right for the current weather....
    Bear,

    No luck on the calendar..ive tried about 10 different ideas but none worked...i even joined a js forum and im doing some research and i post a question about it on there but i only got one response ...they gave me acode to add but what it did was updated the calendar every minute but it also displayed a new calendar under the other every minute also..so im still working

    as for the weather here you go :

    here is the .css name it to whatever you would like and edit your configureme.js to load it..im not sure exactly where you would want the icon....its not sunny here now so if you want to move it to the left you right edit margin-left:
    #weatherIcon{
    height:75px;
    width:92px;
    position:relative;
    margin-top:-46px;
    margin-left:80px;

    .....less number moves left higher number moves right:

    PHP Code:
    /* Inspired by Rainmanbk */

    #WeatherContainer{
        
    margin-top:81px;
        
    width:100%;
        
    color:#1826e0;
        
    background-colortransparent;
        
    height:27px;
        
    padding-top:7px;
    }

    #TextContainer{
           
    font-familyHelvetica;
        
    text-shadowrgba(0,0,0,0.70 0 2px;
        
    margin:none;
        
    width:320px;
    }

    #city{
        
    text-transform:capitalize;
           
    font-variantsmall-caps;
        
    font-size0.8em;
        
    padding-left:20px;
    }

    #TextContainer p{
        
    margin:0;
           
    display:inline;
    }

    #city, #temp{
    }

    #temp{
        
    font-weight:bold;
        
    padding-left:80px;
           
    color:white;
    }

    #desc{
        
    text-transform:capitalize;
        
    text-alignright;
        
    padding-right:10px;
        
    float:right;
           
    color:transparent;

    }

    #weatherIcon{
        
    height:75px;
        
    width:92px;
           
    position:relative;
        
    margin-top:-46px;
        
    margin-left:80px;

    and also you need to make the margin in your .html to zero..i think your original one was set to 42.....this is just the top part of the html...dont delete your other just edit the margin to zero:

    PHP Code:
    <?xml version="1.0" encoding="UTF-16"?>
    <html><head>
        <base href="Private/"/>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

        <style>
            body {
                background-color: none;
                margin: 0;
                padding: 0px 0 0 0;
                height: 480px;
                width: 320px;

            }
        </style>
    Attached Thumbnails Attached Thumbnails [RELEASE] OSX LEOPARD ADD-ONs-img_0016.png  
    Last edited by Ice9812; 11-08-2008 at 09:46 PM.
    If I Helped You Hit The Thanks Button

  9. #369
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by Bernie-Mac View Post
    How do you open the .html file to edit it?

    im not familiar with mac but on windows right click and open with wordpad or notepad...so use what ever is the same for mac
    If I Helped You Hit The Thanks Button

  10. #370
    Livin the iPhone Life Bernie-Mac's Avatar
    Join Date
    Aug 2007
    Location
    Las Vegas, NV
    Posts
    1,525
    Thanks
    162
    Thanked 136 Times in 95 Posts

    Quote Originally Posted by Ice9812 View Post
    im not familiar with mac but on windows right click and open with wordpad or notepad...so use what ever is the same for mac
    I thought so too but when i open it in notepad for mac a blank page opens
    iLive an iLife
    One of the few proud owners of a white iPhone 4 (that i built myself)


    follow me @ berniemakaveli

  11. #371
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by Bernie-Mac View Post
    I thought so too but when i open it in notepad for mac a blank page opens
    i also edit them right on the phone using winscp.....try that with whatever program you use to ssh on a mac.....in winscp i right click on the html file and click on edit and i change what i want and save...open whatever program your using for mac and try it....let me know...but if you need something edited ill do it for you just tell me what you want..
    If I Helped You Hit The Thanks Button

  12. The Following User Says Thank You to Ice9812 For This Useful Post:

    Bernie-Mac (11-08-2008)

  13. #372
    Green Apple Dashiznit's Avatar
    Join Date
    Jul 2008
    Location
    Springfield, Missouri
    Posts
    86
    Thanks
    21
    Thanked 15 Times in 12 Posts

    Im looking to combine the Calendar, weather and theme into 1 set instead of 3 in winterboard but im not good with html code has anyone done this or willing?

  14. #373
    Livin the iPhone Life Bernie-Mac's Avatar
    Join Date
    Aug 2007
    Location
    Las Vegas, NV
    Posts
    1,525
    Thanks
    162
    Thanked 136 Times in 95 Posts

    Quote Originally Posted by Ice9812 View Post
    i also edit them right on the phone using winscp.....try that with whatever program you use to ssh on a mac.....in winscp i right click on the html file and click on edit and i change what i want and save...open whatever program your using for mac and try it....let me know...but if you need something edited ill do it for you just tell me what you want..
    tried editing using cyberduck but no dice, do you think you can just edit the widget.html of the clock widget so it doesnt have a functional second hand?
    iLive an iLife
    One of the few proud owners of a white iPhone 4 (that i built myself)


    follow me @ berniemakaveli

  15. #374
    iPhone? More like MyPhone Bear Hunter's Avatar
    Join Date
    Sep 2008
    Posts
    279
    Thanks
    17
    Thanked 102 Times in 53 Posts

    Ice...your the man...thanks for the help with this.

    Dash....if you could do that ...it would be awesome....I'm really not good with code at all.

    Saw some mods that some people did for SBSettings (from Cydia). So I decided to take a stab at it. There really is no way to make it look good at all due to the way the icons are laid out (top row off center from bottom row, different sizes, no way to make the font transparent, etc.)



    Edit: Just saw this one...I think I like the design better...may mod it a little


    http://www.ipodtouchfans.com/forums/...48#post1026048
    Last edited by Bear Hunter; 11-09-2008 at 04:59 AM.

  16. #375
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by Bernie-Mac View Post
    tried editing using cyberduck but no dice, do you think you can just edit the widget.html of the clock widget so it doesnt have a functional second hand?
    here you go...im not using it....i just edited it as bear said to in the above post...let me know if it works for you

    widget:

    PHP Code:
    <?xml version="1.0" encoding="UTF-16"?>
    <html><head>
        <base href="Private/"/>
        <!--meta name="viewport" content="width=320, minimum-scale=1.0, maximum-scale=1.0"/-->
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        
        <script type="text/javascript" src="Cool Clock/coolclock.js"/>
        <script type="text/javascript" src="Cool Clock/moreskins.js"/>
        
        <style>
            body {
                background-color: none;
                margin: 0;
                padding: 0px 0 0 0;
                height: 480px;
                width: 320px;
            }

            canvas {
                position: absolute;
                /*width: 320px;
                height: auto;*/
                margin-top:285px;
                margin-left:61px;
            }

        </style>
    </head><body>
        <canvas id="clockid" class="CoolClock:swissRail:50:noSeconds"></canvas>

    coolclock.js:

    PHP Code:
    // maybe have a setTimeout hack??
    CoolClock.addLoadEvent = function(func){
        var 
    oldonload window.onload;
        if (
    typeof window.onload != 'function')
            
    window.onload func;
        else
            
    window.onload = function() {
                
    oldonload();
                
    func();
            }
    }

    CoolClock.config = {
        
    clockTracker: {},
        
    tickDelay1000,
        
    longTickDelay15000,
        
    defaultRadius85,
        
    renderRadius250,
        
    defaultSkin"swissRail",
        
    skins:    {
            
    // more skins in moreskins.js
            // try making your own...

            
    swissRail: {
            
                
    outerBorder: { lineWidth60radius:50color"#000000"alpha},
            
                
    smallIndicator: { lineWidth4startAt80endAt95color"white"alpha},
            
                
    largeIndicator: { lineWidth14startAt77endAt92color"#dd6655"alpha},
            
                
    hourHand: { lineWidth18startAt: -15endAt40color"white"alpha},
            
                
    minuteHand: { lineWidth14startAt24endAt100color"#771100"alpha0.5 },
            
                
    secondHand: { lineWidth3startAt22endAt83color"green"alpha},
            
                
    secondDecoration: { lineWidth1startAt52radius26fillColor"#000000"color"red"alpha

    0.5 }


                
            },
            
    chunkySwiss: {
                
    outerBorder: { lineWidth4radius:97color"black"alpha},
                
    smallIndicator: { lineWidth4startAt89endAt93color"black"alpha},
                
    largeIndicator: { lineWidth8startAt80endAt93color"black"alpha},
                
    hourHand: { lineWidth12startAt: -15endAt60color"black"alpha},
                
    minuteHand: { lineWidth10startAt: -15endAt85color"black"alpha},
                
    secondHand: { lineWidth4startAt: -20endAt85color"red"alpha},
                
    secondDecoration: { lineWidth2startAt70radius8fillColor"red"color"red"alpha}
            },
            
    chunkySwissOnBlack: {
                
    outerBorder: { lineWidth4radius:97color"white"alpha},
                
    smallIndicator: { lineWidth4startAt89endAt93color"white"alpha},
                
    largeIndicator: { lineWidth8startAt80endAt93color"white"alpha},
                
    hourHand: { lineWidth12startAt: -15endAt60color"white"alpha},
                
    minuteHand: { lineWidth10startAt: -15endAt85color"white"alpha},
                
    secondHand: { lineWidth4startAt: -20endAt85color"red"alpha},
                
    secondDecoration: { lineWidth2startAt70radius8fillColor"red"color"red"alpha}
            }


        }
    };

    CoolClock.prototype = {
        
    init: function(canvasId,displayRadius,skinId,showSecondHand,gmtOffset) {
            
    this.canvasId canvasId;
            
    this.displayRadius displayRadius || CoolClock.config.defaultRadius;
            
    this.skinId skinId || CoolClock.config.defaultSkin;
            
    this.showSecondHand typeof showSecondHand == "boolean" showSecondHand true;
            
    this.tickDelay CoolClock.configthis.showSecondHand "tickDelay" "longTickDelay"];

            
    this.canvas document.getElementById(canvasId);

            
    this.canvas.setAttribute("width",this.displayRadius*2);
            
    this.canvas.setAttribute("height",this.displayRadius*2);

            
    this.canvas.style.width this.displayRadius*"px";
            
    this.canvas.style.height this.displayRadius*"px";

            
    this.renderRadius CoolClock.config.renderRadius

            
    this.scale this.displayRadius this.renderRadius;
            
    this.ctx this.canvas.getContext("2d");
            
    this.ctx.scale(this.scale,this.scale);

            
    this.gmtOffset gmtOffset != null parseFloat(gmtOffset) : gmtOffset;

            
    CoolClock.config.clockTracker[canvasId] = this;
            
    this.tick();
            return 
    this;
        },

        
    fullCircle: function(skin) {
            
    this.fullCircleAt(this.renderRadius,this.renderRadius,skin);
        },

        
    fullCircleAt: function(x,y,skin) {
            
    with (this.ctx) {
                
    save();
                
    globalAlpha skin.alpha;
                
    lineWidth skin.lineWidth;
                if (!
    document.all)
                    
    beginPath();
                if (
    document.all)
                    
    // excanvas doesn't scale line width so we will do it here
                    
    lineWidth lineWidth this.scale;
                
    arc(xyskin.radius02*Math.PIfalse);
                if (
    document.all)
                    
    // excanvas doesn't close the circle so let's color in the gap
                    
    arc(xyskin.radius, -0.10.1false);
                if (
    skin.fillColor) {
                    
    fillStyle skin.fillColor
                    fill
    ();
                }
                else {
                    
    // XXX why not stroke and fill
                    
    strokeStyle skin.color;
                    
    stroke();
                }
                
    restore();
            }
        },

        
    radialLineAtAngle: function(angleFraction,skin) {
            
    with (this.ctx) {
                
    save();
                
    translate(this.renderRadius,this.renderRadius);
                
    rotate(Math.PI * (angleFraction 0.5));
                
    globalAlpha skin.alpha;
                
    strokeStyle skin.color;
                
    lineWidth skin.lineWidth;
                if (
    document.all)
                    
    // excanvas doesn't scale line width so we will do it here
                    
    lineWidth lineWidth this.scale;
                if (
    skin.radius) {
                    
    this.fullCircleAt(skin.startAt,0,skin)
                }
                else {
                    
    beginPath();
                    
    moveTo(skin.startAt,0)
                    
    lineTo(skin.endAt,0);
                    
    stroke();
                }
                
    restore();
            }
        },

        
    render: function(hour,min,sec) {
            var 
    skin CoolClock.config.skins[this.skinId];
            
    this.ctx.clearRect(0,0,this.renderRadius*2,this.renderRadius*2);

            
    this.fullCircle(skin.outerBorder);

            for (var 
    i=0;i<60;i++)
                
    this.radialLineAtAngle(i/60,skini%"smallIndicator" "largeIndicator"]);
                    
            
    this.radialLineAtAngle((hour+min/60)/12,skin.hourHand);
            
    this.radialLineAtAngle((min+sec/60)/60,skin.minuteHand);
            if (
    this.showSecondHand) {
                
    this.radialLineAtAngle(sec/60,skin.secondHand);
                if (!
    document.all)
                    
    // decoration doesn't render right in IE so lets turn it off
                    
    this.radialLineAtAngle(sec/60,skin.secondDecoration);
            }
        },


        
    nextTick: function() {
            
    setTimeout("CoolClock.config.clockTracker['"+this.canvasId+"'].tick()",this.tickDelay);
        },

        
    stillHere: function() {
            return 
    document.getElementById(this.canvasId) != null;
        },

        
    refreshDisplay: function() {
            var 
    now = new Date();
            if (
    this.gmtOffset != null) {
                
    // use GMT + gmtOffset
                
    var offsetNow = new Date(now.valueOf() + (this.gmtOffset 1000 60 60));
                
    this.render(offsetNow.getUTCHours(),offsetNow.getUTCMinutes(),offsetNow.getUTCSeconds());
            }
            else {
                
    // use local time
                
    this.render(now.getHours(),now.getMinutes(),now.getSeconds());
            }
        },

        
    tick: function() {
            if (
    this.stillHere()) {
                
    this.refreshDisplay()
                
    this.nextTick();
            }
        }
    }

    CoolClock.addLoadEvent(CoolClock.findAndCreateClocks); 
    moreskins.js:

    PHP Code:
    CoolClock.config.skins = {



    swissRail: {

        
    outerBorder: { lineWidth1radius:50color"white"alpha},

        
    smallIndicator: { lineWidth2startAt89endAt93color"white"alpha},

        
    largeIndicator: { lineWidth4startAt80endAt93color"white"alpha},

        
    hourHand: { lineWidth8startAt: -15endAt50color"black"alpha},

        
    minuteHand: { lineWidth7startAt: -15endAt75color"black"alpha},

        
    secondHand: { lineWidth3startAt: -20endAt85color"red"alpha},
     
        
    secondDecoration: { lineWidth1startAt70radius4fillColor"red"color"red"alpha}
        },

        

    chunkySwiss: {

        
    outerBorder: { lineWidth4radius:97color"white"alpha},
            
        
    smallIndicator: { lineWidth4startAt89endAt93color"black"alpha},

        
    largeIndicator: { lineWidth8startAt80endAt93color"black"alpha},

        
    hourHand: { lineWidth12startAt: -15endAt60color"black"alpha},

        
    minuteHand: { lineWidth10startAt: -15endAt85color"black"alpha},

        
    secondHand: { lineWidth4startAt: -20endAt85color"red"alpha},

        
    secondDecoration: { lineWidth2startAt70radius8fillColor"red"color"red"alpha}
        },

        

    chunkySwissOnBlack: {

        
    outerBorder: { lineWidth4radius:97color"white"alpha},

        
    smallIndicator: { lineWidth4startAt89endAt93color"black"alpha},

        
    largeIndicator: { lineWidth8startAt80endAt93color"black"alpha},

        
    hourHand: { lineWidth12startAt: -15endAt60color"black"alpha},

        
    minuteHand: { lineWidth10startAt: -15endAt85color"black"alpha},

        
    secondHand: { lineWidth4startAt: -20endAt85color"red"alpha},

        
    secondDecoration: { lineWidth2startAt70radius8fillColor"red"color"red"alpha}
        },

        

    fancy: {

        
    outerBorder: { lineWidth5radius:95color"white"alpha0.7 },

        
    smallIndicator: { lineWidth1startAt80endAt93color"black"alpha0.4 },

        
    largeIndicator: { lineWidth1startAt30endAt93color"black"alpha0.5 },

        
    hourHand: { lineWidth8startAt: -15endAt50color"black"alpha0.7 },

        
    minuteHand: { lineWidth7startAt: -15endAt92color"black"alpha0.7 },

        
    secondHand: { lineWidth10startAt80endAt85color"red"alpha0.3 },

        
    secondDecoration: { lineWidth1startAt30radius50fillColor"blue"color"red"alpha0.15 }
        },

        

    machine: {

        
    outerBorder: { lineWidth10radius:53color"white"alpha},

        
    smallIndicator: { lineWidth2startAt60endAt65color"black"alpha},

        
    largeIndicator: { lineWidth6startAt57endAt67color"black"alpha},

        
    hourHand: { lineWidth8startAt: -1endAt38color"black"alpha},

        
    minuteHand: { lineWidth7startAt: -1endAt44color"black"alpha0.5 },

        
    secondHand: { lineWidth3startAt22endAt63color"red"alpha},

        
    secondDecoration: { lineWidth1startAt53radius5fillColor"red"color"red"alpha0.5 }
        },

        

    classic: {
        
    outerBorder: { lineWidth185radius:1color"white"alpha},

        
    smallIndicator: { lineWidth2startAt89endAt94color"blackC"alpha},

        
    largeIndicator: { lineWidth4startAt83endAt94color"black"alpha},

        
    hourHand: { lineWidth5startAt0endAt60color"black"alpha},

        
    minuteHand: { lineWidth4startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth1startAt: -20endAt85color"red"alpha.85 },

        
    secondDecoration: { lineWidth3startAt0radius2fillColor"black"color"black"alpha}
        },

        

    modern: {

        
    outerBorder: { lineWidth185radius:1color"white"alpha},

        
    smallIndicator: { lineWidth5startAt88endAt94color"black"alpha},

        
    largeIndicator: { lineWidth5startAt88endAt94color"black"alpha},

        
    hourHand: { lineWidth8startAt0endAt60color"black"alpha},

        
    minuteHand: { lineWidth8startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth5startAt80endAt85color"red"alpha.85 },

        
    secondDecoration: { lineWidth3startAt0radius4fillColor"black"color"black"alpha}
        },

        

    simple: {

        
    outerBorder: { lineWidth185radius:1color"white"alpha},

        
    smallIndicator: { lineWidth10startAt90endAt94color"black"alpha},

        
    largeIndicator: { lineWidth10startAt90endAt94color"black"alpha},

        
    hourHand: { lineWidth8startAt0endAt60color"black"alpha},

        
    minuteHand: { lineWidth8startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth5startAt80endAt85color"red"alpha.85 },

        
    secondDecoration: { lineWidth3startAt0radius4fillColor"black"color"black"alpha}
        },

        

    securephp: {

        
    outerBorder: { lineWidth100radius:0.45color"white"alpha0.3 },

        
    smallIndicator: { lineWidth2startAt80endAt:90 color"black"alpha},

        
    largeIndicator: { lineWidth8.5startAt20endAt:40 color"black"alpha0.4 },

        
    hourHand: { lineWidth3startAt0endAt60color"black"alpha},

        
    minuteHand: { lineWidth2startAt0endAt75color"black"alpha},

        
    secondHand: { lineWidth1startAt: -10endAt80color"red"alpha0.8 },

        
    secondDecoration: { lineWidth1startAt70radius4fillColor"blue"color"red"alpha}
        },



    Tes2: {

        
    outerBorder: { lineWidth4radius:95color"white"alpha0.5 },

        
    smallIndicator: { lineWidth1startAt10endAt:50 color"black"alpha},

        
    largeIndicator: { lineWidth8.5startAt60endAt70color"black"alpha},

        
    hourHand: { lineWidth5startAt: -15endAt60color"black"alpha0.7 },

        
    minuteHand: { lineWidth3startAt: -25endAt75color"black"alpha0.7 },

        
    secondHand: { lineWidth1.5startAt: -20endAt88color"red"alpha},

        
    secondDecoration: { lineWidth1startAt20radius4fillColor"blue"color"red"alpha}
        },




    Lev: {

        
    outerBorder: { lineWidth:10radius:95color"white"alpha0.65 },

        
    smallIndicator: { lineWidth5startAt84endAt90color"black"alpha},

        
    largeIndicator: { lineWidth40startAt25endAt95color"black"alpha0.55 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha0.9 },

        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha0.85 },

        
    secondHand: { lineWidth1startAt0endAt85color"red"alpha},

        
    secondDecoration: { lineWidth2startAt5radius10fillColor"black"color"black"alpha}
        },



    Sand: {

        
    outerBorder: { lineWidth:1radius:70color"white"alpha0.5 },

        
    smallIndicator: { lineWidth3startAt50endAt70color"black"alpha0.5 },

        
    largeIndicator: { lineWidth200startAt80endAt95color"black"alpha0.75 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha0.9 },

        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha0.85 },

        
    secondHand: { lineWidth1startAt0endAt85color"red"alpha},

        
    secondDecoration: { lineWidth2startAt5radius10fillColor"black"color"black"alpha}
        },



    Sun: {

        
    outerBorder: { lineWidth:100radius:140color"white"alpha0.2 },

        
    smallIndicator: { lineWidth300startAt50endAt70color"black"alpha0.1 },

        
    largeIndicator: { lineWidth5startAt80endAt95color"black"alpha0.65 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha0.9 },

        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha0.85 },

        
    secondHand: { lineWidth1startAt0endAt90color"red"alpha},

        
    secondDecoration: { lineWidth2startAt5radius10fillColor"black"color"black"alpha}
        },



    Tor: {

        
    outerBorder: { lineWidth:10radius:88color"white"alpha0.9 },
        
        
    smallIndicator: { lineWidth6startAt: -10endAt73color"black"alpha0.3 },

        
    largeIndicator: { lineWidth6startAt73endAt100color"black"alpha0.65 },
        
        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha},
        
        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth1startAt: -73endAt73color"red"alpha0.8 },

        
    secondDecoration: { lineWidth2startAt5radius10fillColor"black"color"black"alpha}
        },

        

    Cold: {

        
    outerBorder: { lineWidth:15radius:90color"white"alpha0.3 },

        
    smallIndicator: { lineWidth15startAt: -10endAt95color"black"alpha0.1 },

        
    largeIndicator: { lineWidth3startAt80endAt95color"black"alpha0.65 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha},

        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth1startAt0endAt85color"red"alpha0.8 },

        
    secondDecoration: { lineWidth5startAt30radius10fillColor"black"color"black"alpha}
        },

        

    Babosa: {

        
    outerBorder: { lineWidth100radius:25color"white"alpha0.25 },

        
    smallIndicator: { lineWidth3startAt90endAt95color"black"alpha},

        
    largeIndicator: { lineWidth4startAt75endAt95color"black"alpha},

        
    hourHand: { lineWidth4startAt0endAt60color"black"alpha},

        
    minuteHand: { lineWidth3startAt0endAt85color"black"alpha},

        
    secondHand: { lineWidth12startAt75endAt90color"red"alpha0.8 },

        
    secondDecoration: { lineWidth3startAt0radius4fillColor"black"color"black"alpha}
        },

        

    Tumb: {

        
    outerBorder: { lineWidth:105radius:5color"white"alpha0.4 },

        
    smallIndicator: { lineWidth1startAt93endAt98color"black"alpha},

        
    largeIndicator: { lineWidth50startAt0endAt89color"black"alpha0.14 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha},

        
    minuteHand: { lineWidth3startAt0endAt80color"black"alpha},

        
    secondHand: { lineWidth1startAt0endAt85color"red"alpha0.8 },

        
    secondDecoration: { lineWidth5startAt50radius90fillColor"black"color"black"alpha0.05 }
        },

        

    Stone: {

        
    outerBorder: { lineWidth:15radius:80color"white"alpha0.5 },

        
    smallIndicator: { lineWidth2startAt70endAt90color"black"alpha0.7 },

        
    largeIndicator: { lineWidth15startAt0endAt29color"black"alpha0.3 },

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha},

        
    minuteHand: { lineWidth3startAt0endAt75color"black"alpha},

        
    secondHand: { lineWidth1startAt0endAt85color"red"alpha0.8 },

        
    secondDecoration: { lineWidth5startAt50radius90fillColor"black"color"black"alpha0.05 }
        },

        

    Disc: {

        
    outerBorder: { lineWidth:105radius:1color"white"alpha0.2 },

        
    smallIndicator: { lineWidth1startAt58endAt95color"black"alpha0.8 },

        
    largeIndicator: { lineWidth6startAt25endAt35color"black"alpha},

        
    hourHand: { lineWidth4startAt0endAt65color"black"alpha},

        
    minuteHand: { lineWidth3startAt0endAt75color"black"alpha},

        
    secondHand: { lineWidth1startAt: -75endAt75color"red"alpha0.8 },

        
    secondDecoration: { lineWidth5startAt50radius90fillColor"#00FF00"color"green"alpha0.05 }
        }

    }; 
    If I Helped You Hit The Thanks Button

  17. The Following User Says Thank You to Ice9812 For This Useful Post:

    Bernie-Mac (11-09-2008)

  18. #376
    iPhoneaholic
    Join Date
    Nov 2007
    Location
    Bay Area
    Posts
    314
    Thanks
    18
    Thanked 23 Times in 20 Posts

    hey bear,

    quick question, how do you search for those layered icons? i have been trying to look all over the web, lol... deviantart also, but no luck...
    Click that "Thanks" button if I helped you!

  19. #377
    iPhone? More like MyPhone Bear Hunter's Avatar
    Join Date
    Sep 2008
    Posts
    279
    Thanks
    17
    Thanked 102 Times in 53 Posts

    Quote Originally Posted by Gom33 View Post
    hey bear,

    quick question, how do you search for those layered icons? i have been trying to look all over the web, lol... deviantart also, but no luck...
    I don't know what you mean by layered icons.

  20. #378
    iPhoneaholic
    Join Date
    Jul 2008
    Location
    Winter Park, Florida
    Posts
    494
    Thanks
    64
    Thanked 101 Times in 60 Posts

    Uggggh I'm stuck at the moment....I can't find a wallpaper I really really like besides the one of the Apple shadow on the wooden deck. I searched all over interfaceLIFT and downloaded about 10, but none of them work well with this set up. If anyone has any wallpapers they really like, please post them...

  21. #379
    iPhone? More like MyPhone Bear Hunter's Avatar
    Join Date
    Sep 2008
    Posts
    279
    Thanks
    17
    Thanked 102 Times in 53 Posts

    jabb,

    Another trick is to change the "Hue" or adjust levels, saturation, etc... to a wallpaper that you might like..

  22. #380
    iPhoneaholic
    Join Date
    Jul 2008
    Location
    Winter Park, Florida
    Posts
    494
    Thanks
    64
    Thanked 101 Times in 60 Posts

    Thanks man...yeah I've done a good bit of that with the wallpapers I like, messed with Hue, Variations (made it lighter/darker), saturation, contrast, etc. I really like the wallpaper I have now, however, I'm trying to find a few more to change it up. Here, I have attached some others I like, but don't exactly go with my setup at the moment. I'm going to tweak them more and see if I can get them to fit perfectly

    I really like the first image (with the chair) but the angle of the picture with the dashboard layer makes it look weird. If I can get rid of the chair it would look much nicer. I will attach the bigger image of it as well.
    Attached Thumbnails Attached Thumbnails [RELEASE] OSX LEOPARD ADD-ONs-01420_animpossibledream_320x480.jpg   [RELEASE] OSX LEOPARD ADD-ONs-01609_fishingatdusk_320x480.jpg   [RELEASE] OSX LEOPARD ADD-ONs-01631_blackskysturnbright_320x480.jpg   [RELEASE] OSX LEOPARD ADD-ONs-01500_iceonthelake_320x480.jpg   [RELEASE] OSX LEOPARD ADD-ONs-01705_sunsetinfrontofme_320x480.jpg   [RELEASE] OSX LEOPARD ADD-ONs-potomacrivermrning.jpg   [RELEASE] OSX LEOPARD ADD-ONs-bluesunrise.jpg   [RELEASE] OSX LEOPARD ADD-ONs-animpossibledreamlaaarge.jpg  

    Last edited by jabbawalkee; 11-09-2008 at 12:28 PM.

+ Reply
Page 19 of 53 FirstFirst ... 9171819202129 ... 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