Re: [Flashcoders] Going Crazy :( - Strange problems with height and width before _rotation change

2007-09-17 Thread o renken
hi julian, i think you have to stack it in another (parent) MC. Then you can rotate the rootMC and scale the childMC like that: MC_toBeRotated._rotation=45; MC_toBeRotated.MC_toBeScaled._xscale=50; MC_toBeRotated.MC_toBeScaled._yscale=50; that should to it! greetz olee 2007/9/17, julian

Re: [Flashcoders] variable scope

2007-09-09 Thread o renken
did you tried the Delegate- Class? in sense something like that: import mx.Delegate(i think that path is wrong) //.. ..// Delegate.create(scope,object) cheers olee 2007/9/9, Lee Marshall [EMAIL PROTECTED]: I have just created a class 'ClassA' that loads an XML file.Within that class I have

Re: [Flashcoders] Anyone really fluid with LoadVars() - external txt problem.

2007-07-16 Thread o renken
yes..i think its a scope problem try that: load the external.swf into master.swf with MovieClipLoader() - inside of external.swf is a function e.g. like that loadExternalText=function(){ var RV=new LoadVars() RV.onData=function(){ trace(VARS LOADED) } var LV=new LoadVars()

Re: [Flashcoders] Anyone really fluid with LoadVars() - external txt problem.

2007-07-16 Thread o renken
sorry...wrong brackets. it should be like that: loadExternalText=function(){ var RV=new LoadVars() RV.onData=function(){ trace(VARS LOADED) } var LV=new LoadVars() LV.sendAndLoad('http:www.example.com/external.txt',RV) } 2007/7/16, o renken [EMAIL PROTECTED]: yes..i think its a scope

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread o renken
hey one question...why are you mixing html and TextFormat? i try to use one of both. where did you get the font for each textField from? so you could do it on that way var default_font=arial var html_font= if(text_html_font==undefined){ html_font=default_font } currentPage.my_txt.htmlText