Looking 4 who wants to be a millionaire THEME

Hi fellows;
I'm producing an amateur video-show similar to the show "Who wants to be a millionaire" through Imovie 11 ... but I don't really know how can I manage to reproduce the show theme into my production (you know, question, 4 possible answers, safelines and so on ...) to make it look alike the real show ...
can anyone give me a hint, please?

etimax wrote:
.... don't really know how can I manage to reproduce the show theme into my production (you know, question, 4 possible answers, safelines and so on ...) to make it look alike the real show ...
you need an additional 'paint-app, as Pixelmator, Photoshop/elements, Gimp, ... or, if at hand, Keynote.
create your 'lower thirds', save in the png format
use the well-known 'transparent png'-trick http://sites.google.com/site/karstenschluter/imovie09tricks
not exactly what you're asking for, but a bundle of suggestions on my other site
http://sites.google.com/site/karstenschluter/how-to-make-a-vidcast
and Welcome etimax to the  boards ....

Similar Messages

  • Looking for software that allows you to make "who wants to be a millionaire".  Must be able to put in your own questions and HAS to be for the Mac.  Help!

    I am a teacher who would love to create the game "who wants to be a millionaire" with my own questions.  I would use this for test reviews.  I can't not find something for the mac.  It is out there for the PC, but my class room is mac based.  I can't use anything that will allow me to run the mac in windows, either.  Anyone know of a software that will allow me to input my own questions?  Thank you very much for your time and consideration.

    You may possibly find something here:
    http://www.oneonlinegames.com/who-wants-to-be-a-millionaire-games
    but in any case beware of copyright.

  • Who wants to be a Millionaire ??? CODE???

    hi
    i'm tryin to make a basic game who wants to be a millionaire...i got the following..layout of the textfield textarea etc.. but i cant seem to use the vectors to store the questions from a txt file then transfer it over to the textarea box or radio buttons.... n how about the checking part??
    anyone know where to find help or can help me??
    thnks

    That is the game frame:
    // File:          GameFrame.java
    // Purpose:          The window that appears when the player chooses to play the game
    //                    This window shows the questions and answers and the amount being played for
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Vector;
    import java.io.*;
    public class GameFrame extends JFrame implements ActionListener {
         private MainFrame frmMain;
         private Vector questionVector;
         private JTextField jtfquestions;
         private JButton btnCancel, btnPrevious, btnNext, btnSelect,btnStart;
         private JRadioButton jrba, jrbb, jrbc, jrbd;
         private ButtonGroup btg = new ButtonGroup();
         private JList score;
         private final String money []= {"15. 1000000","14. 500000","13. 250000","12. 125000","11. 64000","10. 32000","9. 16000","8. 8000","7. 4000","6. 2000","5. 1000","4. 500","3. 300","2. 200","1. 100"} ;
         public GameFrame(MainFrame mf)
         frmMain = mf;                    // Get a handle on caller
    score=new JList (money);
    score.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
         JPanel p1=new JPanel();
         ImageIcon logo=new ImageIcon ("millionaire.jpg");
         p1.add(new JLabel(logo));
         JPanel p2=new JPanel();     
                         p2.add(score);
            JPanel p5=new JPanel();
           p5.setLayout(new GridLayout(2,3,4,4));
    p5.add(jrba = new JRadioButton("A", false));
    p5.add(jrbb = new JRadioButton("B", false));
    p5.add(jrbc = new JRadioButton("C", false));
    p5.add(jrbd = new JRadioButton("D", false));
    btg.add(jrba);
    btg.add(jrbb);
    btg.add(jrbc);
    btg.add(jrbd);
    JPanel p3=new JPanel();
    p3.setLayout(new FlowLayout(FlowLayout.LEFT,5,5));
    p3.add(jtfquestions=new JTextField(50));
    p3.add(p5);
    JPanel p4=new JPanel();
       p4.setLayout(new FlowLayout(FlowLayout.CENTER,5,5));
    p4.add(btnCancel=new JButton("Cancel"));
    p4.add(btnPrevious=new JButton("Previous"));
    p4.add(btnNext=new JButton("Next"));
    p4.add(btnSelect=new JButton("Select"));
    p4.add(btnStart=new JButton("START"));
    getContentPane().setLayout(new BorderLayout(5,5));
    getContentPane().add(p1, BorderLayout.NORTH);
    getContentPane().add(p2, BorderLayout.EAST);
    getContentPane().add(p3, BorderLayout.CENTER);
    getContentPane().add(p4, BorderLayout.SOUTH);
    Container cn = this.getContentPane();
    btnCancel.addActionListener(this);
    btnPrevious.addActionListener(this);
    btnStart.addActionListener(this);
    btnNext.addActionListener(this);
    jrba.addActionListener(this);
    jrbb.addActionListener(this);
    jrbc.addActionListener(this);
    jrbd.addActionListener(this);
    try
    readFile("questions.dat");     
    catch (Exception e)
         System.out.println(e);
    public void actionPerformed(ActionEvent e)
    public void readFile(String fileName) throws IOException
              BufferedReader bReader;
              String question;
              questionVector = new Vector();
              File inFile = new File(fileName);
              if (!inFile.exists())
              System.out.println("File does not exist");
                   //System.exit(0);
         bReader = new BufferedReader(new FileReader(inFile));
         question = bReader.readLine();
         while (question != null)
         String a1, a2, a3, a4, correct;
              int iCorrect;
              a1 = bReader.readLine();
              a2 = bReader.readLine();
              a3 = bReader.readLine();
              a4 = bReader.readLine();
         correct = bReader.readLine();
         // Convert the value from a string to an integer
         iCorrect=Integer.parseInt(correct);
                         // Create a new Question object using the parameterised constructor
    Question q = new Question(question,a1,a2,a3,a4,iCorrect);
         questionVector.add(q);
         question = bReader.readLine();
    // Close the file stream once we have finished reading the file
         bReader.close();     
    public void setQuestion(int questNum)
    Question q = (Question) questionVector.get(questNum);
    System.out.println("Question number "+questNum+ " is "+q.getQuestion());     
    public void showQuestions()
    for (int i=0; i< questionVector.size(); i++)
         // Cast the object stored in the Vector to type Question
    Question q = (Question)questionVector.elementAt(i);
                   q.printAll();
    Now Question Frame:
    // File:          Question.java
    // Purpose:          A Java class to store a question and possible answers
    public class Question
         private String question;
         private String answer1, answer2, answer3, answer4;
         private int correctAnswer=0;
    public Question()     
    public Question(String quest, String ans1, String ans2, String ans3, String ans4, int correct)
         question = quest;
         answer1=ans1;
         answer2=ans2;
         answer3=ans3;
         answer4=ans4;
         correctAnswer=correct;          
    public void printAll()
    System.out.println(question);
    System.out.println("A: " + answer1);
    System.out.println("B: " + answer2);
    System.out.println("C: " + answer3);
    System.out.println("D: " + answer4);
    System.out.println("Correct answer is answer number "+ correctAnswer);
    public String getQuestion()
                 return question;
    ok those are the codes now the hard part is making the question appear on the _private JTextField jtfquestions;_ n then having the ans place on the _private JRadioButton jrba, jrbb, jrbc, jrbd;_ then if a correct ans is inputed the JList score should move up like the game itself
    this is what it looks like GUI wise
    http://img164.imageshack.us/img164/6126/gui6iz.jpg
    now anyone have any tips or help options?
    thnks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Who wants to be a millionaire - uploading onto website

    Hi everyone,
    I'm very new to Adobe Captivate. I've created a Who wants to be a Millionaire game on Captivate 8 and would like to know exactly how I would upload it onto my webpage. I've configured it and created an HTML5 folder but am stuck on what next to do. Any help would be really appreciated.
    Many thanks in advance
    Dan

    For this interactive interaction the value of the score will be stored in the associated variable (do not forget to create it, will label it v_mil).
    Failure means that you don't get the total score, right? And since you only want to retake at the end, I suppose that is on another slide? Then it is easy, you just have to make a 'button' visible on that slide if the score is lower than the total score. That can be done On Enter for that slide:
    IF v_mil is less than v_total    you can put the exact total score here, or store that score in another user variable v_total
       Show Bt_Retake                 where that is the button that is initially invisible
    ELSE
       Continue
    The button has to trigger a simple action 'Jump to ...' to get back to the slide with the game, it will be automatically reset.

  • For some reason, firefox has changed something in my laptop so that when I play games on facebook, such as deal or no deal, who wants to be a millionaire, ect. the games load only to half size, so half of my games are cut off.

    everything i have done has not fixed this problem, its only on my laptop on my parents laptops it works. V

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • Who wants to be a zillionaire

    i need urgent help, i am programming a game" who wants to be a zillionaire" and i dont know how to start, i have thot about my classes but am stuck.
    help please
    thanks

    The problem is to define classes suitable for playing a game of ?Who Wants to be a Zillionaire?. This game is a cross between the successful TV quiz shows ?Who Wants to be a Millionaire? and ?Mastermind?. Players choose a category on which to answer questions. Questions are of a multiple-choice nature with the answer being one of four possibilities. If the player answers the question correctly an amount of ?money? is credited to that player. Questions have a difficulty level according to the amount of ?money? players are awarded for answering that question correctly. The questions are asked in ascending order of difficulty and, therefore, value. Players take turns to answer questions. If a player cannot answer a question, help is available as follows:
    ?     Ask the Public. This involves a simulation of each possible answer being given a rating according to the likelihood that it is the correct answer. Ratings for all four possible answers must add up to 100% in total.
    ?     Half-and-half. Two of the possible answers are removed leaving only the right answer and one wrong answer.
    Players are only allowed to use each help facility once per game. If a wrong answer is given that player is out of the game. The winner is the player with the most money credited at the end of the game.
    Message was edited by:
    yvonne_fash

  • I have a friend who wants me to zip my iWeb website files so I can send them to him.  I am having difficulty finding where these files are.  Thanks!

    I have a friend who wants me to zip my iWeb website files so I can send them to him.  I am having difficulty finding where these files are.  Thanks!

    Besides the trillion topics that explain where the file is, let me add another one.
    The UNIX way : ~/Library/Application Support/iWeb/
    The Mac way :
    Finder
    Hold Option key
    Pull down GO menu
    Look closely

  • I am NOT a Verizon Customer nor is my number a Verizon number. So why am I receiving automated spam for them saying "Verizon we care about you. Thank you. And have a nice day"??? Who do I contact to get them to stop? Most everywhere I've looked required m

    I am NOT a Verizon Customer nor is my number a Verizon number. So why am I receiving automated spam for them saying "Verizon we care about you. Thank you. And have a nice day"??? Who do I contact to get them to stop? Most everywhere I've looked required me to be a Verizon Customer in order to contact them....Even calling the number back tells me to enter my number and then tells me I'm not a Verizon Customer. Dial 611. Then hangs up on me...

    This is one of the drawbacks with cellular numbers. The device number at one time was used by a Verizon customer. They may have changed it or more than likely ported to the service you are on then either gave it up, or changed it. You as a customer then get it.
    The only solution I can recommend is have your service change the number. However depending on who had it previously you may have more texts and spam calls. Or may get lucky and get none.
    Good Luck

  • I cant fifure this out...who wants to solve a huge crime network..thisa is no joke

    i cant fifure this out...who wants to solve a huge crime network..thisa is no joke

    Nope.  That's the issue.
    They'll sync on a third device acting as a hotspot, but the device sending a signal is not "on" the network it creates so the airport is all by itself on that network.  At least that is what it looks like to me.  Anyone have another take on it?  Seems pretty silly that an iPad can put out a wifi signal, an Airport Express can receive a wifi signal, and yet there is no simple way to get them to communicate under this particular condition.

  • This is for people who wants to mirror all they apple devices when they travel.

    this is for people who wants to mirror all they apple devices when they travel and don't want to unplug everything from the apple tv and take it with them, you can get the amazon fire tv stick and download an app called airplay upnp or the reflector app and mirror all of your apple devices to it, it is great for traveling easy to setup and move around, for example if your traveling and want to use it in the conference room and then want to take with you back to the hotel for the night and plug it in and keep on doing that routine.
    it will be great to use hopeful until apple comes out apple with their own apple tv stick 

    The Verizon DVR is admittedly not the sharpest box on the market. I admit to giving up on the multi-room DVR product, it just never worked satisfactorily for me.
    Hopefully features/functions issues  will improve in the near term with the Cisco/Scientific Atlanta box that obviously isn't going to make Q1. I admit I have ceased  holding my breath. Something does have to happen fairly soon because 160gb drives are literally going out of production.
    You do however make two statements that incorrect. Current TiVO's only need 1 cable card, since the standard cable card today in Verizon's stock  is the M-Card. You also have the option with TiVO of paying either an annual fee, or a one time fee, both of which are lower in the long term than the month to month fee. Alternatively you can by the Moxi DVR, and it includes lifetime service in the purchase price.
    While in theory a truck roll costs $79, in practice if it is for a Cable Card install, it is free (I think  FCC regulations preclude the charge).
    Apparently there is nothing in Verizon's order processing system that tells reps that there is no charge for Cable Card installations, so they often quote the $79 fee because that is the standard charge for technician to come out. As far as I can tell (and there have been lots of posts about cable card installs), no one has in fact been charged the $79 fee..

  • For some reason i have two accounts and I want to cancel one of them. they are yearly contracts but i dont want to pay double for the same product. How can I cancel one account?

    for some reason i have two accounts and I want to cancel one of them. they are yearly contracts but i dont want to pay double for the same product. How can I cancel one account?

    Is it possible that you are using the same password for the old O2 Study and newer O2 Apple Base Station networks?
    If so, Keychain Access is storing the old information about the old network and may be associating it with your AirPort Extreme settings based on the BSSID that William has mentioned.
    If that's the case, open Macintosh HD > Applications > Utilities > KeyChain Access and look for a listing with the old network name. Delete this entry. You may need to power down both the computer and the AirPort Extreme and restart them.

  • I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    When you are dealing with websites, image file size is a trade off between quality and download speed. There's not a lot of point to having high quality images if they take too long to download in the browser.
    Nowadays we also have to consider the device that the end user is viewing the images on. An image that is optimized for viewing on a large screen is total overkill and unsuitable for those using mobile devices.
    Really we should be supplying different versions of media files for different devices using @media rules in the stylesheet but this is rather outside of the scope of iWeb. If you use the built in image optimizer and the iWeb Photo template with slideshow, the application will optimize the images according to the way in which you set this function in preferences and the slideshow size will be automatically reduced for those viewing it on smaller screens.
    If you want to give your viewers the opportunity to view large, high quality images, you can supply them as a download.

  • Who wants a Venice Core A64? In stock now!!

    Anyone want one? They in stock now!!
    So who wants a venice core A64? Its capable of running 4X512 @ 1T/full speed and has SSE3
    http://www.stegpc.com/details.asp?prodid=amd-64-35v
    http://www.stegpc.com/browse.asp?cat=123
    SSE3 and capable of doing 4X512mb @ full speed/1t

    Quote from: brianstretch on 06-March-05, 04:49:49
    Your first link doesn't work and the second one doesn't list the Venice cores. I'm going to guess that they got pulled in a hurry. Still, maybe we'll see them soon on this side of the pond.
    Yeah they got pulled :( I posted on about three forums, so I think they noticed a huge surge in traffic lol. Never mind, they cant be long. The manin benefit being support for SSE3 and a improved memory controller which allows all four dimm slots to be filled with double sided ram @ full speed +1T.

  • HT1351 Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Sorry, I meant the letters look "faded" not faed.

  • After upgrading to 5.01, songs in my playlist no longer are in the same order as on itunes.  I want to at least list them by the most played first not some random Apple order.

    After upgrading to 5.01, songs in my playlist is no longer are in the same order as on itunes.  I want to at least list them by the most played first not some random Apple order.

    Not sure why this is happening and it is a pain. Once the Purchased list sorted by 'date added' go to the left most column and select the top - in my Purchased list the new items go to the bottom and I drag them back up to the top position.
    MJ

Maybe you are looking for

  • How can I find my password for iTunes?  Forgot it and can't see how to restore or change

    How can I find my password for iTunes?  Forgot it and can't see how to restore or change it.  It is not the same as the apple id password - or so my iPhone iTunes says - Help

  • Flash Player 9 fails to properly install

    I have tried everything I know to get Flash9 to work. After uninstalling I restart my computer and install flash. It says it was installed but when I go back to Adobe site and test the player nothing except Shockwave comes up. I am using Netscape and

  • Read data of sartorius scales with RS232 interface

    Dear users, I have to use a Sartorius scales with a RS232 interface. In the attachment you see the program with which I try to read the data of this device – so far not successfully. Therefore I have several questions: Could somebody tell me if the s

  • How do I get my lights to flash on the side of my ...

    I have recently had my phone's software upgraded due to a fault, now I have noticed that the lights at the side of the phone does not flash if I have a missed call or SMS etc like it used to, how do I configure that??? Regards

  • OS for Photoshop CS6 Extended?

    I am running Windows Vista on my PC.  Can I install Adobe Photoshop Extended (Student & Teacher Edition) on my laptop, or do I need to upgrade to Windows7?