How can I define a logo for my ACT extension ?
Jean
Member Posts: 25
**
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:
0
Best 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>
1
Answers
-
It works, thanks
1