Christopher Michael wrote:
> Arnaud VALLAT wrote:
>> Hello,
>>
>> I've got a strange behavior with edje icon on the pager when an
>> application is shaded. The edje icon is not scaled down, I've got this
>> with any application and any edje icon.
>>
>> Rno
> 
> After some extensive digging into the pager module and the animated
> icons, from both myself and boneyfrog, we have successfully tested other
> animated icons without any issues. If you are seeing these type of
> things happen there is a very strong possibility that the animated icon
> is not made correctly in terms of it's edc.
> 
> You can either change to a different animated icon, or contact the
> author(s) of that icon to get a properly fixed one.
> 
> Cheers,
> dh
> 

As an extra added measure to confirm that this is indeed the animated
icon's problem, I went and rewrote the edc for the Firefox animated icon
on get-e.org (the red one) and after the rewrite it works like a charm
:) No problems at all. I have attached the fixed edc to this mail if
anyone is interested in a comparison and how to fix :)

Cheers,
dh
//Roxville and PrinceAMD
#define FRAME LOSSY 65
images
{  
   image: "globe_over.png" FRAME;
   image: "0201.png" FRAME;
   image: "0191.png" FRAME;
   image: "0181.png" FRAME;
   image: "0171.png" FRAME;
   image: "0161.png" FRAME;
   image: "0151.png" FRAME;
   image: "0141.png" FRAME;
   image: "0131.png" FRAME;
   image: "0121.png" FRAME;
   image: "0111.png" FRAME;
   image: "0101.png" FRAME;
   image: "0091.png" FRAME;
   image: "0081.png" FRAME;
   image: "0071.png" FRAME;
   image: "0061.png" FRAME;
   image: "0051.png" FRAME;
   image: "0041.png" FRAME;
   image: "0031.png" FRAME;
   image: "0021.png" FRAME;
   image: "0011.png" FRAME;
}

collections
{
   group
     {
        name: "icon";
        max: 128 128;
        parts
          {
             part
               {
                  name: "globe_over";
                  type: IMAGE;
                  mouse_events: 0;
                  description
                    {
                       state: "default" 0.0;
                       aspect: 1.00 1.00;
                       color: 255 255 255 255;
                       rel1
                         {  
                            relative: 0.00 0.00;
                            offset: 0 0;
                         }
                       rel2
                         {  
                            relative: 1.00 1.00;
                            offset: -1 -1;
                         }
                       image { normal: "globe_over.png"; }
                    }
               }             
             part
               {
                  name: "globe";
                  type: IMAGE;
                  mouse_events: 0;
                  description
                    {
                       state: "default" 0.0;
                       aspect: 1.00 1.00;
                       color: 255 255 255 255;
                       rel1
                         {
                            relative: 0.00 0.00;
                            offset: 0 0;
                         }
                       rel2
                         {
                            relative: 1.0 1.0;
                            offset: -1 -1;
                         }
                       image
                         {
                            normal: "0201.png";
                            tween: "0191.png";
                            tween: "0181.png";
                            tween: "0171.png";
                            tween: "0161.png";
                            tween: "0151.png";
                            tween: "0141.png";
                            tween: "0131.png";
                            tween: "0121.png";
                            tween: "0111.png";
                            tween: "0101.png";
                            tween: "0091.png";
                            tween: "0081.png";
                            tween: "0071.png";
                            tween: "0061.png";
                            tween: "0051.png";
                            tween: "0041.png";
                            tween: "0031.png";
                            tween: "0021.png";
                            tween: "0011.png";
                         }
                    }
               }
             // FireFox Logo is below
             //FireFox Logo Is above
          }
        programs
          {
             program // this is the spinning globe
               {
                  name: "globe_animate";
                  signal: "show";
                  source: "";
                  action: STATE_SET "default" 0.0;
                  target: "globe";
                  transition: LINEAR 0.0;
                  in: 0.0 0.0;
                  after: "globe_animate2"; //loop this sucker!
               }             
             program 
               {
                  name: "globe_animate2";
                  action: STATE_SET "default" 0.0;
                  target: "globe";
                  transition: LINEAR 2;
                  in: 2.0 0.0;
                  after: "globe_animate2";
               }
          }
     }
}

//created by roxville and PrinceAMD
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to