Hi,
I'm using Krpano 1.0.8, and i'm trying to change the font color of the combobox plugin.
So, i took the combobox.fla (1.0.7) and i changed the AS code to allow the combobox to work in 1.0.7 and all higher versions :
I replaced
if ( krpano.get("version") != "1.0.7" )
by
if ( krpano.get("version") < "1.0.7" )
Then, i added this line code in the startplugin() function :
function startplugin(event:Event):void
{
combobox.setStyle("color", 0xBFB179);
...
}
I saved the fla in .cs3 and then i had a warning alert from Adobe Flash CS4
"The file has data which will be lost in case of saving in Flash cs3 format :
- Metadata of the infobox on the XMP file
Would you like to save in cs3 format anyway ?"
I clicked "yes" and i compiled in .swf.
RESULT : the font color stays in black (default), there's no change
Can someone tell me what i did wrong ? Is it because of the warning alert ?
Thanks for your response