Hi Don,

I'm trying to figure out how to get some "import" statements to get
compiled into the little DebugEvaluate class which
I'm emitting from the SWF9Generator for evaluating javascript expressions.

I'd like to get something like this to appear in the final AS3 output:


package {


    import flash.display.*;
    import flash.events.*;
    import flash.utils.*;
    import flash.text.*;
    import flash.system.*;
    import flash.net.*;
    import flash.ui.*;


public class DebugEvaluate extends DebugExec {



But I'm not sure if the code that goes in the "preProcess" method
takes "LaszloScript" or AS3. How would
I squeeze these into the emitted source? In AS3, you can't just try to
access  some class flash.net.blah at runtime if your
haven't 'import'ed it at compile time. I'm trying to import all the
stuff that would commonly be used, so people can
probe the runtime with their expressions easily.


-- 
Henry Minsky
Software Architect
[EMAIL PROTECTED]

Reply via email to