Show
Ignore:
Timestamp:
07/17/08 03:17:55 (16 months ago)
Author:
jeroen
Message:

tagged the 1.1 wmvplayer and started the air player

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/as3/com/jeroenwijering/utils/Stacker.as

    r13 r42  
    7676                                stack[i].c.x = stack[i].x + rdf; 
    7777                                if(stack[i].c.visible == false && overlaps(i) == false) { 
    78                                         if(stack[i+1].x > stack[i].w+stack[i].x) { 
    79                                                 rdf -= stack[i].w; 
    80                                         } else {  
    81                                                 rdf -= stack[i+1].x - stack[i].x; 
    82                                         } 
     78                                        rdf -= stack[i+1].x - stack[i].x; 
    8379                                } 
    8480                        } else { 
    8581                                stack[i].c.x = stack[i].x-ldf; 
    8682                                if(stack[i].c.visible == false && overlaps(i) == false) { 
    87                                         if(stack[i+1].x > stack[i].w+stack[i].x) { 
    88                                                 ldf += stack[i].w; 
    89                                         } else {  
    90                                                 ldf += stack[i+1].x - stack[i].x; 
    91                                         } 
     83                                        ldf += stack[i+1].x - stack[i].x; 
    9284                                } 
    9385                        } 
    94                         if(stack[i].w > width/4) { 
     86                        if(stack[i].w > width/3) { 
    9587                                stack[i].c.width = stack[i].w+rdf+ldf; 
    9688                        }