Hi David
I need font color to be white. I've tried this:
shape main
{
h_align = "center";
v_align = "center";
setfillcolor(53,103,52);
startpath(); // Start to trace out a path
moveto(10,20);
lineto(10,80);
lineto(80,80);
lineto(80,90); //punta inferior
lineto(90,50); //punta central de la flecha
lineto(80,10); //punta superior
lineto(80,20); //
endpath(); // End tracing out a path
// Fill the traced path with the fill color
fillandstrokepath();
setpencolor(255,255,255);
print ("#NAME#");
return;
}
There must be something wrong in the script because it doesn't works. By the way I'm running EA under Crossover Office and Ubuntu 7.10, maybe this is the problem.
TIA
Marcello