thankyou very much for your reply. much appreciated. great product you have here.
Instead of starting a new thread, im going to ask a question of the same vein here, and hope you can give me your input into the problem.
I'm trying to rotate a lot of things on the stage, including the title text. When I try to add 'mTitle_mc.txtText._rotation = -5; to Stagemanager in this block of code:
if (Options.showTitle && mThumbArea.pageSize > 0){
mTitle_mc = mClip_mc.attachMovie("Title","mcTitle",mClip_mc.getNextHighestDepth());
if (!Options.fixedLayout) mTitle_mc.txtText.autoSize = true;
mTitle_mc.txtText.wordWrap = true;
mTitle_mc.txtText.htmlText = mXMLManager.title;
mTitle_mc.txtText._rotation = -5;
var col3 = new Color(mTitle_mc);
col3.setRGB(mXMLManager.titleTextColor);
}
The text dissapears altogether. Is the process for rotating the text different?