How can I define a logo for my ACT extension ?

Jean
Jean Member Posts: 25
10 Comments 5 Likes First Anniversary Name Dropper
**

Hi,

I tried to define a logo for my ACT extension, but it didn't work.
I added the "icon" parameter and I put the "my_icon.bmp" in my "images" folder.
But when I run the extension, I do not I any icon.

In the .xml file, I wrote :

<extension version="2" minorversion="8" name="TOTO" icon="my_icon">
  <author>Babar</author>
  <script src="script.py" />
</extension>

Any idea ?

Regards,
Jean

Tagged:

Best Answer

  • Ayush Kumar
    Ayush Kumar Member, Moderator, Employee Posts: 467
    100 Answers 250 Likes 100 Comments Second Anniversary
    ✭✭✭✭
    Answer ✓

    @Jean can you try the following:

    <extension version="2" minorversion="8" name="TOTO" icon="images/my_icon.bmp">
      <author>Babar</author>
      <script src="script.py" />
    </extension>
    

Answers