Can't view geometry

I have recently started to use java 3d and want to be able to load and view wrl files that have been created in other packages. I am using netBeans and have no trouble compiling and running the simple program I have created. I have searched here and elsewhere but nothing seems to help me. As can see from the code I have tried to set the clipping plane and still cant see the model.
Does the ouput I get from the for loop suggest that I am not loading the geometry?
Do I need to just centre the model and the viewplane? (ie is the model out of view)
Does it need lights? (I have tried other models with lighting in them and no difference)
Or is it something else all together.
* loadIt.java
import org.jdesktop.j3d.loaders.vrml97.*;
import javax.media.j3d.*;
import java.io.*;
import java.awt.*;
import java.applet.*;
import com.sun.j3d.utils.applet.MainFrame;
import com.sun.j3d.utils.universe.*;
import com.sun.j3d.loaders.Scene;
import java.util.*;
public class loadIt extends Applet {
    BranchGroup objRoot; 
    VrmlLoader loader;
    Scene scene;
    SimpleUniverse simpleUI;
    public loadIt() {
        setLayout(new BorderLayout());
        GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
        Canvas3D canvas3d = new Canvas3D(config);
        add("Center", canvas3d);
        objRoot = new BranchGroup();
        loader = new VrmlLoader();
        try{
          scene = loader.load("test.WRL");
          objRoot.addChild(scene.getSceneGroup());
        catch(FileNotFoundException fe){
        for(Enumeration e = scene.getSceneGroup().getAllChildren(); e.hasMoreElements(); ){
            Node n = (Node)e.nextElement();
            System.out.println(n.toString());
        System.out.println("");
//        objRoot.compile();
        simpleUI = new SimpleUniverse(canvas3d);
        View v = simpleUI.getViewer().getView(); //trying to set clipping plane to sensible value
        v.setBackClipDistance(5);
        v.setFrontClipDistance(0.5);
        simpleUI.getViewingPlatform().setNominalViewingTransform();
        simpleUI.addBranchGraph(objRoot);       
    public static void main(String [] args){  
         Frame frame = new MainFrame(new loadIt(), 800, 800);
}The ouput from the for loop prints
init:
deps-jar:
Compiling 1 source file to /home/lg/JavaSource/loadModel/loadModel/build/classes
compile:
run:
javax.media.j3d.TransformGroup@5c07f4ec
javax.media.j3d.TransformGroup@e60e128
javax.media.j3d.TransformGroup@7a5e1077
javax.media.j3d.TransformGroup@358b3364
BUILD SUCCESSFUL (total time: 6 seconds)The simple file I am trying to load is#VRML V2.0 utf8
# Produced by 3D Studio MAX VRML97 exporter, Version 7, Revision 0.65
# Date: Thu Sep 22 14:55:18 2005
DEF Box01 Transform {
translation -4.599 0 -9.787
children [
Transform {
translation 0 17.1 0
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 0.6 0.8941 0.8392
geometry Box { size 32.53 34.2 72.48 }
DEF Cylinder01 Transform {
translation -27.77 0 54.21
children [
Transform {
translation 0 12.72 0
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 0.6039 0.8431 0.898
geometry Cylinder { radius 33.01 height 25.45 }
DEF Cone01 Transform {
translation 53 0 -51.6
children [
Transform {
translation 0 14.82 0
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 0.6 0.8941 0.7216
geometry Cone { bottomRadius 116.3 height 29.64 }
DEF Torus01 Transform {
translation 107.6 0 -37.53
children [
Shape {
appearance Appearance {
material Material {
diffuseColor 0.3451 0.5608 0.8824
geometry DEF Torus01-FACES IndexedFaceSet {
ccw TRUE
solid TRUE
coord DEF Torus01-COORD Coordinate { point [
0 0 -76.14, 0 12.92 -72.68, 0 22.38 -63.22, 0 25.84 -50.3,
0 22.38 -37.37, 0 12.92 -27.92, 0 0 -24.45, 0 -12.92 -27.92,
0 -22.38 -37.37, 0 -25.84 -50.3, 0 -22.38 -63.22, 0 -12.92 -72.68,
19.71 0 -73.54, 18.81 12.92 -70.2, 16.36 22.38 -61.06,
13.02 25.84 -48.58, 9.673 22.38 -36.1, 7.225 12.92 -26.96,
6.329 0 -23.62, 7.225 -12.92 -26.96, 9.673 -22.38 -36.1,
13.02 -25.84 -48.58, 16.36 -22.38 -61.06, 18.81 -12.92 -70.2,
38.07 0 -65.94, 36.34 12.92 -62.94, 31.61 22.38 -54.75,
25.15 25.84 -43.56, 18.69 22.38 -32.37, 13.96 12.92 -24.18,
12.23 0 -21.18, 13.96 -12.92 -24.18, 18.69 -22.38 -32.37,
25.15 -25.84 -43.56, 31.61 -22.38 -54.75, 36.34 -12.92 -62.94,
53.84 0 -53.84, 51.39 12.92 -51.39, 44.7 22.38 -44.7,
35.56 25.84 -35.56, 26.43 22.38 -26.43, 19.74 12.92 -19.74,
17.29 0 -17.29, 19.74 -12.92 -19.74, 26.43 -22.38 -26.43,
35.56 -25.84 -35.56, 44.7 -22.38 -44.7, 51.39 -12.92 -51.39,
65.94 0 -38.07, 62.94 12.92 -36.34, 54.75 22.38 -31.61,
43.56 25.84 -25.15, 32.37 22.38 -18.69, 24.18 12.92 -13.96,
21.18 0 -12.23, 24.18 -12.92 -13.96, 32.37 -22.38 -18.69,
43.56 -25.84 -25.15, 54.75 -22.38 -31.61, 62.94 -12.92 -36.34,
73.54 0 -19.71, 70.2 12.92 -18.81, 61.06 22.38 -16.36,
48.58 25.84 -13.02, 36.1 22.38 -9.673, 26.96 12.92 -7.225,
23.62 0 -6.329, 26.96 -12.92 -7.225, 36.1 -22.38 -9.673,
48.58 -25.84 -13.02, 61.06 -22.38 -16.36, 70.2 -12.92 -18.81,
76.14 0 0, 72.68 12.92 0, 63.22 22.38 0, 50.3 25.84 0,
37.37 22.38 0, 27.92 12.92 0, 24.45 0 0, 27.92 -12.92 0,
37.37 -22.38 0, 50.3 -25.84 0, 63.22 -22.38 0, 72.68 -12.92 0,
73.54 0 19.71, 70.2 12.92 18.81, 61.06 22.38 16.36,
48.58 25.84 13.02, 36.1 22.38 9.673, 26.96 12.92 7.225,
23.62 0 6.329, 26.96 -12.92 7.225, 36.1 -22.38 9.673,
48.58 -25.84 13.02, 61.06 -22.38 16.36, 70.2 -12.92 18.81,
65.94 0 38.07, 62.94 12.92 36.34, 54.75 22.38 31.61,
43.56 25.84 25.15, 32.37 22.38 18.69, 24.18 12.92 13.96,
21.18 0 12.23, 24.18 -12.92 13.96, 32.37 -22.38 18.69,
43.56 -25.84 25.15, 54.75 -22.38 31.61, 62.94 -12.92 36.34,
53.84 0 53.84, 51.39 12.92 51.39, 44.7 22.38 44.7,
35.56 25.84 35.56, 26.43 22.38 26.43, 19.74 12.92 19.74,
17.29 0 17.29, 19.74 -12.92 19.74, 26.43 -22.38 26.43,
35.56 -25.84 35.56, 44.7 -22.38 44.7, 51.39 -12.92 51.39,
38.07 0 65.94, 36.34 12.92 62.94, 31.61 22.38 54.75,
25.15 25.84 43.56, 18.69 22.38 32.37, 13.96 12.92 24.18,
12.23 0 21.18, 13.96 -12.92 24.18, 18.69 -22.38 32.37,
25.15 -25.84 43.56, 31.61 -22.38 54.75, 36.34 -12.92 62.94,
19.71 0 73.54, 18.81 12.92 70.2, 16.36 22.38 61.06,
13.02 25.84 48.58, 9.673 22.38 36.1, 7.225 12.92 26.96,
6.329 0 23.62, 7.225 -12.92 26.96, 9.673 -22.38 36.1,
13.02 -25.84 48.58, 16.36 -22.38 61.06, 18.81 -12.92 70.2,
0 0 76.14, 0 12.92 72.68, 0 22.38 63.22, 0 25.84 50.3,
0 22.38 37.37, 0 12.92 27.92, 0 0 24.45, 0 -12.92 27.92,
0 -22.38 37.37, 0 -25.84 50.3, 0 -22.38 63.22, 0 -12.92 72.68,
-19.71 0 73.54, -18.81 12.92 70.2, -16.36 22.38 61.06,
-13.02 25.84 48.58, -9.673 22.38 36.1, -7.225 12.92 26.96,
-6.329 0 23.62, -7.225 -12.92 26.96, -9.673 -22.38 36.1,
-13.02 -25.84 48.58, -16.36 -22.38 61.06, -18.81 -12.92 70.2,
-38.07 0 65.94, -36.34 12.92 62.94, -31.61 22.38 54.75,
-25.15 25.84 43.56, -18.69 22.38 32.37, -13.96 12.92 24.18,
-12.23 0 21.18, -13.96 -12.92 24.18, -18.69 -22.38 32.37,
-25.15 -25.84 43.56, -31.61 -22.38 54.75, -36.34 -12.92 62.94,
-53.84 0 53.84, -51.39 12.92 51.39, -44.7 22.38 44.7,
-35.56 25.84 35.56, -26.43 22.38 26.43, -19.74 12.92 19.74,
-17.29 0 17.29, -19.74 -12.92 19.74, -26.43 -22.38 26.43,
-35.56 -25.84 35.56, -44.7 -22.38 44.7, -51.39 -12.92 51.39,
-65.94 0 38.07, -62.94 12.92 36.34, -54.75 22.38 31.61,
-43.56 25.84 25.15, -32.37 22.38 18.69, -24.18 12.92 13.96,
-21.18 0 12.23, -24.18 -12.92 13.96, -32.37 -22.38 18.69,
-43.56 -25.84 25.15, -54.75 -22.38 31.61, -62.94 -12.92 36.34,
-73.54 0 19.71, -70.2 12.92 18.81, -61.06 22.38 16.36,
-48.58 25.84 13.02, -36.1 22.38 9.673, -26.96 12.92 7.225,
-23.62 0 6.329, -26.96 -12.92 7.225, -36.1 -22.38 9.673,
-48.58 -25.84 13.02, -61.06 -22.38 16.36, -70.2 -12.92 18.81,
-76.14 0 0, -72.68 12.92 0, -63.22 22.38 0, -50.3 25.84 0,
-37.37 22.38 0, -27.92 12.92 0, -24.45 0 0, -27.92 -12.92 0,
-37.37 -22.38 0, -50.3 -25.84 0, -63.22 -22.38 0, -72.68 -12.92 0,
-73.54 0 -19.71, -70.2 12.92 -18.81, -61.06 22.38 -16.36,
-48.58 25.84 -13.02, -36.1 22.38 -9.673, -26.96 12.92 -7.225,
-23.62 0 -6.329, -26.96 -12.92 -7.225, -36.1 -22.38 -9.673,
-48.58 -25.84 -13.02, -61.06 -22.38 -16.36, -70.2 -12.92 -18.81,
-65.94 0 -38.07, -62.94 12.92 -36.34, -54.75 22.38 -31.61,
-43.56 25.84 -25.15, -32.37 22.38 -18.69, -24.18 12.92 -13.96,
-21.18 0 -12.23, -24.18 -12.92 -13.96, -32.37 -22.38 -18.69,
-43.56 -25.84 -25.15, -54.75 -22.38 -31.61, -62.94 -12.92 -36.34,
-53.84 0 -53.84, -51.39 12.92 -51.39, -44.7 22.38 -44.7,
-35.56 25.84 -35.56, -26.43 22.38 -26.43, -19.74 12.92 -19.74,
-17.29 0 -17.29, -19.74 -12.92 -19.74, -26.43 -22.38 -26.43,
-35.56 -25.84 -35.56, -44.7 -22.38 -44.7, -51.39 -12.92 -51.39,
-38.07 0 -65.94, -36.34 12.92 -62.94, -31.61 22.38 -54.75,
-25.15 25.84 -43.56, -18.69 22.38 -32.37, -13.96 12.92 -24.18,
-12.23 0 -21.18, -13.96 -12.92 -24.18, -18.69 -22.38 -32.37,
-25.15 -25.84 -43.56, -31.61 -22.38 -54.75, -36.34 -12.92 -62.94,
-19.71 0 -73.54, -18.81 12.92 -70.2, -16.36 22.38 -61.06,
-13.02 25.84 -48.58, -9.673 22.38 -36.1, -7.225 12.92 -26.96,
-6.329 0 -23.62, -7.225 -12.92 -26.96, -9.673 -22.38 -36.1,
-13.02 -25.84 -48.58, -16.36 -22.38 -61.06, -18.81 -12.92 -70.2]
coordIndex [
0, 13, 12, -1, 0, 1, 13, -1, 1, 14, 13, -1, 1, 2, 14, -1,
2, 15, 14, -1, 2, 3, 15, -1, 3, 16, 15, -1, 3, 4, 16, -1,
4, 17, 16, -1, 4, 5, 17, -1, 5, 18, 17, -1, 5, 6, 18, -1,
6, 19, 18, -1, 6, 7, 19, -1, 7, 20, 19, -1, 7, 8, 20, -1,
8, 21, 20, -1, 8, 9, 21, -1, 9, 22, 21, -1, 9, 10, 22, -1,
10, 23, 22, -1, 10, 11, 23, -1, 11, 12, 23, -1, 11, 0, 12, -1,
12, 25, 24, -1, 12, 13, 25, -1, 13, 26, 25, -1, 13, 14, 26, -1,
14, 27, 26, -1, 14, 15, 27, -1, 15, 28, 27, -1, 15, 16, 28, -1,
16, 29, 28, -1, 16, 17, 29, -1, 17, 30, 29, -1, 17, 18, 30, -1,
18, 31, 30, -1, 18, 19, 31, -1, 19, 32, 31, -1, 19, 20, 32, -1,
20, 33, 32, -1, 20, 21, 33, -1, 21, 34, 33, -1, 21, 22, 34, -1,
22, 35, 34, -1, 22, 23, 35, -1, 23, 24, 35, -1, 23, 12, 24, -1,
24, 37, 36, -1, 24, 25, 37, -1, 25, 38, 37, -1, 25, 26, 38, -1,
26, 39, 38, -1, 26, 27, 39, -1, 27, 40, 39, -1, 27, 28, 40, -1,
28, 41, 40, -1, 28, 29, 41, -1, 29, 42, 41, -1, 29, 30, 42, -1,
30, 43, 42, -1, 30, 31, 43, -1, 31, 44, 43, -1, 31, 32, 44, -1,
32, 45, 44, -1, 32, 33, 45, -1, 33, 46, 45, -1, 33, 34, 46, -1,
34, 47, 46, -1, 34, 35, 47, -1, 35, 36, 47, -1, 35, 24, 36, -1,
36, 49, 48, -1, 36, 37, 49, -1, 37, 50, 49, -1, 37, 38, 50, -1,
38, 51, 50, -1, 38, 39, 51, -1, 39, 52, 51, -1, 39, 40, 52, -1,
40, 53, 52, -1, 40, 41, 53, -1, 41, 54, 53, -1, 41, 42, 54, -1,
42, 55, 54, -1, 42, 43, 55, -1, 43, 56, 55, -1, 43, 44, 56, -1,
44, 57, 56, -1, 44, 45, 57, -1, 45, 58, 57, -1, 45, 46, 58, -1,
46, 59, 58, -1, 46, 47, 59, -1, 47, 48, 59, -1, 47, 36, 48, -1,
48, 61, 60, -1, 48, 49, 61, -1, 49, 62, 61, -1, 49, 50, 62, -1,
50, 63, 62, -1, 50, 51, 63, -1, 51, 64, 63, -1, 51, 52, 64, -1,
52, 65, 64, -1, 52, 53, 65, -1, 53, 66, 65, -1, 53, 54, 66, -1,
54, 67, 66, -1, 54, 55, 67, -1, 55, 68, 67, -1, 55, 56, 68, -1,
56, 69, 68, -1, 56, 57, 69, -1, 57, 70, 69, -1, 57, 58, 70, -1,
58, 71, 70, -1, 58, 59, 71, -1, 59, 60, 71, -1, 59, 48, 60, -1,
60, 73, 72, -1, 60, 61, 73, -1, 61, 74, 73, -1, 61, 62, 74, -1,
62, 75, 74, -1, 62, 63, 75, -1, 63, 76, 75, -1, 63, 64, 76, -1,
64, 77, 76, -1, 64, 65, 77, -1, 65, 78, 77, -1, 65, 66, 78, -1,
66, 79, 78, -1, 66, 67, 79, -1, 67, 80, 79, -1, 67, 68, 80, -1,
68, 81, 80, -1, 68, 69, 81, -1, 69, 82, 81, -1, 69, 70, 82, -1,
70, 83, 82, -1, 70, 71, 83, -1, 71, 72, 83, -1, 71, 60, 72, -1,
72, 85, 84, -1, 72, 73, 85, -1, 73, 86, 85, -1, 73, 74, 86, -1,
74, 87, 86, -1, 74, 75, 87, -1, 75, 88, 87, -1, 75, 76, 88, -1,
76, 89, 88, -1, 76, 77, 89, -1, 77, 90, 89, -1, 77, 78, 90, -1,
78, 91, 90, -1, 78, 79, 91, -1, 79, 92, 91, -1, 79, 80, 92, -1,
80, 93, 92, -1, 80, 81, 93, -1, 81, 94, 93, -1, 81, 82, 94, -1,
82, 95, 94, -1, 82, 83, 95, -1, 83, 84, 95, -1, 83, 72, 84, -1,
84, 97, 96, -1, 84, 85, 97, -1, 85, 98, 97, -1, 85, 86, 98, -1,
86, 99, 98, -1, 86, 87, 99, -1, 87, 100, 99, -1, 87, 88, 100, -1,
88, 101, 100, -1, 88, 89, 101, -1, 89, 102, 101, -1,
89, 90, 102, -1, 90, 103, 102, -1, 90, 91, 103, -1,
91, 104, 103, -1, 91, 92, 104, -1, 92, 105, 104, -1,
92, 93, 105, -1, 93, 106, 105, -1, 93, 94, 106, -1,
94, 107, 106, -1, 94, 95, 107, -1, 95, 96, 107, -1,
95, 84, 96, -1, 96, 109, 108, -1, 96, 97, 109, -1,
97, 110, 109, -1, 97, 98, 110, -1, 98, 111, 110, -1,
98, 99, 111, -1, 99, 112, 111, -1, 99, 100, 112, -1,
100, 113, 112, -1, 100, 101, 113, -1, 101, 114, 113, -1,
101, 102, 114, -1, 102, 115, 114, -1, 102, 103, 115, -1,
103, 116, 115, -1, 103, 104, 116, -1, 104, 117, 116, -1,
104, 105, 117, -1, 105, 118, 117, -1, 105, 106, 118, -1,
106, 119, 118, -1, 106, 107, 119, -1, 107, 108, 119, -1,
107, 96, 108, -1, 108, 121, 120, -1, 108, 109, 121, -1,
109, 122, 121, -1, 109, 110, 122, -1, 110, 123, 122, -1,
110, 111, 123, -1, 111, 124, 123, -1, 111, 112, 124, -1,
112, 125, 124, -1, 112, 113, 125, -1, 113, 126, 125, -1,
113, 114, 126, -1, 114, 127, 126, -1, 114, 115, 127, -1,
115, 128, 127, -1, 115, 116, 128, -1, 116, 129, 128, -1,
116, 117, 129, -1, 117, 130, 129, -1, 117, 118, 130, -1,
118, 131, 130, -1, 118, 119, 131, -1, 119, 120, 131, -1,
119, 108, 120, -1, 120, 133, 132, -1, 120, 121, 133, -1,
121, 134, 133, -1, 121, 122, 134, -1, 122, 135, 134, -1,
122, 123, 135, -1, 123, 136, 135, -1, 123, 124, 136, -1,
124, 137, 136, -1, 124, 125, 137, -1, 125, 138, 137, -1,
125, 126, 138, -1, 126, 139, 138, -1, 126, 127, 139, -1,
127, 140, 139, -1, 127, 128, 140, -1, 128, 141, 140, -1,
128, 129, 141, -1, 129, 142, 141, -1, 129, 130, 142, -1,
130, 143, 142, -1, 130, 131, 143, -1, 131, 132, 143, -1,
131, 120, 132, -1, 132, 145, 144, -1, 132, 133, 145, -1,
133, 146, 145, -1, 133, 134, 146, -1, 134, 147, 146, -1,
134, 135, 147, -1, 135, 148, 147, -1, 135, 136, 148, -1,
136, 149, 148, -1, 136, 137, 149, -1, 137, 150, 149, -1,
137, 138, 150, -1, 138, 151, 150, -1, 138, 139, 151, -1,
139, 152, 151, -1, 139, 140, 152, -1, 140, 153, 152, -1,
140, 141, 153, -1, 141, 154, 153, -1, 141, 142, 154, -1,
142, 155, 154, -1, 142, 143, 155, -1, 143, 144, 155, -1,
143, 132, 144, -1, 144, 157, 156, -1, 144, 145, 157, -1,
145, 158, 157, -1, 145, 146, 158, -1, 146, 159, 158, -1,
146, 147, 159, -1, 147, 160, 159, -1, 147, 148, 160, -1,
148, 161, 160, -1, 148, 149, 161, -1, 149, 162, 161, -1,
149, 150, 162, -1, 150, 163, 162, -1, 150, 151, 163, -1,
151, 164, 163, -1, 151, 152, 164, -1, 152, 165, 164, -1,
152, 153, 165, -1, 153, 166, 165, -1, 153, 154, 166, -1,
154, 167, 166, -1, 154, 155, 167, -1, 155, 156, 167, -1,
155, 144, 156, -1, 156, 169, 168, -1, 156, 157, 169, -1,
157, 170, 169, -1, 157, 158, 170, -1, 158, 171, 170, -1,
158, 159, 171, -1, 159, 172, 171, -1, 159, 160, 172, -1,
160, 173, 172, -1, 160, 161, 173, -1, 161, 174, 173, -1,
161, 162, 174, -1, 162, 175, 174, -1, 162, 163, 175, -1,
163, 176, 175, -1, 163, 164, 176, -1, 164, 177, 176, -1,
164, 165, 177, -1, 165, 178, 177, -1, 165, 166, 178, -1,
166, 179, 178, -1, 166, 167, 179, -1, 167, 168, 179, -1,
167, 156, 168, -1, 168, 181, 180, -1, 168, 169, 181, -1,
169, 182, 181, -1, 169, 170, 182, -1, 170, 183, 182, -1,
170, 171, 183, -1, 171, 184, 183, -1, 171, 172, 184, -1,
172, 185, 184, -1, 172, 173, 185, -1, 173, 186, 185, -1,
173, 174, 186, -1, 174, 187, 186, -1, 174, 175, 187, -1,
175, 188, 187, -1, 175, 176, 188, -1, 176, 189, 188, -1,
176, 177, 189, -1, 177, 190, 189, -1, 177, 178, 190, -1,
178, 191, 190, -1, 178, 179, 191, -1, 179, 180, 191, -1,
179, 168, 180, -1, 180, 193, 192, -1, 180, 181, 193, -1,
181, 194, 193, -1, 181, 182, 194, -1, 182, 195, 194, -1,
182, 183, 195, -1, 183, 196, 195, -1, 183, 184, 196, -1,
184, 197, 196, -1, 184, 185, 197, -1, 185, 198, 197, -1,
185, 186, 198, -1, 186, 199, 198, -1, 186, 187, 199, -1,
187, 200, 199, -1, 187, 188, 200, -1, 188, 201, 200, -1,
188, 189, 201, -1, 189, 202, 201, -1, 189, 190, 202, -1,
190, 203, 202, -1, 190, 191, 203, -1, 191, 192, 203, -1,
191, 180, 192, -1, 192, 205, 204, -1, 192, 193, 205, -1,
193, 206, 205, -1, 193, 194, 206, -1, 194, 207, 206, -1,
194, 195, 207, -1, 195, 208, 207, -1, 195, 196, 208, -1,
196, 209, 208, -1, 196, 197, 209, -1, 197, 210, 209, -1,
197, 198, 210, -1, 198, 211, 210, -1, 198, 199, 211, -1,
199, 212, 211, -1, 199, 200, 212, -1, 200, 213, 212, -1,
200, 201, 213, -1, 201, 214, 213, -1, 201, 202, 214, -1,
202, 215, 214, -1, 202, 203, 215, -1, 203, 204, 215, -1,
203, 192, 204, -1, 204, 217, 216, -1, 204, 205, 217, -1,
205, 218, 217, -1, 205, 206, 218, -1, 206, 219, 218, -1,
206, 207, 219, -1, 207, 220, 219, -1, 207, 208, 220, -1,
208, 221, 220, -1, 208, 209, 221, -1, 209, 222, 221, -1,
209, 210, 222, -1, 210, 223, 222, -1, 210, 211, 223, -1,
211, 224, 223, -1, 211, 212, 224, -1, 212, 225, 224, -1,
212, 213, 225, -1, 213, 226, 225, -1, 213, 214, 226, -1,
214, 227, 226, -1, 214, 215, 227, -1, 215, 216, 227, -1,
215, 204, 216, -1, 216, 229, 228, -1, 216, 217, 229, -1,
217, 230, 229, -1, 217, 218, 230, -1, 218, 231, 230, -1,
218, 219, 231, -1, 219, 232, 231, -1, 219, 220, 232, -1,
220, 233, 232, -1, 220, 221, 233, -1, 221, 234, 233, -1,
221, 222, 234, -1, 222, 235, 234, -1, 222, 223, 235, -1,
223, 236, 235, -1, 223, 224, 236, -1, 224, 237, 236, -1,
224, 225, 237, -1, 225, 238, 237, -1, 225, 226, 238, -1,
226, 239, 238, -1, 226, 227, 239, -1, 227, 228, 239, -1,
227, 216, 228, -1, 228, 241, 240, -1, 228, 229, 241, -1,
229, 242, 241, -1, 229, 230, 242, -1, 230, 243, 242, -1,
230, 231, 243, -1, 231, 244, 243, -1, 231, 232, 244, -1,
232, 245, 244, -1, 232, 233, 245, -1, 233, 246, 245, -1,
233, 234, 246, -1, 234, 247, 246, -1, 234, 235, 247, -1,
235, 248, 247, -1, 235, 236, 248, -1, 236, 249, 248, -1,
236, 237, 249, -1, 237, 250, 249, -1, 237, 238, 250, -1,
238, 251, 250, -1, 238, 239, 251, -1, 239, 240, 251, -1,
239, 228, 240, -1, 240, 253, 252, -1, 240, 241, 253, -1,
241, 254, 253, -1, 241, 242, 254, -1, 242, 255, 254, -1,
242, 243, 255, -1, 243, 256, 255, -1, 243, 244, 256, -1,
244, 257, 256, -1, 244, 245, 257, -1, 245, 258, 257, -1,
245, 246, 258, -1, 246, 259, 258, -1, 246, 247, 259, -1,
247, 260, 259, -1, 247, 248, 260, -1, 248, 261, 260, -1,
248, 249, 261, -1, 249, 262, 261, -1, 249, 250, 262, -1,
250, 263, 262, -1, 250, 251, 263, -1, 251, 252, 263, -1,
251, 240, 252, -1, 252, 265, 264, -1, 252, 253, 265, -1,
253, 266, 265, -1, 253, 254, 266, -1, 254, 267, 266, -1,
254, 255, 267, -1, 255, 268, 267, -1, 255, 256, 268, -1,
256, 269, 268, -1, 256, 257, 269, -1, 257, 270, 269, -1,
257, 258, 270, -1, 258, 271, 270, -1, 258, 259, 271, -1,
259, 272, 271, -1, 259, 260, 272, -1, 260, 273, 272, -1,
260, 261, 273, -1, 261, 274, 273, -1, 261, 262, 274, -1,
262, 275, 274, -1, 262, 263, 275, -1, 263, 264, 275, -1,
263, 252, 264, -1, 264, 277, 276, -1, 264, 265, 277, -1,
265, 278, 277, -1, 265, 266, 278, -1, 266, 279, 278, -1,
266, 267, 279, -1, 267, 280, 279, -1, 267, 268, 280, -1,
268, 281, 280, -1, 268, 269, 281, -1, 269, 282, 281, -1,
269, 270, 282, -1, 270, 283, 282, -1, 270, 271, 283, -1,
271, 284, 283, -1, 271, 272, 284, -1, 272, 285, 284, -1,
272, 273, 285, -1, 273, 286, 285, -1, 273, 274, 286, -1,
274, 287, 286, -1, 274, 275, 287, -1, 275, 276, 287, -1,
275, 264, 276, -1, 276, 1, 0, -1, 276, 277, 1, -1,
277, 2, 1, -1, 277, 278, 2, -1, 278, 3, 2, -1, 278, 279, 3, -1,
279, 4, 3, -1, 279, 280, 4, -1, 280, 5, 4, -1, 280, 281, 5, -1,
281, 6, 5, -1, 281, 282, 6, -1, 282, 7, 6, -1, 282, 283, 7, -1,
283, 8, 7, -1, 283, 284, 8, -1, 284, 9, 8, -1, 284, 285, 9, -1,
285, 10, 9, -1, 285, 286, 10, -1, 286, 11, 10, -1,
286, 287, 11, -1, 287, 0, 11, -1, 287, 276, 0, -1]

Ok I have added 10 duke dollars people I could use some help. This shouldn't be too much of a problem I must be really close.
Please help I have searched the forum and can find nothing that helps me. I have also tried exporting from both 3ds max and Blender and in both vrml1.0 & 2.0 from Blender. No difference. I have trawled the documentation and the tutorials but can't seem to find an answer.
thanks

Similar Messages

  • Can we view data in Multiprovider

    Hello All
    In one of my interview he asked me can v view data in multiprovider.(Not in reporting level).
    I said no,he said yes?
    If anyone knows abt this pl let me know.
    Regards
    balaji

    Hi Balaji,
    Yes. Your are right that teh multi-provider does not store any data. It is like a view that displays the data from various data targets using union. LISTCUBE displays the data using those unions and displays the data. It is not fetching data from any underlying table of the Multi-provider. Probably if you debug then you would find the various SQL statements fetching data from the other data targets using the join conditions.
    LISTCUBE is just meant for displaying the data from an Info-provider in the backend.
    If you are familiar with R/3 then you would have noticed that you can see the data in table or view in SE11/SE16 even though a table has data where as a View does not. It is something similar to that.
    Hope this helps.
    Bye
    Dinesh

  • I downloaded 11.1 but now can't access the store, can only view my library. I've reinstalled but still get a blank, white screen when I try to go to the itunes store. How can I get to the store for purchases?

    I downloaded 11.1 but now can't access the store, can only view my library. I've reinstalled but still get a blank, white screen when I try to go to the itunes store. How can I get to the store for purchases?

    In iTunes prefs>Store - is the Store check box unchecked?
    Did you repair pemissions with Disk Utility?
    MJ

  • Is there a way to adjust the settings on launchpad so that when I swipe into it all the open apps/pages are fully separated (like in exposé) so that I can fully view all of them simultaneously?

    Hi Apple community,
    This is my first go at this so be kind,
    My question concerns launchpad. Coming from Snow Leopard I had been using spaces. I like to keep certain bundles of programs on separate desktops, for example all word processing related tasks in one place. I have set up the equivalent on Yosemite.
    My problem is concerns the loss of exposé. Now I know when you swipe into launch pad you get a very similar effect but the issue I am having concerns the "zoom out" effect when you swipe into launchpad. With exposé all open apps/pages etc would be fully exposed - in my case several (sometimes as many as 9 word documents). What I am running into is when I do this in / into launch pad the "pile" of docs is exposed but they are still overlapping so I can't get a good look at which is which and visually identify where I want to navigate to.
    My question is this; Is there a way to adjust the settings on launchpad so that when I swipe into it all the open apps/pages are fully separated (like in exposé) so that I can fully view all of them simultaneously? If so, instructions on how to do so would be greatly appreciated. Any alternative suggestions to doing this outside of launchpad are also welcome. If there is an exposé app for example, I would be quite willing to go that route.
    My main concern is being able to quickly (ie a touchpad gesture) expand all the open pages so I can bounce between them.
    Much thanks from a loyal Apple friend.

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • Can't view raw files in Adobe Bridge CS4

    Hi,
    I bought a new iMac OS X version 10.8.5 . I have a Canon 5d Mark ii and I shoot in RAW. I installed CS4.. I also downloaded the newest version of the camera raw plug-in (5.7). I placed the plug-in in applications--> adobe photoshop CS4 -->plug-ins--> file formats.
    In Bridge, I can only view the grey thumbnail that says CR2. I can click on it and it'll open up into camera raw where I can edit some and then open it into photoshop. I want to be able to view the images in bridge to know which ones I want to open up in camera raw. Also, when I right click on the thumbnail there isn't an option that says "open in camera raw".
    Should I also place the camera raw plug-in in the applications-->Adobe Bridge-->plug-ins?
    When I click on about plug-ins on photoshop, it's showing me 2 camera raw plug-ins.. version 5.0 and version 5.7. I can't find 5.0 to delete?
    Thanks

    If you just go to Help>Updates, Bridge should take care of this for you, unless you've managed to get multiple copies of the plug-in into the folder. If you manually installed things, check to see that there is only one plug-in there, then let Bridge do it for you.

  • Can't view photos in Adobe Bridge

    Hi Everyone,
    I just upgraded to a desktop, Dell Inspiron 3000 Series with Windows 7.  I uploaded my Photoshop CS6 onto my new computer, but I cant view my photos on Bridge.  No thumbnail previews, just the name of the photo.CR2.  I can however view my Tiff files
    Any idea how I can fix this?  Would greatly appreciate the help, need to be able to see my photos soon!
    Mahalo,
    Maria

    So, you can't see your RAW files.  That probably means you have not applied any updates after installing CS6.
    You have to update BOTH Photoshop and the Adobe Camera Raw plug-in.  That should work through the Help menu in Photoshop:   Help > Updates

  • Can not view all the thumbnails in version 9 adobe standard

    Hello,
    I recently installed adobe standard 9 running parallel with adobe standard 5.
    My end user is claiming of the view setting for patient data. She can not scroll all the way to the bottom
    as she could in adobe 5. She can see all the thumbnails minus the last row. I have changed the prefereces to show the same
    as adobe 5. However I can not get the correct settting to make it right for her.
    Any adivse or trouble shoot steps would be appreciated. Adobe said to update the product, I have done that last night.

    How do I do that?
    Date: Tue, 14 Dec 2010 10:10:01 -0700
    From: [email protected]
    To: [email address deleted by host]
    Subject: Acrobat Windows Can not view all the thumbnails in version 9 adobe standard
    Change the size of the thumbnails, change the size of the thumbnails window, or upgrade Acrobat X.
    >

  • Can we view Color & SIZE1 field from MARA in MM43??

    Can we view Color & SIZE1 field from MARA in MM43??

    Hi Ashish,
    In MM43 on Basic data screen scroll down to see More Basic Data push button.
    Once you enter in More Basic Data screen you have field there for size/dimension.
    I'm not sure if this is what you are looking for.
    Thanks,
    Vikrant.

  • Can we view  SH's partner functions in Sales Order?

    Hi All,
    SP has a different SH and FA is assigned to SH in master record. When we create order we can see all the partner functions of SP but we can't see partner functions of SH. User wants to see which FA is assigned to SH. We can only view partner functions of SH in delivery document. Is it possible to view partner functions of SH in sales order as well? Please suggest the ways to configure this setting.
    Thanks!!

    Hi,
    Yes, you can view . Check the Partner determination procedure, include the partner function SH to your partner determination procedure assigned for your sales order.
    Regards,
    Murali

  • Can not view video in email

    Does anyone have any idea why i cant view a video sent from a email the link doesnt even show up , i know you cant view a video in a instant message which is crazy the cheapest phones out there do it but apple dont
    Iphone 3g
    Thanks joe

    Depends on the format. You can only view mpeg4 and quicktime really. Other movie formats like wma or flash do not have a codec on the phone and would need to be viewed on a computer.
    Send feedback about what you want to be able to do with the phone http://www.apple.com/feedback/iphone.html

  • Can not view applet in browser (IE5.5)

    only my appletviewer shows my very simple applet.
    in the IE5.5 i can not view my applet... ?
    my applet just have write a string...
    any help ?

    http://forum.java.sun.com/thread.jsp?forum=31&thread=276607

  • Can not view Chinese [lang pack installed]

    I have a strange problem with following PDF which is generated by TCPDF.
    I have tried with both Acrobat Reader 9 / X, installed all the language pack I can find. Also installed the 2 fonts specified in the PDF file.
    It can be viewed in Google Doc. Other people can view it with no problem on their PC. However, it only shows a blank layout in my PC (picture below)
    You can download the original file here: (try save to your pc instead of view online)
    https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=0B9Li-9QY85kaNjYzOTBmN2M tNTI1Zi00YjlmLTgzMzItOWE5MjFjMjM5NTAw&hl=zh_TW
    My OS is WIN7 Ultimate 64 Bit version, stuck for almost a week for me. In the beginning I thought it's the PDF generator's problem but become frustrated after know others and Google can see those Chinese.
    SOME FINDINGS: when choose save to TXT file, wow all the Chinese contents can be saved! but just can not be shown in reader.

    You can download by choosing "File" -> "Download Original File" in Google Doc. Anyway I attach it now.
    https://acrobat.com/app.html#d=tsdG33*6unYtb7IvzO375Q
    It's can be viewed in Online Adobe Reader. It ask me to download "simplified Chinese" font pack the first time I open it on my PC, but still not showing Chinese after installation.
    Can you try open it on your pc? Thanks so much!

  • Can not view primary layout

    I am using Robohelp HTML X5 build 584, with windows XP and
    IE6. I have used robohelp inthe past to generate web pages with
    help info which all worked well. I recently added new pages to the
    project and now it is not working. In the meantime I have
    transferred to a new pc and reinstalled robohelp and activated it,
    so maybe that isthe problem.
    When addinghe new web pages I can generate the primary layout
    but I can not view it. WHenj looking at the files created it is
    missing the main html page that shoudl be the ne that opens, plus
    some of the data and xdata folders inthe skins. I restored from
    backup a few thinjgs which I noticed wer missing but that does not
    seem to help.
    I created a brand new test project in case size was a
    problem, and added about 30 topics. Again it willnot view primary
    layout and does not create the main .htm page.
    Any ideas on how to fix?

    Hi Di W
    This certainly sounds as if RoboHelp isn't correctly
    installed or that you don't have sufficient permissions. I'd be
    checking with my IT staff to see if they recently changed anything
    from a security or permissions perspective. I'm not slamming IT, as
    they do have valid reasons for endlessly tweaking these settings,
    but it's quite common.
    You may also wish to review fellow Adobe Community Expert
    Peter Grainge's site by
    clicking
    this magickal link
    Cheers... Rick

  • Can't view synced photos on iPhone 5S

    The girlfriend recently upgraded her iPhone 4S to the iPhone 5S.
    The 4S was running ios7 and all photos in events and albums synced from iPhoto could be viewed.
    Since she backed up her new 5S from her 4S back up she can only view a fraction of the photos that were visible on the 4S.
    When you go into Settings- General - Usage it says they are all on her phone. Its taking up many Gigabytes of data but when u go into the photo app there are little to no photos in any albums or events.
    I have photo stream off and icould turned off in reagrds to anything photo related. Since they are all on my laptop and not on the cloud i didnt not think that has anything to do with the issue at hand.
    Nothing on the camera roll has been affected just strictly photos synced from iphoto from my laptop.
    Can anyone shine some light on the irritating siutuation???
    or is anyone having any problems like this??????

    You might try syncing again. Each time you sync Photos via iTunes, the photos on the phone are supposed to be set identical to the current photos in the iTunes settings. I would sync as follows: for the first sync, after you have connected the phone and opened iTunes, go to the Photos tab in iTunes and remove the check mark beside "Synch Photos from" and then do the sync. That should remove all of the previously synced photos from the phone. After verifying that has happened you could then change the iTunes settings to select the desired photos and sync again and see if they sync correctly.

  • Can't view output for concurrent request

    I apologize if this is a common error - I tried to research this in the forums but didn't find anything that I haven't already tried. I checked the OPP - it is running with 3 processes - no error in the log that I can see. I checked the profile for the OPP timeout and have increased it....
    I have registered the data definition, registered and associated a template - created the concurrent program but when I try to run it completes with a warning and can't view output. The log states:
    XDO Data Engine Version No: 5.6.3
    Resp: 20420
    Org ID : 81
    Request ID: 2322744
    All Parameters: PO=5026930
    Data Template Code: GISDOSXML
    Data Template Application Short Name: XXGISD
    Debug Flag: N
    {PO=5026930}
    Calling XDO Data Engine...
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Unable to find an Output Post Processor service to post-process request 2322744.
    Check that the Output Post Processor service is running.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    --------------------------------------

    also - I found a note on using the XML Republish Report and I tried it with the report I ran and it erred completely. Here is the log for the republish:
    Oracle XML Publisher 5.6.3
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:683)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Caused by: oracle.xdo.parser.v2.XMLParseException: '=' missing in attribute.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttrValue(NonValidatingParser.java:1556)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttr(NonValidatingParser.java:1461)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttributes(NonValidatingParser.java:1394)
         at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1225)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 more

Maybe you are looking for

  • How to create PO and GR???

    I am a PM guy, can u describe me the whole path to how to create PO for a PR and then GR...as this is MM transaction. Kindly describe with path and details. Thanks Warm regards Rajat

  • ORA-22921 while doing impdp

    hi all, I am doing a table import using impdp and getting the following error. both the Source and Target database have the same Oracle Anyversion 11.2.0.1.0,same Characterset and same IBM AIX 5.3 Servers. Below is the parfile: Userid=system DUMPFILE

  • Strange tags in TaggedText File

    Dear,<br /><br />I was wondering if anybody here could help me with this.<br /><br />I'm trying to script the creation if Tagged Text files.  In my output however i get the following:<br /><br /><cLanguage:><cFont:><ParaStyle:5-titel><cLanguage:Engli

  • What is tha latet version of Firefox compatile with MAC OS 10.4.11

    When I down load the latest version of firefox supposidly compatible with my compute I get a message it is not compatible and I should dowm load the latest version tha tis compatible with my system, 10.4.11 running on a G 5 based machine. NOT INTELL!

  • I cannot select the Paper Size when I try to print with HP Photosmart B110a with Windows 8.1 64bit

    I cannot select the Paper Size when I try to print with HP Photosmart B110a The same printer was working OK with my old PC with OS Windows 7 However I got a new PC with OS Windows 8.1 64bit I installed the new driver for HP Photosmart B110a that I do