Urgent: Mysterious behavior in class instantiation

Hi
I have a Class A trying to instantiate a Class B , both of them being in the same jar. When a class C ( located in another jar) calls this method on Class A that instantiates B, execution seems to stop at that point. However there are no errors visible.
When i create an Instance of class A and call the same method that instantiates B in a Junit test, it works fine.
I am using jboss and have put the jars in the default/lib folder.
Any insights into this would be highly appreciated.
Thanks
-DD

The key words are "seems" and "visible." If execution really does stop there, then it's almost certainly because there was a Throwable. If this is the case, then the problem is the visibility of the error. The other likely possibility is that execution does not actually stop there, and you are misunderstanding what's happening. In ether case, you need more output statements around the area of the problem to find out what's going on.

Similar Messages

  • Dynamic Class Instantiation with getDefinitionByName

    Ok so I am trying to follow the following example in
    instantiating a class dynamically:
    http://nondocs.blogspot.com/2007/04/flexhowtoinstantiate-class-from-class.html
    My AS3 code looks like this:
    var myClassName:String = event.templateName;
    //Alert.show(getDefinitionByName(myClassName).toString());
    try {
    var ClassReference:Class = getDefinitionByName(myClassName)
    as Class;
    var myInstanceObject:* = new ClassReference();
    } catch( e:Error ) {
    Alert.show("Could not instantiate the class " + myClassName
    + ". Please ensure that the class name is a valid name and that the
    Actionscript 3 class or MXML file exists within the project
    parameters.");
    return;
    However I get an error: ReferenceError: Error #1065: Variable
    OrderEdit is not defined.
    The problem is that my class is located in an altogether
    different project directory from the the calling main project (I
    include this project with these classes I am trying to dynamically
    instantiate in the project source path).
    Every example I have seen so far involves some sort of hard
    coding. I am builidng a plugin/component that I intend to use in
    various places in my site and have any general hard code is
    UNACCEPTABLE. How can I make this process COMPLETELY HARD CODE
    FREE??
    Thanks a ton!

    I am also facing the same problem, I have imported swc (flash
    created) to flex library path (Flex project >> properties
    >> Flex build path >> Library path >> add swc)
    These swc files are icons for my applications with some
    scripts (written in flash, I am using UIMovieClip). So I want to
    make it dynamic.
    I write a xml with these component name and want to create a
    object and then add that object to my canvas according to xml data.
    if I code like this:
    var myIcon:IconA = new IconA()
    canvas.addChild(myIcon); //canvas is instance of Canvas
    then its working, but if I code like
    var myDynClass:Class = getDefinitionByName("IconA") as Class
    var myIcon:* = new myDynClass()
    canvas.addChild(myIcon); //canvas is instance of Canvas
    Then its showing me same error
    Error
    Error #1065: Variable IconA is not defined.
    So, I have seen your reply but didn't get it, how can I fix
    this problem using modules. or any other way...
    Thanks,

  • Class Instantiation Issues...

    Hi,
    We are currently having issuses with a Class Interface.  Everything was working fine with it, and now it says that the class is 'not instantiated'.  If you are in SE80 or SE24 and try to test a class (e.g. CL_HRRCF_APPLICATION_CTRL), you will get a pop-up that allows you to replace generic parameter types.  Now with the non-working class, it gives a screen similar to your transport organizer, with the class name at the top with '<not instantiated>' beside it, and a list of methods below it.  This Class is being used through the web.  Also, in the title bar in 6.40, it says, 'Test Class CL_HRRCF_GLOBAL_CONTEXT: No Instance'.
    <phew>... so, has anyone else run into a problem like this, and if not, does this make enough sense?  Is there a way of instantiating a Class Interface without calling it from a program, like generation?
    Best regards,
    Kevin
    Message was edited by: Kevin Schmidt

    Hi Kevin
    I am also working on an eRecruitment 3.0 ramp-up project. What I have found is that most of the classes etc used rely on other classes etc further up the chain, they cannot be tested in isolation. Instead it is normally necessary to set a breakpoint and then log into the eRecruitment Fornt end via a web browser. The class will then be instantiated in the normal process, as you work through the system pages, and called appropriately.
    This is a BSP issue. The class in question is a basic building block of the eRecruitment BSP pages.
    Regards
    Jon Bowes [ Contract Developer ]

  • Editor Kit Mystery behavior. I don't get how this works.

    I build a JTextPane which is editable, save it to a file, and load it back after which it's editing behavior is completely whacked out.
    The text region is originally built like this:
            textRegion = new JTextPane();
            StyledDocument doc = textRegion.getStyledDocument();
            MutableAttributeSet attr = new SimpleAttributeSet();
            StyleConstants.setForeground(attr, Color.black);
            if ( text!=null ) {
                try {
                    doc.insertString(doc.getLength(), text, attr);
                catch (BadLocationException ble) {
                    System.err.println("Couldn't insert initial text into text pane.");
            ...After which I can edit the text and change font, size, color, bold, and italic.
    Then I save the contents as a string put into a larger XML file like this:
        public String getXmlText() {
            // translate content and all its embedded style attributes into XML
            // Using class: MinimalHTMLWriter
            CharArrayWriter writer = null;
            try {
                writer = new CharArrayWriter();
                MinimalHTMLWriter htmlWriter = new MinimalHTMLWriter(writer, (StyledDocument)textRegion.getDocument());
                htmlWriter.write();
            catch (IOException ex) {
                System.out.println("Save error");
            catch (BadLocationException ex) {
                System.out.println("HTML File Corrupt");
            finally {
                if (writer != null) {
                    writer.close();
            return writer.toString();
        }Then I reload the contents from HTML String in the saved XML file like this:
        public void setXmlText( String text ) {
            // Translate HTML in "text" into styled document
            System.out.println(text);
            CharArrayReader reader = new CharArrayReader( text.toCharArray() );
            textRegion.setContentType("text/html");
            textRegion.setText(text);
        }After which the editing of the text in the JTextPane is completely messed up.
    For example, I type the text "16 point", highlight it and set it to 16 point
    font and what ends up in the saved document looks like this:
            <p>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                1
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                6
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                p
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                o
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                i
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                n
              </span>
              <span style="color: #000000; font-size: 18pt; font-family: Dialog">
                t
              </span>
            </p>Not only the wrong font size, but it puts paragraph tags between every single character I type! Why is this behaving so strangely?
    Thanks for any insights.
    --gary                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thanks,
    Well I guess there's always the solution of parsing out the HTML tags and rebuilding the document by applying styles, the way it was built in the first place.
    --gary                                                                                                                                                                                                                                                                                                                                                               

  • Abstract class instantiation.?

    I have an Abstract class which is extended
    My question is:
    How can the Abstract class be instantiated:
    Animal[] ref = new Animal[3];
    In Java,we cannot instantiate Abstract class,so how does this
    work
    abstract class Animal  // class is abstract
      private String name;
      public String getName(){       
           return name;
      public abstract void speak();  
    class Dog extends Animal{
          private String dogName;
          public Dog(String nm){
         this.dogName=nm;
          public void speak(){       // Implement the abstract method.
          System.out.println("Woof");
          public String getName(){   // Override default functionality.
              return dogName;
    class Cow extends Animal{
          private String cowName;
          public Cow(String nm){
          this.cowName = nm;
          public void speak(){       // Implement the abstract method.
          System.out.println("Moo");
          public String getName(){
              return cowName;
    public class AnimalArray{
      public static void main(String[] args) {
      Animal[] ref = new Animal[3]; // assign space for array
      Dog aDog = new Dog("Rover");  // makes specific objects
      Cow aCow = new Cow("Bossy"); 
      // now put them in an array
      ref[0] = aDog;
      ref[1] = aCow;
      // now dynamic method binding
      for (int x=0;x<2;++x){
           ref[x].speak();
           System.out.println(ref[x].getName());
    }

    You mean to say that now we have a handle or a reference to the
    abstract class. Right ?
    But in the
    public static Test instance () {
            return new Test () {
                public void test () {}
        }How can you say 'return new Test()' as Test is an abtract class
    and what will public void test() return as this has no body ?

  • URGENT: Custom Behavior Problem

    I'm writing an application which must plot a 3D curve. It has 3 panels, each of which has a 2D projection of the curve (xy, xz, yz). Moving the points on the panels will change the properties of the underlying 3D curve.
    When I start the application, The 3D curve is shown correctly, but when I move the points, the 3D curve disappears.
    The problem is not the canvas3d not being redrawn, because resizing the window doesn't bring the curve back. Any idea why the curve isn't redrawn?
    The code for the curve is as follows:
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.lang.Math.*;
    public class CubicCurve3D extends Shape3D{
         public CubicCurve3D(Point3d p1, Point3d p2, Point3d p3, Point3d p4){
              this.setGeometry(createGeometry(p1,p2,p3,p4));
         public Geometry createGeometry(Point3d p1, Point3d p2, Point3d p3, Point3d p4){
              // setup the LineArray to represent the curve
              LineArray curveLine = new LineArray(148, GeometryArray.COORDINATES);
              // Add vertices to the array
              setupLineArray(p1,p2,p3,p4,curveLine);
              return curveLine;
         // This method adds the vertices into the array
         public void setupLineArray(Point3d p1, Point3d p2, Point3d p3, Point3d p4, LineArray curve){
              final Point3d p = new Point3d();;
              double nx = 0;
              double ny = 0;
              double nz = 0;
              double u = 0.0;
              int lIndex = 0;
              for(int i=0;i<75;i++){
                   u = ((double)i/100)/0.75;
                   // Equations to work out point
                   nx = ((p1.x)*Math.pow((1-u),3.0)) + ((p2.x)*(3*u)*Math.pow((1-u),2.0)) + ((p3.x)*(3*u*u)*(1-u)) + ((p4.x)*Math.pow(u,3.0));
                   ny = ((p1.y)*Math.pow((1-u),3.0)) + ((p2.y)*(3*u)*Math.pow((1-u),2.0)) + ((p3.y)*(3*u*u)*(1-u)) + ((p4.y)*Math.pow(u,3.0));
                   nz = ((p1.z)*Math.pow((1-u),3.0)) + ((p2.z)*(3*u)*Math.pow((1-u),2.0)) + ((p3.z)*(3*u*u)*(1-u)) + ((p4.z)*Math.pow(u,3.0));
                   p.set(nx,ny,nz);
                   // Put point into LineArray
                   curve.setCoordinate(lIndex,p);
                   if((i > 0) && (i < 74)){
                        lIndex++;
                        curve.setCoordinate(lIndex,p);
                   lIndex++;
         public void updateGeometry(Point3d p1, Point3d p2, Point3d p3, Point3d p4){
              this.setGeometry(createGeometry(p1,p2,p3,p4));
    }The behavior, called UpdateBehavior, is:
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.util.Enumeration;
    public class UpdateBehavior extends Behavior
         // The set of points to be updated
         private Point3d[] points;
         private CubicCurve3D cc;
         public UpdateBehavior(CubicCurve3D c)
              cc = c;
              postId(1);
         public void initialize()
              this.wakeupOn(new WakeupOnBehaviorPost(this, 1));
         public void processStimulus(Enumeration e)
              cc.updateGeometry(points[0],points[1],points[2],points[3]);
              this.wakeupOn(new WakeupOnBehaviorPost(this, 1));
         public void setNewPoints(Point3d[] p)
              points = p;
              this.postId(1);
    }And the createSceneGraph() method from the Graph3D class is:
         public BranchGroup createSceneGraph() {
              // Create the root of the branch group
              BranchGroup objRoot = new BranchGroup();
              // rotate object has composite transformation matrix
              Transform3D rotate = new Transform3D();
              Transform3D tempRotate = new Transform3D();
              rotate.rotX(Math.PI/20.0d);
              tempRotate.rotY(Math.PI/6.0d);
              rotate.mul(tempRotate);
              TransformGroup objRotate = new TransformGroup(rotate);
              cc = new CubicCurve3D(points[0],points[1],points[2],points[3]);
              cc.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
              cc.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
              Line3D ax1 = new Line3D(new Point3d(0,0,0), new Point3d(0.75,0,0));
              Line3D ax2 = new Line3D(new Point3d(0,0,0), new Point3d(0,0.75,0));
              Line3D ax3 = new Line3D(new Point3d(0,0,0), new Point3d(0,0,0.75));
              objRotate.addChild(ax1);
              objRotate.addChild(ax2);
              objRotate.addChild(ax3);
              objRotate.addChild(cc);
              uBehavior = new UpdateBehavior(cc);
              uBehavior.setSchedulingBounds(new BoundingSphere());
              objRoot.addChild(objRotate);
              objRoot.addChild(uBehavior);
              return objRoot;
         }Graph3D also has a method updatePoints():
         public void updatePoints(Point3d[] p)
              points = p;
              uBehavior.setNewPoints(points);
              System.out.println(cc.getP1() + "," + cc.getP2() + "," + cc.getP3() + "," + cc.getP4());

    Have you checked if the processStimulus method will ever be executed (e.g. print something or use a debugger and set a breakpoint). If it is not executed maybe the radius of the BoundingSphere of the Behavior is to small ?
    I don't know what the initial values of the points and the values of the points you are supplying after change are. So check the coordinates of the new created points ad the calculated curve points.
    Is the curve moving out of the viewing frustrum (behind the front or back clipping planes) ?
    Add some Appearance object with a color other than the default.

  • Understanding class instantiation

    Given classes A, B, and C where B extends A and C extends B and where all classes implement the instance method void doIt(). A reference variable is instantiated as �A x = new B();� and then x.doIt() is executed. What version of the doIt() method is actually executed and why?
    This says to me, I have just created an instance of B of class type A.
    I think class B's doIt() method is the one executed because of that.
    Does anyone have any insight into this?

    A static method can be replaced, which can look like overriding if you don't know the difference.
    For comparison
    public class A {
        public static void main(String[] args) {
            new B().doit(); // prints B.doit() !
            A x = new B();
            x.doit(); // prints A.doit() !
        public static void doit() {
            System.out.println("A.doit()");
    class B extends A {
        public static void doit() {
            System.out.println("B.doit()");

  • Inner class instantiation

    Compiling the following code gives me error
    public class A
      public A()
      boolean a=true;
      class B
      { // removed syntax error "Inner"
        B()
          a = false;
      public static void main(String [] arg)
        A a = new A();
        A.B ab = a.new A.B();
        System.out.println(a);
    }The error I get is
    "A.java": Error #: 200 : '(' expected at line 30, column 21
    could somebody advise me as what I am doing wrong??

    this will compile
    public class A
    public A()
    boolean a=true;
    static class B
    { // removed syntax error "Inner"
    boolean a;
    B()
    a = false;
    public static void main(String [] arg)
    A a = new A();
    B ab = new A.B();
    System.out.println(a);
    I was talking about a member inner class. Thanx anyway. Yahya's solution worked. Interesting thing is that the way I was instantiating it is mentioned in Java Sun Certified Programmer Book in Inner classes chapter. by Syngress. But that definitely seems to be a mistake.

  • Class instantiation only if allowed (ClassLoader?)

    I am implementing some runtime security checks for a project whereby I validate classes before they are allowed to be instantiated.
    Right now I use properties files and reflection to instantiate the classes, so a simple String comparison can tell me whether the class name is "allowed" to be instantiated. This can be checked just before calling Class.forName().
    Obviously, this does not keep someone from writing their own program that would instantiate my classes.
    I am trying to keep from having to go back and add a bunch of code in the constructor(s) of each class. I was thinking of subclassing ClassLoader, but have heard horror stories about them.
    Does anyone have any other ideas of how to handle this? Or perhaps some insight into ClassLoaders and whether they are easier to sub-class these days.
    thanks
    kleink

    ClassLoaders are easy to sub-class.
    The main problems people who post here seem to have with them are centered around a lack of understanding of loading classes in general.
    But I think that given your description of what you want to do, that creating a custom ClassLoader would be a good approach. Try subclassing URLClassLoader and you should not have to override too many methods (maybe just findClass()).

  • Calling EJB facades via class instantiated via reflection?

    We are loading plugins via Java reflection. Anything instantiated via newInstance() does not appear to have access to the Local interface.
    Right now, to get to the session bean we must use the Remote interface. This is annoying due to the performance, and seems completely unnecessary when everything is operating in one JVM.
    Tests were done to print out the JNDI namespace and the local interfaces don't seem to be accessible. Any advice?

    My project consists of an EJB package and WAR. I have not had any problem calling the local facades from JSP, Servlet, or web service in the EJB package.
    Further, I can use XStream reflection and do local EJB calls.
    It baffles me why I can't do the local calls in some classes via InitialContext lookups.
    I will post test code next week.

  • E4X Filter Mystery in AS Class

    Hi,
    I have a very mysterious behaviour when I try to filter an
    XML - depending on the place where I apply the filter expression.
    The app should show a datagrid that displays a XML that can
    be filtered via a combobox.
    I have attached 2 code examples. The first one shows all the
    code cramped into one single mxml file
    while the other one shows the filtering code being moved
    outside into a AS class for capsuling reasons.
    The interesting part on the AS class is that as soon as I
    want to apply a filter expression to the XML
    variable "source_" it delivers me an empty result set.
    Even if I create a static filter expression something like
    "source_.Statement.(@division=='A')" -
    the result is always an empty result set.
    I am completely stunned.

    "KUZELJ" <[email protected]> wrote in
    message
    news:gm6v96$b2c$[email protected]..
    > Hi,
    > I have a very mysterious behaviour when I try to filter
    an XML - depending
    > on
    > the place where I apply the filter expression.
    > The app should show a datagrid that displays a XML that
    can be filtered
    > via a
    > combobox.
    >
    > I have attached 2 code examples. The first one shows all
    the code cramped
    > into
    > one single mxml file
    > while the other one shows the filtering code being moved
    outside into a
    > AS
    > class for capsuling reasons.
    > The interesting part on the AS class is that as soon as
    I want to apply a
    > filter expression to the XML
    > variable "source_" it delivers me an empty result set.
    > Even if I create a static filter expression something
    like
    > "source_.Statement.(@division=='A')" -
    > the result is always an empty result set.
    > I am completely stunned.
    First, if you used an XMLListCollection, you could just use
    its
    filterFunction and not have to go through so many
    convolutions--the logic
    would already be encapsulated in a class that Adobe was nice
    enough to
    create for you that has been through QA and everything.
    Second, what has the debugger told you about what's going on?

  • Class instantiation - and is this a pattern?

    Firstly, my apologies if my goal here is unclear. I am still learning the concepts and may perhaps have a lack of words for the appropriate terms or processes. Hopefully I can convey my meaning enough to get some feedback.
    I have a group of classes, all inheriting from a base class. My task is to add the functionality in these classes to another set of derived classes by simply creating instances of them in these classes constructor methods. To my knowledge this means the instance must take the class it's written in or (this) as it's parameter. My question is then really how should my external helper classes be written so they can be instanced in this way and is there a pattern that this idea conforms to and if so could someone explain this to me. My thanks in advance for any help, tips or directions to a good reference on this topic.

    It sounds a bit like the Strategy pattern.
    Your "helper" classes are providing various ways of performing a task on behalf of another class.
    AWT LayoutManagers implement strategies for laying out the Components in a Container. Have a look through that to see how it's done there.
    Whether your strategy classes need to take the "container" class in their constructor will depend on the functionality they provide. If their behaviour does not need to be cached then they could take a reference to the wrapper in each method call like LayoutManagers do.
    Hope this helps.

  • [urgent please] How many Classes in jdk

    Hi Can some body answer my simple Question
    How many total NUMBER OF CLASSES were there in
    1)JDK1.2
    2)jdk1.3
    3)jdk1.4
    Thanx in advance
    with regards
    Karthik

    Please do not post 3 times the same question.
    As for the number of classes, download the JDKs, decompress the jars and use the explorer to get the .class count.

  • Dynamic Class Instantiating

    Hi,
    I need to dynamicaly instantiate classes at runtime, that is multiple instances, with different reference variables.
    I can easily intantiate a number of classes with different object variables, but i need to do it dynamically at runtime. anyone?

    I think u can better solve this by using Hashtable like data-structure.
    The key will be a String(external data like phone no.-as u said).
    The value will be the actual object which u r trying to load dynamically.
    u can load the class dynamically as follows.
    Class className=Class.forName("ClassName");
    Here class name is the name of the class whose instance u want to create dynamically.If u dont know the
    name exactly u need to use reflection.
    Object activeObject=className.newInstance();
    try this.
    -seenu_ch

  • Class instantiation through mxml - setting properties

    Hi,
    I'm trying to create a reusable component with an actionscript class.
    I'd like to be able to set a handful of the class' properties withmxml attributes. So far, I've had no success doing so.
    I've subset my problem into a separate, simplied project in an attempt to rule out any of the other parts of the real application interfering with what I'm attempting to accomplish. Unfortunately, my simplified project produces the same result.
    In my example, I'm just trying to set value of the property "myValue."  Can anyone tell me what I'm doing wrong? What am I missing?
    Thanks in advance for any help!
    Main application (TestProj.mxml)
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx"
                      minWidth="955" minHeight="600"
                      xmlns:pkg="pkg.*">
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <pkg:TestClass myvalue="some value" />
    </s:Application>
    Actionscript class (pkg\TestClass.as)
    package pkg
         import mx.controls.Alert;
         import mx.core.UIComponent;
         public class TestClass extends UIComponent
              private var _myvalue:String;
              public function TestClass()
                   Alert.show("myvalue=" + this._myvalue);     
              public function get myvalue():String
                   return _myvalue;
              public function set myvalue(value:String):void
                   _myvalue = value;

    Hi,
    The property gets set correctly, but the constructor of your class will always execute before the attributes - this is because Flex needs to create the instance and execute the c-tor before it can set the values on the instance.  Instead try something like this:
    <pkg:TestClass id="foo" myvalue="some value" initialize="{Alert.show(foot.myvalue)}" />
    This will execute the Alert.show when the component is being initialized.  If you need to put some init code in the component itself and that code relies on values set in MXML, then you can override UIComponent's public function initialize():void.
    -Evtim

Maybe you are looking for

  • Crash in develop module RAW files with sidecar files from Lightroom 3

    The issue probably has to do with the differences in settings between the two versions but I figured I would document what I am experiencing.  I am using the 64 bit version of Windows 7. I imported a group of pictures with the XMP sidecar files gener

  • Full HD (1920 x1080) on 27" iMac?

    Hi! When i watch Youtube HD Videos and i click on Fullscreen then the Fullscreen is 2560 x 1440 px. Ok, fine. But i want to see the Video in the Full HD Size 1920 x 1080. How does it works to look the Video in this Size? ThX Mike

  • How can some CD's import Ok and some import and have no sound?

    I have been importing songs from CD's - some import correctly and play perfectly. Some CD's import, but they are only a few Kbs and there is no sound when they play back. Does anybody know why this is happening? It's driving me up the wall! Help!   W

  • H.264 mov to Flash

    Adobe says Flash now "supports H.264 encoding". Since this encoding is QuickTime engine (ISO standard), how do I get an H.264-compressed MOV file to play in Flash Player? (e.g "import to Flash, export as FLV" or some such). Thanks in advance.

  • Reference using the name assigned with setName

    I am automatically generating a data update screen that displays labels and associated data fields. The labels and fields are generated based on the field names and types contained in a SQL table. As the fields are generated the field name is set to