Help Needed in GUI. Please Read!!

Hey,
i am doing a element iterator and atrribute extraction from a XML script.
However, I am not able to display the results on a GUI as the results from the abstractions are done in a while loop. Could you advice on how to display the extracted data onto a swing gui? Thanks.
Below is part of the script which the loop runs.
db
while(elementIterator.hasNext()){ //continue to loop.  //element = elements of elementiterator
          x++;
          Element element = (Element)elementIterator.next();
          System.out.println( "\n"+ x + "." + element.getName());
          Iterator ei1 = element.elementIterator();
          while(ei1.hasNext() && element.getName() == ("sequence") ){   //conditions to Loop                                     //details of elements //$NON-NLS-1$
               //System.out.println( "\n"+ element.getName());
               Element element1 = (Element)ei1.next();
               System.out.println( "\n" + element1.getName());          
          for ( Iterator j = element1.attributeIterator(); j.hasNext(); ){       // details of attributes
               Attribute attribute = (Attribute) j.next();
     System.out.println("\t"+attribute.getName() + " = " + attribute.getText() );
     //System.out.println(attribute.getData()); // getData = getText
          Iterator ei2 = element1.elementIterator();
          while(ei2.hasNext()){ // ei2 = element of element1
               Element element2 = (Element)ei2.next();
               System.out.println("\n2."+ element2.getName());          
          for ( Iterator k = element2.attributeIterator(); k.hasNext(); ){       // details of attributes
               Attribute atr = (Attribute) k.next();
     System.out.println(atr.getName() + " = " + atr.getText() );
     // getData = getText
     }// for 2

It is not evident from the code where you are setting the extracted values in the GUI. I can give you a hint that in such cases you should put the extracted valued from the Loop in the GUI using SwingUtilites.invokeLater method.

Similar Messages

  • "HELP" NEED QUESTION ANSWERED, ":PLEASE":

    "HELP" NEED QUESTION ANSWERED, ":PLEASE": OH DEAR GOD SEND SOMEONE TO ME WITH THE ANSWER.

    You need patience. This isn't instant answers, you may have to wait for an answer. Your questions are here - locking this thread.
    https://support.mozilla.com/en-US/questions/859594 <br />
    https://support.mozilla.com/en-US/questions/859665

  • HELP NEEDED!! (please) CS6

    HELP NEEDED!  I have been working for 3 days in a "new doc". Of course i have saved several times (control+s)
    but i do not remember it asking me about file name or folder. Today my comp crashed and i do not find the file. Just found 2 files (a tmp and one with no extension)
    : one with 174 mg and another one with almost 2 gb. Is there any possibility to recover my work? Photoshop did not oppened a thing when i restarted comp
    Thanks in advance

    The TMP file is your Scratch Disk file, and cannot be "recovered" to an Image file.
    Your second file might be almost anything. Though designed more for video files, both G-Spot and MediaInfo (both free file info utilities), CAN read several Still Image file types, and might help point out what that file (the one with no extension) really is. OTOH, as it could be almost anything, it could be that there is no header info in the file, for either to read.
    Good luck,
    Hunt
    PS - Before I did much additional work, I would investigate WHY your computer shut down. If you are on a PC, I would go into Event Viewer, at the time of the shutdown, and see if you can track down any warning, or error messages, in both the System and Applications Tabs. I am pretty sure that a Mac has similar, but have not a clue where, or even what it would be called.

  • URGETN HELP NEEDED! JAVA APPLET READING FILE

    Hi everyone
    I need to hand in this assignment today
    Im trying to read from a file and read it onto the screen, my code keeps showing up an error
    'missing method body, or declare abstract'
    This is coming up for the
    public statuc void main(String[] args);
    and the
    public void init();
    Here is my code:
    import java.io.*;
    import java.awt.*;
    import java.applet.*;
    public class Empty_3 extends Applet {
    TextArea ta = new TextArea();
    public static void main(String[] args);
    public void init();
    setLayout(new BorderLayout());
    add(ta, BorderLayout.CENTER);
    try {
    InputStream in =
    getClass().getResourceAsStream("test1.txt");
    InputStreamReader isr =
    new InputStreamReader(in);
    BufferedReader br =
    new BufferedReader(isr);
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    String line;
    while ((line = br.readLine()) != null) {
    pw.println(line);
    ta.setText(sw.toString());
    } catch (IOException io) {
    ta.setText("Ooops");
    Can anyone help me please?
    Is this the best way of doing this? Once i read the file i want to perform a frequency analysis on the words so if there is a better method for this then please let me know!
    Thankyou
    Matt

    Whether it is urgent or not, does not interest us. It might be urgent for you but for nobody else.
    Writing all-capitals is considered shouting and rude.
    // Use code tags for source.

  • Light aura,glow,beam help needed...please?

    I am almost done with this project but have been stymied on one of the last things I need to do.
    There are four light fixtures in this photo.  Two of them need to have a "glow" around them and one needs beaming light effect.  One of the lights, the round one on the right has the look I am going for regarding the "glow" or "aura." (Although I'd be pleased if I could make it a little bigger.)  The round spotlight fixture to the far left should have the beam of light.  And the oblong light at the rear has a little glow around it but it defintely needs to be bigger.
    I have tried copying the glow around the right round light and playing with it to place around the other lights but it's just not working out.  I found a "beam" of light on the web that I tried to incorporate into the photo.  It seemed that if I could get the color of the "beam" adjusted to the same color of the "glow" around the far right light that would work but I can't seem to get that done either.
    I have tried working with the effects and styles but apparently I'm doing something wrong.  I have tried to find plug-ins to help but I'm lacking the knowledge on how to find the right plug-in because the one I finally installed is not helping me.
    Does anyone have any guideance they can provide me?
    Thank you so much.
    Phoebe

    What you are thinking of doing will invalidate your warranty and as a result cannot be discussed here.
    The only option available to you which won't invalidate your warranty is to send it to a Nokia Care Point which will fix it for you. Unfortunately, it will mean having to send it to Asia.
    I know you have started multiple threads on this issue but telling you anymore then we already have will break the forum rules and be deleted by the moderators. You could however try asking the same question at some of the other unofficial boards.

  • Help needed regarding GUI in swings

    I have n application which extratcs .ear (say abc.ear) in temporary folder. then from there a vector is created from that temporary folder containg the name of contents of .ear
    That vector is used to populate the JSCrollPane and then this scroll pane is set on JSplitPane.
    The problem is it is working fine in jdk1.4. but in jdk1.5 the GUI is not visible.
    Can anyone give some suggestion for that.

    The problem is it is working fine in jdk1.4. but in jdk1.5 the GUI is not visible.Then you have a coding problem. Simply displaying the GUI will not be a problem between versions.
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program" that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Help needed with JDBC - please help! (newbie)

    hi all
    i m new to jdbc
    i have installed MySQL server on my winxp machine
    i used the command:
    mysql -p -u root
    Enter password: ****now when writing a prog i m getting a prob at this piece of code:
    Connection con=DriverManager.getConnection("jdbc:odbc:books","root","root");wot is wrong wid this code?
    please help......
    thanks in advance

    There are about 20 different things that could be wrong a this point; I'm not going to list them all. If you want specific help, you need to post specific information. This is usually done by posting either a stack trace from an exception, or a more complete section of code and a description of the problem and ALL the symptoms. You have all the information on what you've done, we have none of it.
    Instead of trying to diagnose whats wrong with your ODBC setup, I'm going to give you some strong advice; don't use ODBC with JDBC if you can avoid it, and with MySQL you can avoid it. It makes things simpler, less can go wrong, and you don't have to configure a DSN on every machine that you install the program on.
    To use "pure" JDBC without ODBC for MySQl:
    1) download the JDBC driver (you might already have this)
    http://dev.mysql.com/downloads/connector/j/3.1.html
    2) follow the installation instructions
    http://dev.mysql.com/doc/refman/5.0/en/java-connector.html
    In particular, make sure your classpath is set correctly
    3) Here's an example of loading the driver and establishing a connection
    http://dev.mysql.com/doc/refman/5.0/en/cj-connect-with-drivermanager.html
    Note the form of the connection URL,
    "jdbc:mysql://localhost/test?user=monty&password=greatsqldb"
    This is what an URL without ODBC looks like; there is no DSN, which means no DSN has to be configured.
    4) The MySQL database has some built-in security, to prevent malicious connections from outside computers. Solutions to that and other common problems are here:
    http://dev.mysql.com/doc/refman/5.0/en/cj-faq.html

  • Help needed creating GUI simulation

    Hello,
    I have created a 2d image showing a ship on waves. This is done using java2d. I output using JFrame.
    I now want to animate it so it moves along the frame size should remain the same but the ship should
    appear to move on water... I think time will be involved so the ship moves along the x axis...
    please can some one help how to animate this/simulate the ship moving
    currently i only have java2d image of a ship and waves..
    thanks

    moh_1_and_only wrote:
    please can some one help how to animate this/simulate the ship movingThis forum does poorly answering general and broad questions such as these. Also, this forum is not a site for tutorials as it is asking way too much of a volunteer. The best I can recommend is search here and on google for articles on java animation. You will get better answers and help here with more specific questions.
    Another tip: look into the Swing Timer class to help with the animation. You will likely need to use threading as well. If you're not up on this, I suggest the Sun Java Threading tutorials.
    Edited by: petes1234 on Dec 19, 2007 7:47 AM

  • Download help needed...please!

    I purchased Photoshop Elements 12 and Premiere 12 about 3 hours ago and ever since, I have been attempting to download these two programs with zero results. I selected the alternate method as the Akamai method would not download. The alternate method does not even come up...the little wheel turns and turns and never paints the screen.  HELP!

    if you follow all 7 steps (especially steps 1,2 and 3), you can download here: http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html
    and activate with your serial number.
    if you have a problem (error message, unavailable page or you are offered a current adobe version), you did NOT follow the directions.
    the most common problem is failing to meticulously follow directions 1,2 and/or 3 which are needed to add an adobe.com cookie to your computer that allows you to download directly without using the akamai download manager.
    again, follow the directions and you'll have no problem.

  • More help needed with GUI

    When running the code below,
    I get this error;
    Exception in thread "main" java.lang.IllegalArgumentException: adding a window to a container
         at java.awt.Container.addImpl(Container.java:1022)
         at java.awt.Container.add(Container.java:352)
         at ExamScore.main(ExamScore.java:253)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.:
    If I compile it I get no erros.
    Can someone please help me, will be much appreciated.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.text.*;
    import com.jgoodies.forms.layout.*;
    class ExamScore extends JFrame {
    //public static void main(String[] args) {                    
    // ExamScore window = new ExamScore();
    // window.setVisible(true);
         public ExamScore()
              // JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
              // Generated using JFormDesigner Evaluation license - James Petidis
              ExamScores = new JPanel();
              lblHeading = new JLabel();
              btnEnterGrades = new JButton();
              btnReset = new JButton();
              btnAbout = new JButton();
              lblGradeA = new JLabel();
              txtTotalNumberA = new JTextField();
              txtPercentageA = new JTextField();
              lblGradeB = new JLabel();
              txtTotalNumberB = new JTextField();
              txtPercentageB = new JTextField();
              lblGradeC = new JLabel();
              txtTotalNumberC = new JTextField();
              txtPercentageC = new JTextField();
              lblGradeD = new JLabel();
              txtTotalNumberD = new JTextField();
              txtPercentageD = new JTextField();
              lblGradeF = new JLabel();
              txtTotalNumberF = new JTextField();
              txtPercentageF = new JTextField();
              lblTotalScores = new JLabel();
              txtTotalScores = new JTextField();
              lblMaxScore = new JLabel();
              txtMaxScore = new JTextField();
              lblMinScore = new JLabel();
              txtMinScore = new JTextField();
              lblAvgScore = new JLabel();
              txtAverageScore = new JTextField();
              CellConstraints cc = new CellConstraints();
              //======== ExamScores ========
                   ExamScores.setBackground(new Color(255, 255, 204));
                   // JFormDesigner evaluation mark
                   ExamScores.setBorder(new javax.swing.border.CompoundBorder(
                        new javax.swing.border.TitledBorder(new javax.swing.border.EmptyBorder(0, 0, 0, 0),
                             "JFormDesigner Evaluation", javax.swing.border.TitledBorder.CENTER,
                             javax.swing.border.TitledBorder.BOTTOM, new java.awt.Font("Dialog", java.awt.Font.BOLD, 12),
                             java.awt.Color.red), ExamScores.getBorder())); ExamScores.addPropertyChangeListener(new java.beans.PropertyChangeListener(){public void propertyChange(java.beans.PropertyChangeEvent e){if("border".equals(e.getPropertyName()))throw new RuntimeException();}});
                   ExamScores.setLayout(new FormLayout(
                        "3*(default, $lcgap), 43dlu, 2*($lcgap, default), 2*($lcgap, 57dlu), 2*(default, $lcgap), 2*($lcgap, default)",
                        "13*(default, $lgap), 16dlu, $lgap, default"));
                   //---- lblHeading ----
                   lblHeading.setText(" Exam Score Reader");
                   lblHeading.setFont(new Font("Tahoma", Font.PLAIN, 24));
                   ExamScores.add(lblHeading, cc.xywh(9, 1, 5, 1));
                   //---- btnEnterGrades ----
                   btnEnterGrades.setText("Enter Grades");
                   ExamScores.add(btnEnterGrades, cc.xy(9, 5));
                   //---- btnReset ----
                   btnReset.setText("Reset");
                   ExamScores.add(btnReset, cc.xy(11, 5));
                   //---- btnAbout ----
                   btnAbout.setText("About");
                   ExamScores.add(btnAbout, cc.xy(13, 5));
                   //---- lblGradeA ----
                   lblGradeA.setText("Total Number / Percentage Of A's = ");
                   ExamScores.add(lblGradeA, cc.xy(9, 11));
                   //---- txtTotalNumberA ----
                   txtTotalNumberA.setEditable(false);
                   txtTotalNumberA.setEnabled(false);
                   ExamScores.add(txtTotalNumberA, cc.xy(11, 11));
                   //---- txtPercentageA ----
                   txtPercentageA.setEnabled(false);
                   txtPercentageA.setEditable(false);
                   ExamScores.add(txtPercentageA, cc.xy(13, 11));
                   //---- lblGradeB ----
                   lblGradeB.setText("Total Number / Percentage Of B's = ");
                   ExamScores.add(lblGradeB, cc.xy(9, 13));
                   //---- txtTotalNumberB ----
                   txtTotalNumberB.setEnabled(false);
                   txtTotalNumberB.setEditable(false);
                   ExamScores.add(txtTotalNumberB, cc.xy(11, 13));
                   //---- txtPercentageB ----
                   txtPercentageB.setEnabled(false);
                   txtPercentageB.setEditable(false);
                   ExamScores.add(txtPercentageB, cc.xy(13, 13));
                   //---- lblGradeC ----
                   lblGradeC.setText("Total Number / Percentage Of C's = ");
                   ExamScores.add(lblGradeC, cc.xy(9, 15));
                   //---- txtTotalNumberC ----
                   txtTotalNumberC.setEnabled(false);
                   ExamScores.add(txtTotalNumberC, cc.xy(11, 15));
                   //---- txtPercentageC ----
                   txtPercentageC.setEnabled(false);
                   txtPercentageC.setEditable(false);
                   ExamScores.add(txtPercentageC, cc.xy(13, 15));
                   //---- lblGradeD ----
                   lblGradeD.setText("Total Number / Percentage Of D's = ");
                   ExamScores.add(lblGradeD, cc.xy(9, 17));
                   //---- txtTotalNumberD ----
                   txtTotalNumberD.setEnabled(false);
                   txtTotalNumberD.setEditable(false);
                   ExamScores.add(txtTotalNumberD, cc.xy(11, 17));
                   //---- txtPercentageD ----
                   txtPercentageD.setEnabled(false);
                   txtPercentageD.setEditable(false);
                   ExamScores.add(txtPercentageD, cc.xy(13, 17));
                   //---- lblGradeF ----
                   lblGradeF.setText("Total Number / Percentage Of F's = ");
                   ExamScores.add(lblGradeF, cc.xy(9, 19));
                   //---- txtTotalNumberF ----
                   txtTotalNumberF.setEnabled(false);
                   txtTotalNumberF.setEditable(false);
                   ExamScores.add(txtTotalNumberF, cc.xy(11, 19));
                   //---- txtPercentageF ----
                   txtPercentageF.setEnabled(false);
                   txtPercentageF.setEditable(false);
                   ExamScores.add(txtPercentageF, cc.xy(13, 19));
                   //---- lblTotalScores ----
                   lblTotalScores.setText("Total Number Of Scores =");
                   ExamScores.add(lblTotalScores, cc.xy(9, 21));
                   //---- txtTotalScores ----
                   txtTotalScores.setEditable(false);
                   txtTotalScores.setEnabled(false);
                   ExamScores.add(txtTotalScores, cc.xy(11, 21));
                   //---- lblMaxScore ----
                   lblMaxScore.setText("Highest Score:");
                   ExamScores.add(lblMaxScore, cc.xy(9, 23));
                   //---- txtMaxScore ----
                   txtMaxScore.setEditable(false);
                   txtMaxScore.setEnabled(false);
                   ExamScores.add(txtMaxScore, cc.xy(11, 23));
                   //---- lblMinScore ----
                   lblMinScore.setText("Lowest Score:");
                   ExamScores.add(lblMinScore, cc.xy(9, 25));
                   //---- txtMinScore ----
                   txtMinScore.setEditable(false);
                   txtMinScore.setEnabled(false);
                   ExamScores.add(txtMinScore, cc.xy(11, 25));
                   //---- lblAvgScore ----
                   lblAvgScore.setText("Average Score:");
                   ExamScores.add(lblAvgScore, cc.xy(9, 27));
                   //---- txtAverageScore ----
                   txtAverageScore.setEditable(false);
                   txtAverageScore.setEnabled(false);
                   ExamScores.add(txtAverageScore, cc.xy(11, 27));
              // JFormDesigner - End of component initialization //GEN-END:initComponents
         private JPanel ExamScores;
         private JLabel lblHeading;
         private JButton btnEnterGrades;
         private JButton btnReset;
         private JButton btnAbout;
         private JLabel lblGradeA;
         private JTextField txtTotalNumberA;
         private JTextField txtPercentageA;
         private JLabel lblGradeB;
         private JTextField txtTotalNumberB;
         private JTextField txtPercentageB;
         private JLabel lblGradeC;
         private JTextField txtTotalNumberC;
         private JTextField txtPercentageC;
         private JLabel lblGradeD;
         private JTextField txtTotalNumberD;
         private JTextField txtPercentageD;
         private JLabel lblGradeF;
         private JTextField txtTotalNumberF;
         private JTextField txtPercentageF;
         private JLabel lblTotalScores;
         private JTextField txtTotalScores;
         private JLabel lblMaxScore;
         private JTextField txtMaxScore;
         private JLabel lblMinScore;
         private JTextField txtMinScore;
         private JLabel lblAvgScore;
         private JTextField txtAverageScore;
         // JFormDesigner - End of variables declaration //GEN-END:variables
    public static void main(String[] args)
    ExamScore window = new ExamScore();
    // window.setVisible(true); // you can't make a JPanel visible on its own
    JFrame frame = new JFrame("My Designer"); // JFrames can be made visible on their own
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //so the program will end when the JFrame is closed
    frame.getContentPane().add(window); // *** add our JPanel into the JFrame here
    frame.pack(); // size the panel and frame correctly
    frame.setLocationRelativeTo(null); // place frame in the center
    frame.setVisible(true); // show it all
    Note: I have imported the jgoodies.from.layout by adding the com.jgoodies.forms.layout folder into the directory where the .java file is kept. That seems to be working ok!
    Edited by: Petidiz on Sep 10, 2008 8:00 PM

    I made this change to the end of the coding
    ExamScore window = new ExamScore();
    // window.setVisible(true); // you can't make a JPanel visible on its own
    JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));//("My Designer"); // JFrames can be made visible on their own
    //panel.setDefaultCloseOperation(JPanel.EXIT_ON_CLOSE); //so the program will end when the JFrame is closed
    //panel.getContentPane().add(window); // *** add our JPanel into the JFrame here
    //panel.pack(); // size the panel and frame correctly
    // panel.setLocationRelativeTo(null); // place frame in the center
    panel.setVisible(true); // show it all
    But still no display, if you could help me with the coding to get it correct I would be very apprecitive..i am a complete noob in java.

  • Help needed with gui

    Hi,
    I am not too good with java gui.
    In a method called createGUI I create a panel with a few text fields etc.
    Then in the same class but another method I set a textArea to "blabla".
    Then from a subclass I try to set that same text to something else but the result is I get a copy of the whole thing (panels with textareas etc.) with the text set to what I wanted, but underneath that I still have the old GUI with the old text "blabla".
    1) I don't get why this happens, why doesn't it set the text in my old gui to the new text?
    2) I set a checkpoint in the createGUI method and it's never invoked after the first time so I don't get how is the GUI repainting itself. Must be soemthing I don't know about GUI programming.
    Can anybody help?
    Thx,
    A.

    Hello,
    Have you tried the repaint() method of component?
    Thanks,
    Jeff.

  • My WRT54G2 will Not Work HELP NEEDED !! PLease Help

    Hey i Have a WRT54G2 and it has worked Flawlessly for about a Year... One Day i Wake u To No Connection coming From my Linksys ..... on the Wirless Connections Pop up there is a Message saying  " Information Sent over this network might be visable to others" I Have Tried Everything and Anything to Figure Out or Fix the Problem But NOthing i Do Works ... I am Really Out of Options ,,,,, Someone PLeaseeeee HElllllp Meeeee !!!!1 Aaaahhhhhhhhhhhhhh 

    In this case try to change the power socket. Try to do 30/30/30 hard reset. The following procedure will clear out the NVRAM and set Router back to default values:
    ~~ With the unit powered on, press and hold the reset button on back of unit for 30 seconds
    ~~ Without releasing the reset button, unplug the unit and hold reset for another 30 seconds
    ~~ Plug the unit back in STILL holding the reset button a final 30 seconds....
    Then make the physical connectivity. Here are the steps for the physical connectivity for the router:
    The router’s power adapter needs to be plugged to your router and into an available power outlet.
    If using a wired connection, the first Ethernet cable needs to be plugged to the computer’s LAN port into any of the router’s blue numbered Ethernet ports.
    The second Ethernet cable should be plugged to the modem’s Internet port and the other end into the router’s yellow Internet port.
    Ensure that you have no firewall enabled that may prevent the router from being detected.
    Then make the manual settings according to the ISP setup. Here is the link for setting up a Linksys router with Cable Internet service:
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r...
    Here is the link for setting up a Linksys router with DSL Internet service: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=20ee1457387f40178cd5f41d4b585db4_3687.xml&pid=80&r...

  • Help Needed urgently ! please reply

    hey guys
    errrrrm had my ipod nano 2GB since xmas 2005
    its now may and today my screen has become ******** big time, the screen has become split into two different bars, both horizontal and vertical. also my ipod earphones have become faulty and broken.
    I would return this product, but as a special present i had it personalised. so therefor i may not be able to return to apple store uk. What i would like to know is if my ipod is 1) is my warranty still available
    2) is it possible to return the ipod
    3) and also if i return it, can i get it fixed, or have a new one delivered. i know that other shops do do this service for free, and would i have to pay for any repairs made?
    Thanks for your help guys, and i hope to hear from you soon.
    P.S i dont check this site often as i am still at school, so any information that you have could you please email on payney-2k6 at hotmail.com
    Many Thanks once again guys and girls
    Tom Payne
    packard bell   Windows XP Pro  

    It sounds like a hardware problem. Assuming it's still under warranty, you can either take it to an Apple store, or file a service request online here;
    http://depot.info.apple.com/ipod/
    Good luck.
    Cheers!
    -Bryan

  • Scripting help needed... please

    Help,
    I know this is a fairly basic scripting question, but for some stupid reason I just can't seem to get it.
    I am creating a DVD that has 2 different menus.
    There are only one set of tracks, but 2 different menus. What I want is something that tells the track to return to menu 1 if it played from menu 1 or to go to menu 2 if it played from menu 2
    Help please.
    Thanks

    Hi
    I think this is what you are looking for: * Multiple Menus with GPRM based button jumps * (Thanks Hal!)
    Hope that helps !
      Alberto

  • Help needed : Spry Blogspot RSS Reader

    I am trying to build a RSS feed reader that pulls the content
    from blogspot.
    If I pull the feed via
    http://??????.blogspot.com/feeds/posts/default?alt=rss
    (rss 2.0) I can see the schema. I can also see all the columns when
    i go to the Spry table generator. Unfortunately I get nothing when
    i load the page in Firefox or Safari. Any ideas why? Has anyone
    gotten this to work?
    Same exact thing happens when I try and pull it as an Atom
    feed:
    http://??????.blogspot.com/feeds/posts/default
    I've been using Spry for quite a few things and have been
    loving it, but this one has me stumped. Any help would be greatly
    appreciated.

    Thanks for the prompt answer. I had actually just come across
    it. I am using javascript (ASP) to create a proxy. works great now.
    I'll put the code in if anyone wants to use it:
    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <script language="JavaScript" runat="server">
    Response.ContentType = "text/xml";
    Response.Charset="utf-8";
    try
    // rssURL is set to the path RSS feed...
    var rssUrl = "
    http://???????.blogspot.com/feeds/posts/default?alt=rss";
    var xml = new ActiveXObject("MSXML2.DomDocument.4.0");
    xml.setProperty("ServerHTTPRequest", true);
    xml.async = false;
    xml.validateOnParse = true;
    xml.load(decodeURIComponent(rssUrl));
    // if something goes wrong, we'll send out an XML-formatted
    error response.
    if (xml.parseError.errorCode != 0)
    xmlError = new Error();
    xmlError.Message = "<?xml version=\"1.0\"
    encoding=\"utf-8\"?>";
    xmlError.Message += "<error>";
    xmlError.Message += "<description>";
    xmlError.Message += "Error parsing feed: " +
    xml.parseError.reason;
    xmlError.Message += "</description>";
    xmlError.Message += "</error>";
    throw(xmlError);
    // Handily, we can simply save the XML to the Response
    stream in ASP.
    xml.save(Response);
    catch(e)
    Response.Write(e.Message);
    </script>

Maybe you are looking for

  • Fax won't work

    Hi,       just had to replace my officejet pro 8600 less than 6mths old because it decided to not turn on, replaced it with  HP OFFICEJET PRO 8620 set itup as per instructions to a "T" fax was working fine for the first month now all of a sudden i ca

  • Exchange rate difference screen

    Forum, Could i ask for some advice regarding the exchange rate differences screen. I currently have a scenario where i have 2 stock accounts. One is USD$ the other is EURu20AC. These two stock accounts are normally revalued annually. The year end is:

  • Why can't I play .mov files on my IPAD?

    The file plays ok on IMAC. Is there an app I can download?

  • Single Horizontal Line in JTable

    Hello, is there a way to draw a single horizontal (colored) line within a JTable? (reason: we want to mark a seperation of the upper and lower part of the table). I dont mean the showHorizontalLines feature. Example: the JTable contains 100 rows, row

  • How to configure ALE/IDOC in  nace for V3.

    Hi, Please let me  know how to configure ALE/IDOC output type in Nace and how to configure the message outputs.         I require the steps to configure the above.          Screen shots will also be helpful. Regards,