THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 23/01/2010 at 03:27, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 11.5
Platform: Windows ; Mac ; Mac OSX ;
Language(s) : C.O.F.F.E.E ;
---------
Hello everyone!
I have written a coffee plugin that is almost ready to be released. The only thing that I'm struggling with at the moment is, that the icon of the plug simply won't show up in R11.5. It works in R10 and R11 on Mac and PC, but with R11.5 I'm just out of luck.
This is the source code I'm using to get the bitmap:
SeqSort::GetIcon()
{
var icon=new(BaseBitmap,32,32);
var iconFile=new(Filename);
iconFile=GeGetRootFilename();
iconFile->SetLastString("SeqSort.tif");
icon->Load(iconFile);
return icon;
}
I already checked, the path of iconFile is correctly set. I also tried different file formats.
Please help me get this sorted out so I can share the plug with the world.