Applet won't display in Internet Browser.

import javax.swing.JTextField;
import java.util.ArrayList;
import javax.swing.*;
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class Quiz extends JApplet implements ActionListener {
    int AnswersCorrect=0;
    JTextField textfields[] = new JTextField[18];
    JLabel labels[] = new JLabel[18];
    JLabel score = new JLabel();
    JLabel questions[] = new JLabel[18];
    JFrame frame = new JFrame();
    JScrollPane scroller = new JScrollPane(frame);
    JButton button = new JButton("Check Answers");
    GridLayout layout = new GridLayout();
    //ArrayList that will contain the User's Answers
    ArrayList<String> UsersAnswers = new ArrayList<String>(18);
    //Array of Strings that are the correct answers for the quiz
    String[] answers={
    "Answer 1 goes here",
    "Answer 2 goes here",
    "Answer 3 goes here",
    "Answer 4 goes here",
    "Answer 5 goes here",
    "Answer 6 goes here",
    "Answer 7 goes here",
    "Answer 8 goes here",
    "Answer 9 goes here",
    "Answer 10 goes here",
    "Answer 11 goes here",
    "Answer 12 goes here",
    "Answer 13 goes here",
    "Answer 14 goes here",
    "Answer 15 goes here",
    "Answer 16 goes here",
    "Answer 17 goes here",
    "Answer 18 goes here",};
public void init() {
//Makes the components
for(int ii=0;ii<questions.length; ii++){
    textfields[ii] = new JTextField();
    questions[ii] = new JLabel();
    textfields[ii].setColumns(50);
    questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
    frame.add(questions[ii]);
    frame.add(textfields[ii]);
button.addActionListener(this);   
frame.add(button);
frame.add(score);
frame.setLayout(layout);
this.add(frame);
//frame.add(scroller);
frame.setVisible(true);
this.setVisible(true);
frame.setSize(500,500);
this.setSize(500,500);
public void actionPerformed(ActionEvent e){
//checks to see if button was pressed
if(e.getSource()==button){
    for(int ans=0; ans<questions.length; ans++){
    //Adds answers to the arraylist so that they can be checked
    UsersAnswers.add(textfields[ans].getText());
    //Checks for right answers
    for(int foo=0; foo<questions.length;foo++) {
        if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
        textfields[foo].setText("Correct");
        textfields[foo].setEditable(false);
        AnswersCorrect++;
         else {
        textfields[foo].setText("Incorrect");
        textfields[foo].setEditable(false);
//Displays the score
score.setText(AnswersCorrect + "/18");
}When I run this applet in a browser, I get this error:
Java Plug-in 1.6.0_13
Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM
User home directory = C:\Users\Matthew
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
l: dump classloader list
m: print memory usage
o: trigger logging
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
x: clear classloader cache
0-5: set trace level to <n>
java.lang.IllegalArgumentException: adding a window to a container
     at java.awt.Container.checkNotAWindow(Unknown Source)
     at java.awt.Container.addImpl(Unknown Source)
     at javax.swing.JViewport.setView(Unknown Source)
     at javax.swing.JScrollPane.setViewportView(Unknown Source)
     at javax.swing.JScrollPane.<init>(Unknown Source)
     at javax.swing.JScrollPane.<init>(Unknown Source)
     at Quiz.<init>(Quiz.java:16)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
     at java.lang.reflect.Constructor.newInstance(Unknown Source)
     at java.lang.Class.newInstance0(Unknown Source)
     at java.lang.Class.newInstance(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Exception: java.lang.IllegalArgumentException: adding a window to a container
I am using this html code to run my applet:
*<html>*
*<head>*
*<title>Lets take a Quiz*
*</title>*
*</head>*
*<body>*
*<applet code="Quiz.class" width=500 height=500></applet>*
*</body>*
*</html>*
Does anyone know what is wrong?

Here is what I have now. I think I changed the things you told me to (I am probably wrong), but it is still not working.
import javax.swing.JTextField;
import java.util.ArrayList;
import javax.swing.*;
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class Quiz extends JApplet implements ActionListener {
    int AnswersCorrect=0;
    JTextField textfields[] = new JTextField[18];
    JLabel labels[] = new JLabel[18];
    JLabel score = new JLabel();
    JLabel questions[] = new JLabel[18];
    JFrame frame = new JFrame();
    JScrollPane scroller = new JScrollPane();
    JButton button = new JButton("Check Answers");
    GridLayout layout = new GridLayout();
    JPanel panel = new JPanel();
    //ArrayList that will contain the User's Answers
    ArrayList<String> UsersAnswers = new ArrayList<String>(18);
    //Array of Strings that are the correct answers for the quiz
    String[] answers={
    "Answer 1 goes here",
    "Answer 2 goes here",
    "Answer 3 goes here",
    "Answer 4 goes here",
    "Answer 5 goes here",
    "Answer 6 goes here",
    "Answer 7 goes here",
    "Answer 8 goes here",
    "Answer 9 goes here",
    "Answer 10 goes here",
    "Answer 11 goes here",
    "Answer 12 goes here",
    "Answer 13 goes here",
    "Answer 14 goes here",
    "Answer 15 goes here",
    "Answer 16 goes here",
    "Answer 17 goes here",
    "Answer 18 goes here",};
public void init() {
//Makes the components
for(int ii=0;ii<questions.length; ii++){
    textfields[ii] = new JTextField();
    questions[ii] = new JLabel();
    textfields[ii].setColumns(50);
    questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
    panel.add(questions[ii]);
    panel.add(textfields[ii]);
button.addActionListener(this);   
panel.add(button);
panel.add(score);
panel.setLayout(layout);
scroller.add(panel);
this.add(frame);
frame.getContentPane().add(scroller);
panel.setVisible(true);
frame.setVisible(true);
this.setVisible(true);
frame.setSize(500,500);
this.setSize(500,500);
public void actionPerformed(ActionEvent e){
//checks to see if button was pressed
if(e.getSource()==button){
    for(int ans=0; ans<questions.length; ans++){
    //Adds answers to the arraylist so that they can be checked
    UsersAnswers.add(textfields[ans].getText());
    //Checks for right answers
    for(int foo=0; foo<questions.length;foo++) {
        if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
        textfields[foo].setText("Correct");
        textfields[foo].setEditable(false);
        AnswersCorrect++;
         else {
        textfields[foo].setText("Incorrect");
        textfields[foo].setEditable(false);
//Displays the score
score.setText(AnswersCorrect + "/18");
}

Similar Messages

  • Safari won't display pdf in browser and I do not have adobe reader or ply ins

    I've been checking the posts and all the discussions/questions and answers but the only thing I have been able to find about problems displaying pdfs in browser have to do with adobe plug-ins. I never had adobe reader and checked in /library/internet plug ins and never found those plug ins. I then downloaded and installed adobe reader X and got rid of the plug ins in the library and that still has not solved the problem. Whenever I click on a link for a pdf it just automatically downloads the pdf. I just want to view the pdfs in the browser.
    Thanks for the help

    Hi,
    You probably won't have to reinstall Safari. Two things you can try. If you open Adobe Reader and go into the 'Internet' section of its preferences, you should be able to disable the browser plug-in. Some times that alone isn't enough, in which case, browse to HD/Library/Internet Plug-ins/ and move the Adobe plugin out of the folder. Restart Safari for the changes to take effect.
    Yang

  • Safari won't display pdf in browser

    Posted before in wrong forum.
    I am really sorry if this has been posted before, but I have been searching the forums and can't find an answer to it. I was also looking for the FAQ article about this that Apple says is an answer, but can't find that either.
    Anyway, using 10.4.11 and Safari 3.0.4. Safari won't display pdfs in the browser. It is gray with the Acrobat logo.
    I remember reading that the solution is to uninstall (delete) Safari and reinstall 3.0.4. However, I cannot find an install for 3.0.4 for Mac, and then do something with Acrobat. I am using 3.0.4 because it was part of a bundled OS update. I can't go back and downgrade my OS...
    What do I do?

    Hi,
    You probably won't have to reinstall Safari. Two things you can try. If you open Adobe Reader and go into the 'Internet' section of its preferences, you should be able to disable the browser plug-in. Some times that alone isn't enough, in which case, browse to HD/Library/Internet Plug-ins/ and move the Adobe plugin out of the folder. Restart Safari for the changes to take effect.
    Yang

  • Parts of applet won't display until later

    I have this very simple applet (a clock) and everything is working the way is should except that the image of my clock won't display until I press one of the buttons.
    here's part of the code:
    public class horlogeVue extends JApplet{
    public void init(){
    Container c = getContentPane();
    c.setLayout(new FlowLayout());
         hourPlus = new JButton("h+");
    ... (more buttons)
    hour = new JLabel("heure");
    minute = new JLabel("minute");
    seconde = new JLabel("seconde");
    c.add(hour);
    hModele = new horlogeModele(this);
    hControle = new horlogeControle(hModele);
    hourPlus.addActionListener(hControle.new hourP());
    public void display(int timeH, int timeM, int timeS){
    time = "heure="+timeH+", minute="+timeM+", seconde="+timeS;
    repaint();
    public void paint(Graphics g){
    super.paint(g);
    g.drawString(time, 100, 75);
    g.drawArc(xcenter-50, ycenter-50, 100, 100, 0, 360);
    g.drawString("9", xcenter-45, ycenter+3);
    g.drawString("3", xcenter+40, ycenter+3);
    g.drawString("12", xcenter-5, ycenter-37);
    g.drawString("6", xcenter-3, ycenter+45);
    xs = (int) (Math.cos(timeS * Math.PI / 30 - Math.PI / 2) * 45 + xcenter);
    ys = (int) (Math.sin(timeS * Math.PI / 30 - Math.PI / 2) * 45 + ycenter);
    xm = (int) (Math.cos(timeM * Math.PI / 30 - Math.PI / 2) * 40 + xcenter);
    ym = (int) (Math.sin(timeM * Math.PI / 30 - Math.PI / 2) * 40 + ycenter);
    xh = (int) (Math.cos((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + xcenter);
    yh = (int) (Math.sin((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + ycenter);
    g.drawLine(xcenter, ycenter, xh, yh);
    g.drawLine(xcenter, ycenter, xm, ym);
    g.drawLine(xcenter, ycenter, xs, ys);
    So, yeah, basically how do I display all the stuff in paint as soon as I open my applet?

    To get best help with any problem, I recommend posting an SSCCE rather than 'part of the code'.
    <http://www.physci.org/codes/sscce.html>
    Also, when posting code, using a little indent and [src][src] elements around it (where you would change 'src' to 'code' to show any text between the two as formatted source code) makes it a lot more readable as well.
    But as a general comment on the code. It is not usually a good idea to override the paint() of a root level component, I would recommend a JComponent/JPanel instead.
    The JPanel(JComponent) can then be used in the JApplet, JFrame, JDialog, JOptionPane, JWindow.. as needed.

  • Applet won't display.

    Hi,
    This is probably very simple, but I can't get this to work. I am
    writing an Applet that will display two panels, the first one being a
    panel to display graphics, and the other panel displaying the controls
    to manipulate the graphics panel.
    Derived from JApplet, my init() method has the following:
    Container content=getContentPane();
    display = new JPanel();
    controls = new JPanel();
    displayPanel = new DataDisplayPanel( this );
    displayPanel.setPreferredSize(new Dimension( 840, 712 ));
    displayPanel.setBackground( Color.BLACK );
    display.add( displayPanel );
    content.add( display );
    content.add( controls );
    DataDisplayPanel is just derived from JPanel, with MouseListener
    interfaces overriden. I have embedded the applet tag in a webpage (the
    relevant code is '<applet code="IceDisplayApplet.class" width="1000"
    height="1000">
    </applet>'). Now I know that init() is called, as I have a call to
    initialise data before the above calls to initialise
    the gui are called, and the data init process works just fine.
    But when I try and display the applet using appletviewer, I get
    nothing at all. Can anyone suggest why?
    One thing I do think of was that I have written all my class
    declarations in one file, and when I run the compiler,
    these of course get split into different files, Class1.class,
    Class2.class etc. I have combined these classes into
    a jar file and added this is an archive tag in the above applet code
    snippet but it still doesn't work. What am I doing wrong? Someone on
    another forum suggested to another poster that a .pack() call was
    missing, but I have run JApplets without this call, and they work just
    fine.
    Best wishes
    Paul

    Have you set the preferred size of the two JPanels, something like
    display.setPreferredSize(new Dimension(x, y));
    controls.setPreferredSize(new Dimension(x, y));
    content.add( display );
    content.add( controls );

  • Won't display-MS Internet Exploder Does...

    I've had a problem from time to time with Safari not showing pages where Explorer does or will. For example, I'm trying to access a page from a realtor in Maui. The link is:
    http://maui.fnismls.com/publink/default.asp?GUID=36b045dc-9909-4ac3-8c2f-8e028e5 b1f89&Report=Yes
    The largest frame with the real content doesn't display.
    When I paste this link in Explorer, the window comes up fine. This isn't the first time stuff like this has happened.
    Any ideas??
    Safari Version 2.0.3 (417.8)
    Internet Explorer 5.2.3 (5815.1)
    iMac G5 2.1 GHz 20"   Mac OS X (10.4.4)  

    Hi Ducky, Welcome to Apples User to User Help Forums
    I clicked on your link in Safari, page came up mostly empty expect for header? & little on side bars, opened Safari Activity window double clicked on URL that said not found & it open all garbled in that MS way that i have noticed when a site is IE specific.
    It shows up fine in (PBs) Firefox netcraft extension shows its MS webserver/ site so no suprise the that we Safari users are squeezed out.
    Perhaps downloading Firefox will be a good addition to your browser collection, for IE is no longer supported for us. Ipod envy?
    I do not think Safari is the problem in this circumstance.
    Hope this helps, Eme:~{)

  • Applet won't run in Internet Explorer

    I am having problems running applets that I create. They don't run in Internet Explorer. Other applets will run in the browser but it seems to use the Microsoft VM, not the JVM from Sun. The Mozilla Firefox browser will run all applets using the JVM from Sun.

    to api00
    If you cannot see an entry in IE Tools menu named Sun Java Console and open it , then do the following.
    1.Open Windows' Control Panel and look for an entry "Java Plug-in".
    - If it's not there, go here http://java.com/en/index.jsp and click the "Get It Now" button to install the Java Plug-in.
    - If it's there, click it, and then the Browser tab. Make sure that "Internet Explorer" is checked, then close all instances of IE. Go to this page and try one of the applets: http://java.sun.com/j2se/1.4.2/docs/relnotes/demos.html
    2. If that doesn't resolve the problem, remove ALL Sun Java stuff that you can find - check directories and the Registry - and do a clean install of Java.
    to twinkietwin
    Question 1: It appears that you typed the error text in your message #8, because there are capitalization and spelling problems that do not exactly match the errors that Java produces. Is this the case? If so please cut and paste the verbatim text of the errors from the window that appears when you click on the "More Details" button of the "Error - Java General Exception" box. (The EXACT and TOTAL error test is important.)
    It appears that the applet is attempting to acquire the value of some variables from the HTML code that calls the applet, but for some reason it cannot find the HTML file named "example1.htm" that contains the variables. One possibility is that there is a file on your computer named either example1.htm or example1.html that is being found first. Check your machine for files with one of these names; if found, temporarily rename it to something else and try the Sun BarChart applet from the demo page again.

  • Applet won't load in IE browser

    This may be a fairly obvious question but I am just starting out programming in Java and any help would be appreciated. I have created a source file, compiled it in Java 2 SDK to get a class file, and created a .html file. When I run this program in appletviewer it runs fine; however, when I move the .class and .html files to a floppy disk and try to open the html file in an IE web browser on another computer the screen says that it cannot load the applet. The files are all in the same directory and spelled correctly (I made no changes from when it ran correctly in appletviewer)yet it does not load. Is there something else that has to be in the directory to load the applet properly? I noticed that once I disabled the "use Java 2 v 1.40_01 for <applet> requires restart" option in the Internet Options drop down menu the program will not load on my personal IE browser (before it had). Again, any help on this would be greatly appreciated! Thanks in advance!
    -icoolkid

    If the other machine doesn't have a Java runtime (JRE) equivalent to Sun J2Re ver. 1.4.0_01 or later installed, that is probably the cause.
    If one is installed. chech the Java plugin and make sure it's enabled.

  • Applet does not display on Internet Explorer

    I have written a program using MS Edit, I have run the program, and I have compiled the program.
    But when I use a web browser to run the applet, it does not disply the applet. Instead is makes a gray empty area. I would like to know what I should do to get the applet to display. Thank you.
    ernest_efienamokwu

    Hi Ernest,
    Make sure the applet code is written proper by running it using appletviewer.
    If that works, the HTML file used to run the Applet might be wrong, Verify the Applet tag and codebase tags.
    Refer to Sun Tutorials on how to do this if you are in doubt.
    Hope this helps.
    Cheers,
    Chandra

  • My applet won't respond in web-browser !

    Hi,
    I've made a tictactoe applet wich run just fine in my appletviewer (JBuilder3). BUT, when I deploy it as an executable jar-file and try to run it from a web-page, it doesn't respond to mouse-clicks. It looks right(so the paint(Graphics g)-method is working allright), but it seems that the mouseUp(Event e, in x, int y) never is called upon. I've deployed the jar file from JBulider3 University, and I am watching the applet through IE 6(With new JVM from sun).
    I've put the applet here : http://home.chello.no/~rasmuse.
    Anyone?
    Thanks

    Your applet worked okay in my IE6. It showed blue circles in squares where I clicked the mouse and red Xes in other squares. With your new plugin install, did you disable the microsoft VM? Or use the <object><embed> tags to request the plugin VM instead of the ms VM? Only other thing I can think of is that the applet is slow to load.

  • Picture won't display in web browser

    Hi Everyone,
    I have a website that I have created and I place a graphic in
    .jpg and also .png format inside of a div tag on the left side of
    my page template. When I go to view the web page everything else on
    the page will display except for this graphic. I have Firefox and
    IE7. Can anyone help me out with what may be the problem. I have
    tried everything that I can thing of
    Thanks,
    Robert

    "ryonker" <[email protected]> wrote in
    message
    news:g0uspm$g57$[email protected]..
    > Hi Everyone,
    >
    > I have a website that I have created and I place a
    graphic in .jpg and
    > also
    > .png format inside of a div tag on the left side of my
    page template. When
    > I go
    > to view the web page everything else on the page will
    display except for
    > this
    > graphic. I have Firefox and IE7. Can anyone help me out
    with what may be
    > the
    > problem. I have tried everything that I can thing of
    you'd have to give us a URL for the site first so we can see
    what you're
    referring to.

  • Converting GIF images to JPG - display problems in browser

    I am currently writing a program that uses the ImageIO package (javax.imageio.*) to take GIF and PNG images and convert them to JPG images. The program seems to convert them correctly, especially for the PNG images, but the converted GIF images don't open in a browser. They open just fine in Windows Picture and Fax viewer, but when I try to open them in IE or Firefox, it only diplays the little red 'x'.
    Is anyone familiar enough with Images and the ImageIO package in Java that they may have some insight on why these converted GIF files won't display in a browser.

    Bonjour,
    In my [website|http://iweb.debutersurmac.com>, all the images are JPG files,
    By default iWeb '09 converts images to JPG (yes, it's true)...
    ...unless you use masked images*
    !http://i32.servimg.com/u/f32/09/02/44/99/masked10.jpg!
    Crop your images (with Preview) before you paste them in iWeb. Don't use mask, Unmask an image if it's masked. That's the trick!
    !http://i32.servimg.com/u/f32/09/02/44/99/unmask10.jpg!
    (* images with transparency areas (ex : some PNG and GIF), rotation and shapes in iWeb make also PNG files in your website.)

  • IE won't display my applets!

    Hello,
    I installed the Java SDK on my machine several months ago, and use TextPad to code Java Applets. Everything was working fine when I last checked, but i've recently come back to some of my old applets (havent coded any java for a few months), and when i run them either through TextPad or IE i get a blank white screen with "Applet Started" in the bottom left corner. When the applet is running (in textpad), if i go to the menu and choose restart, the applet will be displayed, but it won't allow me to enter any information into any of the text boxes. I believe I am using SDK 1.502 or something of the like. If anyone could shed any light it would be much appreciated.
    Regards,
    Ben.

    The plot thickens....=)
    I attempted to follow the instructions given in that
    link, but when I opened up Java in control panel it
    appeared as a blank grey box, with only the title
    bar! Maybe i should upgrade my SDK?That is quite an possiblility, which version are you using? Another possibility is your instalation being corrupted for some reason. Are you able to run java applications? Maybe you just have to fix your instalation.

  • Image won't display in browser

    An image I am attempting to display won't come up in browser.
    The error when I check for browser compatibility is unsupported
    property layer background image. I am quite new at this.

    Let's see your code, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Crusey" <[email protected]> wrote in
    message
    news:fqe189$ht8$[email protected]..
    > An image I am attempting to display won't come up in
    browser. The error
    > when I check for browser compatibility is unsupported
    property layer
    > background image. I am quite new at this.

  • Adobe Reader won't display PDF in IE Browser Window

    I am using Adobe Reader XI and Internet Explorer v. 11.0.9600.17280.
    I have tried uninstalling and re-installing Adobe.  I've also checked IE Add-Ins and all Adobe Reader Add-Ins are enabled.
    However, you're poorly written software STILL WILL NOT display PDFs in browser any more.
    I need help, but since you're software is so horrible, you do not offer typical technical support.
    PLEASE HELP!

    My company is having the same problem and I was hoping for some kind of final explanation.
    The fix of resetting the Internet Explorer settings works for a time, then it later it has the problem again.  Our company has a reporting site which needs the documents to open in the browser to allow for drill down(generating another report based on a link in the document), so the reports have to be in the browser not a separate Adobe Reader Window.  We have tried other fixes on the Web like the TabProcGrowth=1, but still the problem happens later.
    Our users are tired of resetting their Internet Explorer settings every week or more.  As this has worked in all previous versions, I would agree the issue probably lies in Internet Explorer or at least partly in Internet Explorer, but we need some way to keep the files opening in the browser rather than a separate Reader window.  Any additional thoughts or fixes by anyone would be greatly appreciated.

Maybe you are looking for

  • I'm using Safari 5.0.5 on a 13" MacBook Pro and can't get Safari to fully load web pages or pictures on web pages. Any suggestions?

    I bought a MacBook Pro in October of 2010 and it's been running greatly up to this month. Now I am experiencing problems with Safari loading web pages. Sometimes it will load web pages just fine and other times it doesn't load web pages at all. This

  • Problem connection in OIM 9.1 with SAP user managment

    Hi! When I want to provision a sap user management resource to an user, it appeared this problem. 2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] Create User Request 2008-07-30 14:50:52,587 INFO [XL_INTG.SAPUSERMANAGEMENT] userId :PRUEBA4803

  • Build your own MacBook pro

    I am planning to buy a 13" macbook pro to use during my PhD. I will be dealing with large amounts of data (several GB big files) and will have to process them quickly. I will also be programming and writing and testing code. Should I improve the conf

  • BH-503 green/red leds on at same time

    Hello folks!!! eraly december I bought an Nokia BH-503 over internet. The device arrived perfectly, but 2 days ago it just "bricked". I was trying to pair it to my iPhone and then both red and green leds lighted up... I did try to turn the device off

  • Using LT for motion menu background – problems

    I'm trying to use a LT texture (Canvas>Sinopia) as a motion menu background. I exported 30 secs of the rendered texture direct from LT. The QT file size is 1.09 GB. Couldn't get it to work in DVDSP. Took that file into FCP and re-exported it using cu