Opening JFrames as objects one at a time

I have created a program that generates numbers puts them on a JFrame via labels and buttons and closing on the click of the correct answer.
Example of output
......................... *3*
1 + 2 + = ........ *2*
.........................*5*
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class QuestionFrame implements ActionListener
     JFrame jf;
     JButton [] but = new JButton[3];
     int randomPlace = (int)(Math.random()*3);
     QuestionFrame (char level, String picNum)
          Numbers N = new Numbers(level);
          jf = new JFrame ("Question");
          jf.setLayout(null);
          jf.setBounds (50, 200, 700,240);
          jf.setResizable(true);
               JLabel [] lbl = new JLabel[5];     
               lbl[0] = new JLabel (N.num1());
                 lbl[1] = new JLabel ("+");
                 lbl[2] = new JLabel (N.num2());
                 lbl[3] = new JLabel ("=");
                 for(int h = 0; h < 4; h++)
                      lbl[h].setBounds (70*(h+1), 80, 30, 30);
                 String  [] txt = new String [3];
                 txt[0] = N.falseAns1();
                 txt[1] = N.falseAns2();
                 txt[2] = N.falseAns3();
                 txt[randomPlace] = N.answer();
                 for(int i = 0; i < 3; i++)
                    but= new JButton (txt[i]);
               for(int j = 0; j < 3; j++)
                    int Y = ((j*60)+20);
                    but[j].setBounds(400, Y, 70, 40);
               for(int l = 0; l < 3; l++)
                    but[l].addActionListener(this);
               Container con = jf.getContentPane ();
               con.setLayout(null);
               for(int k = 0; k < 3; k++)
                    con.add(but[k]);
               for(int l = 0; l < 4; l++)
                    con.add(lbl[l]);
               jf.setVisible(true);
     public void actionPerformed (ActionEvent check)
          if (check.getSource () == but[randomPlace])
               jf.dispose();
     public static void main (String[]args)
          char level = (JOptionPane.showInputDialog("Type")).charAt(0);
          QuestionFrame [] qf = new QuestionFrame[10];
          for(int i = 0; i < 10; i++)
               qf[i] = new r(level, i+1+"");
}Just in case you need it here's the Numbers and ImproveNumbers classes I've madepublic class Numbers
     int sumNum1,      sumNum2,      Answer;
     int falseAns1,      falseAns2,      falseAns3;
     public Numbers(char givenLevel)
          int SumNum1 = 0;
          int SumNum2 = 0;
               switch(givenLevel)
               case '1':
                         SumNum1 = (int)(Math.random()*(10+1));
                         SumNum2 = (int)(Math.random()*(9+1));
                         break;
               case '2':
                         SumNum1 = (int)(Math.random()*(40+1));
                         SumNum2 = ((int)(Math.random()*(5+1))+5);
                         break;
               case '3':
                         SumNum1 = (int)(Math.random()*(100+1));
                         SumNum2 = ((int)(Math.random()*(15+1))+5);
                         break;
          int trueAnswer = SumNum1+SumNum2;
          int[] falseAnswer = new int[3];
          for(int j = 0; j <3; j++)
               falseAnswer[j] = ((int)(Math.random()*(15))+trueAnswer)-7;
               if(falseAnswer[j] < 0)
                    falseAnswer[j] = falseAnswer[j]*(-1);
               ImproveNumbers IN = new ImproveNumbers(trueAnswer, falseAnswer[0], falseAnswer[1], falseAnswer[2]);
               falseAnswer[0] = IN.fixNum1();
               falseAnswer[1] = IN.fixNum2();
               falseAnswer[2] = IN.fixNum3();
               sumNum1 = SumNum1;
               sumNum2 = SumNum2;
               Answer = trueAnswer;
               falseAns1 = falseAnswer[0];
               falseAns2 = falseAnswer[1];
               falseAns3 = falseAnswer[2];
     String num1()
               return ""+sumNum1;
     String num2()
               return ""+sumNum2;
     String answer()
               return ""+Answer;
     String falseAns1()
               return ""+falseAns1;
     String falseAns2()
               return ""+falseAns2;
     String falseAns3()
               return ""+falseAns3;
public class ImproveNumbers
     int improvedNum1;
     int improvedNum2;
     int improvedNum3;
     ImproveNumbers(int Answer, int receivedNum1, int receivedNum2, int receivedNum3)
          if(Answer == receivedNum1)
               receivedNum1 = receivedNum1+1;
          for(int p = 0; p < 2; p++)
               if(Answer == receivedNum2)
                    receivedNum2 = receivedNum2+1;
               if (receivedNum1 == receivedNum2)
                    receivedNum2 = receivedNum2+1;
          for(int p = 0; p < 10; p++)
               if(Answer == receivedNum3)
                    receivedNum3 = receivedNum3+1;
               if (receivedNum1 == receivedNum3)
                    receivedNum3 = receivedNum3+1;
               if (receivedNum2 == receivedNum3)
                    receivedNum3 = receivedNum3+1;
          improvedNum1 = receivedNum1;
          improvedNum2 = receivedNum2;
          improvedNum3 = receivedNum3;
     int fixNum1()
               return improvedNum1;
     int fixNum2()
               return improvedNum2;
     int fixNum3()
               return improvedNum3;
I want each questionFrame to open one at a time, as the
preceding one is answered correctly and disposes of itself.
I've search for answers and tried hundreds of combination but I
don't seem to click it.
code should run if copied, but
please don't change too much
or give too complicated code!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Got the hint the first time. But I don't have much time and I'm not too familiar with JDialogs. I am still working on the whole program's appearance and using frames, buttons and labels are easy.
I know I'm nagging, but I also need advice on making a thread sleep.
I have a JFrame with multiple buttons. Certain of them don't work yet. (Not done with them)
If I click on a buttton a frame of warning should appear, but disappear after a Thread.sleep(2000) by using my own void for the warning frame.
I think the problem is my try/catch. The sleep happens but the closing void takes place first?
Here are bits:
public void actionPerformed (ActionEvent close)
          if(close.getSource () == closeBtn)
               ExitVerify EV = new ExitVerify();
          if(close.getSource () == but[0])
                    Unavailable     msg = new Unavailable();
          try
                    Thread.sleep(4000);
                    msg.closeNotice();          
               catch(InterruptedException e)
public void closeNotice()
          jf.dispose();
     }

Similar Messages

  • Help displaying Instructional Objectives 1-at-a-time using mouse down on a button on one screen.

    I am brand new to Captivate 6 and have encountered my first coding problem. I have six instructional objectives and would like to display them one at a time with a mouse click on a button. I would like some guidance either with making what I a trying to do work or in the alternative telling me what I should be doing instead. Here is what I tried to do.
    1. I created 6 instructional objectives on a single screen.
    2. Then I created a user variable "increment_objectives." It's starting value was set to 0.
    3. Next, I built an advanced conditional action. It contained seven conditional  statements, each built the same way. The purpose of the seventh was to move to the next slide after all instructional objectives were viewed.
    The advanced conditional action IF statement was:  If increment_objectives = x  then (where x varied from 0 to 7)
    The ACTION statements contained the names of the six instruction objectives (objective_1 through objective_6) and these were either shown or hidden, based upon the increment_objectives value.
    4. This advanced conditional action was attached to the enter frame on the slide and "no action" was on the exit frame on the slide.
    5. On a Button I attached an increment value that added 1 to increment_objectives variable.
    6. I set all frame objects to "duration of slide" turning off all timing increments.
    I had expected that this would increment the increment_objectives variable when the mouse was clicked and that the advanced actions conditional statements would be interpreted and display the objectives one at a time. How wrong I was. Not only did they not display, but after a few seconds, the screen would flip to the next slide.
    Can you offer me some help?
    Rod Wolford

    Hi Rod
    What did you use to trigger calling the Advanced Action? From what you just described, there is nothing to trigger the action. At least beyond the initial triggering upon entering the slide.
    Normally you want a Button or Click Box or other trigger to call the Advanced Action after each interaction.
    Hope this helps a smidge... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Open two GUI( JFrame) simultaneously for one application

    Can we open two GUI( JFrame) simultaneously for one application at tha same time.if yes why ?and if no why?

    OK, its really simple, basically, you need a desktop frame to stor all the other frames and then you just pop them in, from a new class each time.
    Here's the code from the demo I learnt it from:
    (The demo itself)
    import javax.swing.JInternalFrame;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    * InternalFrameDemo.java requires:
    * MyInternalFrame.java
    public class InternalFrameDemo extends JFrame
    implements ActionListener {
    JDesktopPane desktop;
    public InternalFrameDemo() {
    super("InternalFrameDemo");
    //Make the big window be indented 50 pixels from each edge
    //of the screen.
    int inset = 50;
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    setBounds(inset, inset,
    screenSize.width - inset*2,
    screenSize.height - inset*2);
    //Set up the GUI.
    desktop = new JDesktopPane(); //a specialized layered pane
    createFrame(); //create first "window"
    setContentPane(desktop);
    setJMenuBar(createMenuBar());
    //Make dragging a little faster but perhaps uglier.
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    protected JMenuBar createMenuBar() {
    JMenuBar menuBar = new JMenuBar();
    //Set up the lone menu.
    JMenu menu = new JMenu("File");
    menu.setMnemonic(KeyEvent.VK_D);
    menuBar.add(menu);
    //Set up the first menu item.
    JMenuItem menuItem = new JMenuItem("New");
    menuItem.setMnemonic(KeyEvent.VK_N);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("New");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    //Set up the second menu item.
    menuItem = new JMenuItem("Quit");
    menuItem.setMnemonic(KeyEvent.VK_Q);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("Quit");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    return menuBar;
    //React to menu selections.
    public void actionPerformed(ActionEvent e) {
    if ("New".equals(e.getActionCommand())) { //new
    createFrame();
    } else { //quit
    quit();
    //Create a new internal frame.
    protected void createFrame() {
    MyInternalFrame frame = new MyInternalFrame();
    frame.setVisible(true); //necessary as of 1.3
    desktop.add(frame);
    try {
    frame.setSelected(true);
    } catch (java.beans.PropertyVetoException e) {}
    //Quit the application.
    protected void quit() {
    System.exit(0);
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    InternalFrameDemo frame = new InternalFrameDemo();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Display the window.
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    Myinternalframe.java:
    import javax.swing.JInternalFrame;
    import java.awt.event.*;
    import java.awt.*;
    public class MyInternalFrame extends JInternalFrame {
    static int openFrameCount = 0;
    static final int xOffset = 30, yOffset = 30;
    public MyInternalFrame() {
    super("Document #" + (++openFrameCount),
    true, //resizable
    true, //closable
    true, //maximizable
    true);//iconifiable
    //...Create the GUI and put it in the window...
    //...Then set the window size or call pack...
    setSize(300,300);
    //Set the window's location.
    setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
    You should be able to tell from that

  • I got a new Macbook pro in March and transferred all of my old files into the new macbook from my old one. But ever since then, my iPhoto just does not open up. It says 'error' every time I try to open it, but I am still able to attach the iPhotos saved

    I got a new Macbook pro in March and transferred all of my old files into the new macbook from my old one. But ever since then, my iPhoto just does not open up. It says 'error' every time I try to open it, but I am still able to attach the iPhotos saved to emails. Help! How do I get my iPhoto back?

    Thanks, Sig.
    The old computer is a 2.6 Ghz Intel Core 2 Duo
    The new one is a 2.3 GHz intel core i7
    In going over this, thanks to "tallking it out" with you, I did discover the Text Edit problem.  Because I've still been unable to get the new computer text size (fonts or whatever) to match the old computer, I did not notice that the curser is now different--the line midway down the curser has to be placed on the line I am working upon, otherwise the edits go elsewhere on the page.  Now, with a bit of difficulty, I am able to get Text Edit to work correctly.
    If you have any ideas as to why my menu bar and Text Edit type are still so slow, I'd love to have them. 
    (I went through the process you suggested earlier, re my Trackpad preferences, and found no improvement.)

  • File open on more than one computer at a time

    I maintain a network of four Macs (Cube, G4 Tower, Mini, and G5 Tower) all running OS 10.4.11. Recently two people working on the network discovered that they both had a certain file open at the same time. In order to determine the extent of the problem, on each computer I created and kept open a TextEdit file. I then attempted to open each TextEdit file from the three computers on which the file was not stored. To my dismay I received no error or warning message of any sort. I was able to open all four files on all four computers at the same time!
    Each of the computers has a single user, and each computer is logged into the other computers as the user on that computer (i.e., each guest is logged in as the host). I wonder if that might be the source of the trouble.
    I never noticed any file being open on more than one computer at a time when all the computers were running 10.3.9, only after I upgraded to 10.4.
    Any ideas?

    This is absolutely standard behavior and I don't expect this to change any time soon.
    Let me try to explain based on a model of a file stored on Server1 and being accessed by Client1 and Client2:
    Here's what's happening:
    Client1 connects to the server and opens the file for reading.
    Client1 reads the file and closes it
    Client2 connects to the server and opens the file for reading.
    Client2 reads the file and closes it
    Since Client1 closed the file there's nothing to indicate to Client2 that the document is in use anywhere else because, in fact, it isn't.
    There's nothing on the server that knows whether Client1 opened the file to look at it, to copy it, to back it up to some other media or to actually edit it. It is only that last step that should prevent another client from opening the file.
    If you think about it, that makes perfect sense. If you copy the file over the network to Client1 you do not want the server to think that Client1 has an exclusive hold on that file and to prevent Client2 from opening it.
    The only time the file is in use is a) when the file is being read, and b) when the file is being saved. When it's just being viewed the client doesn't have an active hold on the file.
    The actual fix here is for the application to set a flag that the file is in use and for the server to honor that flag. It's supported by the networking protocols but it's rarely implemented in applications except those that expect a multi-user setup.

  • Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized.

    Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized. I see how to do it one at a time with the "download" button in Dropbox but that's so cumbersome for lots of photos.

    Have you tried these avenues?
    Contact us - Dropbox
    Dropbox Help Center
    Dropbox Forums
    Submit a help request - Dropbox
    OT

  • Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Just to address the last point: check your History menu to see whether you have the Restore Previous Session option and use that if you can. If that is grayed out or doesn't restore everything, check the Recently Closed Windows and Recently Closed Tabs lists for other pages.
    The unwanted window may be generated by an add-on. Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any improvement?
    Here are some other things to check:
    (1) user.js file that changes Firefox startup behavior and overrides your preferences. This article describes how to track that down and delete it if you have one: [[How to fix preferences that won't save]].
    (2) Possible hijacked shortcut. Check the "target" of the desktop icon you use to start Firefox to see whether it lists the unwanted page. To do that:
    right-click the icon > Properties > Shortcut tab
    For 64-bit Windows 7, the Target should be no more and no less than this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    (3) Possible undisclosed bundle items. If you have installed any free software recently, check your Windows Control Panel, Uninstall a program for surprises. If you click the "Installed on" column head to group by date, it is easier to spot bundled junk. Remove everything suspicious or unrecognized.
    (4) Supplemental clean up scans. Our support article lists tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Hopefully that cures it.

  • I want to print several attahments at once without opening them one at a time.

    What I am trying to accomplish is this,
    I'm trying to at one time print several attachments at one time without opening them one at a time.
    They are receipt from our supplier so we receive an average of twenty a day it will be so time consuming to have to open each one then print everyday.

    The best you may be able to do is create a filter that automatically or manually detaches or saves the attachments to an external folder (for that, you need the [https://addons.mozilla.org/en-US/thunderbird/addon/filtaquilla/ FiltaQuilla] add-on), and then you could select the attachments in Explorer and print them.
    If the receipts were displayed inline or in the message body, you could set up FiltaQuilla to Print the messages, and to have the printing done in the background without having to OK each message, the [https://addons.mozilla.org/en-US/thunderbird/addon/printingtools/ Printing Tools] add-on would help.
    But for only 20 messages per day, it may not be worth going to the trouble of setting up this method.

  • Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    List and table controls -> listbox..is that what you are thinking of?
    The listbox presents the user with a list of options, and you can set it to only accept one selection at a time...Adding new data to the list can not be done directly by the user but if you make e.g. a text control and a button you can programatically insert new objects described in the text box when the button is pressed...(see example).
    If you need more than one column you have the multicolumn listbox. If you want the users to write new entries directly yu can use a table and read selected cells using it's selection start property to read what cell has been selected.
    MTO
    Attachments:
    Listbox_example.vi ‏34 KB

  • Why am I unable to open multiple tabs in the browser? It all of a sudden refused to let me open more than one at a time.

    While on the internet, I tried to open two tabs, but it won't open any more for me. I tried right clicking and opening that way, but it won't let me. I removed Mozilla Firefox from my computer and re-downloaded it, but it still won't let me open more than one tab. It's happened to two of my computers now, and nothing works for either one except opening in safe mode every time.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Have 3 sites on line and need to update them but each time i click on the site icon it opens always the same one... and i cannot access the other 2....

    Have 3 sites on line and need to update them but each time i click on the site icon it opens always the same one... and i cannot access the other 2....

    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    You can download an already compiled version with this link: iWeb Switch Domain.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • HT5625 I changed my email because I could not open my other one but every time I try to download something it asks for me to verify the other email can u please help me

    I changed my email because I could not open my other one but every time I try to download something it asks for me to verify the other email can u please help me

    i have the exact same problem and when i tried to contact apple support they didn't help me at all so i'm going to try one more time.

  • Why won't Garage band let you open more than one project a time..

    Why won't Garageband let you open more than one project a time???? If thats the way its is set up...that is really lame. Even the worst audio programs allow you to run a few projects at a time.
    I recorded a gig the other night... then I dumped the whole set on to one track. When I wanted to copy and paste individual songs into their own project it made me close the current project. Is there a way around this???
    Joe

    Heh, heh. Yes, this is true. Alas... BUT, if you want to compare one project with another, it can be done.
    There is another advantage to making another copy of GarageBand. I created a copy and call it "GarageSymphony" that contains all my instrument specific icons for orchestral packs. This way I do not mess up the GarageBand application.
    I would not be surprised to find multiple windows become available in GB4. I was more than pleased to find this change in iMovie 6.

  • Can only move object one axis at a time in PageMake 5

    I must have hit some sort of short cut. I can only move an object one way at a time. Also rectangle tool only draws squares. Any help is appreciated. TIA

    Thank you for the reply. Yes it is a old version and using an old Op system, Win98. Doesn't make it useless but will add a lot of extra time. Won't let me move object freely, only one direction at a time. Also won't draw rectangles or ovals. Not sure if I put some constraint on by accident. Thanks again for the help.

  • Trouble opening/importing 3D object

    I've worked with a 3D item this way before, no problem. Today I'm trying to open a 3D object in a new layer, using a SketchUp item that has been saved as both .dae and .kmz files. Neither one will open...the turning timer just keeps on turning...and turning...etc. The file is only 40k for the .kmz file.
    I'm running a dual 2.3 GHz PPC G5 with 7.5 gigs RAM, and GeForce 6600 graphics chip. Shouldn't be having this problem.
    Any answers out there? Thanks in advance!

    Trying saving the file out in 3DS format. It is possible the collada format is not being parsed/opend correctly.
    We fixed a lot of these issues in CS5 (but requires Intel CPU) and working with Google.

Maybe you are looking for

  • How can I add a 4th email address to a Contact?

    I sync my iPhone with Google Contacts.  On my Mac Pro using Gmail I can keep adding personal email addresses, however, my iPhone is only allowing 3 per contact.  Is there a way of adding a 4th email address?

  • How to achieve the results by Query ??

    Hello Guys, I have couple tables which I need to join to get the result....This is what is in the tables... CList Table CID, Name A, ABC B,CDE C,JFK JList Table JID, Name 1, Something 2, Another 3, Else 4, Should be something JOb_2_Courses JobID, Cou

  • Snow Leopard Reinstall Issue

    So I'm selling my early 2009 Mac Mini (Core 2 Duo 2.0 GHz, 2GB Ram, 120 GB HD). First, I backed up and formatted my Macintosh HD, and then I tried to reinstall the OS numerous times. I tried to "Erase and Install" from the Leopard install disk, then

  • I deleted my Trash - How can I rebuild my Datas

    I started my Mac and i didnt find the Document Folder. I looked in my Trash and I founded, than I moved the Folder via Drag and Drop to Finder back. I deleted my trash and in this moment he deleted also my Document Folder with all my Documents. How c

  • How to find Oracle Seeded Responsibility

    Is this understanding correct that all the rows in fnd_responsibility_tl table with created_by=1 are rows seeded by Oracle, i.e. they are Oracle seeded responsibilities? Are there any other responsibilities as well which could be seeded?