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.

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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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 ....

  • 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

  • Help needed with header and upload onto business catalyst

    Can someone help with a problem over a header please?
    I have inserted a rectangle with a jpeg image in  background, in the 'header' section, underneath the menu. It comes up fine on most pages when previsualised, going right to the side of the screen, but stops just before the edge on certain pages. I have double checked that I have placed it in the right place in relation to the guides on the page.
    That's one problem.
    The second problem is that I tried to upload onto business catalyst, which got to 60% and refused to go any further, saying it couldn't find the header picture, giving the title and then u4833-3.fr.png. The picture is in the right folder I have double checked. And it isn't a png. Does it have to be ?
    And the third problem is that I got an email following my upload from business catalyst in Swedish. I am living in France.
    Can anyone help ? Thanks.

    Thanks for replying,
    How can I check the preview in other browsers before I publish a provisional site with BC?
    The rectangle width issue happens on certain pages but not others. The Welecom page is fine when the menu is active, also the contact page, but others are slightly too narrow. Changing the menu spacing doesn’t help - I was already on uniform but tried changing to regular and back.
    In design mode the rectangle is set to the edge of the browser, that’s 100%browser width right?
    Re BC I have about 200 images on 24 different pages and it seems to be having difficulty uploading some of them. But it has managed a couple I named with spaces but not others I named with just one name.
    Is there an issue on size of pictures ? If I need to replace is there a quick way to rename and relink or do I have to insert the photos all over again?
    I’m a novice with Muse with an ambitious site !
    Thanks for your help.
    Mary Featherstone
    Envoyé depuis Courrier Windows
    De : Sanjit_Das
    Envoyé : vendredi 14 février 2014 22:15
    À : MFeatherstone
    Re: Help needed with header and upload onto business catalyst
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion 
    Hi
    Answering the questions :
    - Have you checked the preview in Muse and also in other browsers ?
    - Does the rectangle width issue happens when menu is active , or in any specific state , Try to change the menu with uniform spacing and then check.
    - In design view the rectangle is set to 100% browser width ?
    With publishing :
    - Please try to rename the image file and then relink
    - If it happens with other images as well , see if all the image names includes strange characters or spaces.
    - Try again to publish
    With e-mail from BC :
    - Under preferences , please check the country selected.
    - If you have previously created partner account in BC and selected country and language then it would follow that, please check that.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6121942#6121942
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6121942#6121942
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6121942#6121942. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Under Snow Leopard I used a WD My World NAS to back up my Mac Pro (Mid 2010). When I upgraded to Lion I am unable to access the backup because the NAS does not yet support AFP. I have now bought a Time Capsule and want to transfer the old backup onto it.

    Under Snow Leopard I used a WD My World NAS to back up my Mac Pro (Mid 2010). When I upgraded to Lion I am unable to access the backup because the NAS does not yet support AFP. I have now bought a Time Capsule and want to transfer the old backup onto it.
    How can I recover the NAS back up to put on my new Time Machine.
    Talking to Apple Support Adviser was a waste of time on case number 239647273
    Any thoughts or pointers?

    Keep the old OS around and just kick the tires and test new OS. Apple has a history and habit of breaking support in things like this.
    You can use TimeMachine as one level of backup, and even there there were changes with Lion, I would always recommend foremost backup clones of every volume. And clone (SuperDuper etc) can be stored on something like HP NAS Media Server which also was supporting TimeMachine, iTunes - until Apple made that harder and more their own proprietary format.
    Apple AirPort Time Capsule Support
    Lion Communities
    Cloning as a Backup Strategy
    Rather than "upgrade" I would clone the system, and do a clean install, then allow Setup Assistant to import your files.
    Others who are asking the same question:
    http://www.bing.com/search?q=mac+os+x+lion+WD+My+World+NAS

  • Will Siri become an app that I can upload onto my iPhone 4 or on other devices?

    Will Siri become an app that I can upload onto my iPhone 4 or on other devices?
    I've heard that it's just going to become on the 4s iPhone... but I've also heard that probably like 2 IOS's from now there will be Siri on every device. I hope thats true!(: Because I really want Siri on my iPhone 4 because I don't want to spend another hundreds of dollars on the 4s! haha, so does anyone think this all could be true?? (:

    "Will Siri become an app that I can upload onto my iPhone 4 or on other devices?"
    There is no reason to believe that this will ever happen.
    "I've heard that it's just going to become on the 4s iPhone."
    It has always been available on the iphone 4s.
    " but I've also heard that probably like 2 IOS's from now there will be Siri on every device"
    You heard wrong.

  • I want to put all my music onto an external hard drive.  But I can't get it to put music on my itunes.  The music list is completely empty and so is my IPOD.

    I want to put all my music onto an external hard drive.  But I can't get it to put music on my itunes.  The music list is completely empty and so is my IPOD.  How do I do this?  I have a PC with Windows.

    You say the music is not on the external HD, the music list (iTunes?) is empty, and it is not on the iPOd. Then where is the music you want to move to the external HD?
    You can redownlaod iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT201269 Bit of a tough one...I have a hard drive, iPod and iphone synced to an itunes on a computer that's been irreparably broken. Just bought a macbook pro and want to try and salvage everything onto the itunes on there. Any ideas?

    Bit of a tough one...I have a hard drive, iPod and iphone synced to an itunes on a computer that's been irreparably broken. Just bought a macbook pro and want to try and salvage everything onto the itunes on there. Any ideas?

    Yeah it seems to be fine although I'm a bit reluctant to fire it up with the Mac just incase. Thanks for the response btw

  • My Netbook that my phone is sync to does not have a cd drive and I want to put my digital copies onto it

    My Netbook that my phone is sync to does not have a cd drive and I want to put my digital copies onto it but I do not know how to, I have a laptop I can put the disks in but I don't know if it will let me copy the file to a flash drive any ideas? also I keep getting this message about updating my media player security and when i go to the site it links to the update button is greyed out and will not allow me to do it

    If you import the CD on your laptop with a disc drive, then you can place the music files on a flash drive and transfer them over to your netbook. You could also choose to email the music files from the disc drive laptop to yourself to download them onto your netbook through your mail account.
    As for your second question, is it windows media player you're trying to update? Try downloading the latest version of WMP to see if that resolves the issue.

  • 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..

  • Who wants to be a billionaire ?

    Im busy desinging a game...Who Wants To Be A Billionaire...but
    could someone explain why the following won't draw the Round Rectangles that i ask to be drawn...
    // Main Application Class
    import java.awt.*;
    import BuildCanvas.*;
    public class User
    public static void main (String [] args)
    MakeWindow userInterface = new MakeWindow ();
    userInterface.setSize (800, 600);
    userInterface.setLocation (100, 100);
    // The MakeWindow Class
    import java.awt.*;
    import java.lang.*;
    class MakeWindow extends Frame
    Button finalButton, fiftyButton, phoneButton, askButton, retireButton;
    MenuItem quitItem, newGameItem, helpItem, aboutItem, greenItem, blueItem;
    public MakeWindow ()
    super ("Who Wants To Be A Billionaire");
    // Create the menu items.
    newGameItem = new MenuItem ("New Game");
    quitItem = new MenuItem ("Quit Billionaire");
    helpItem = new MenuItem ("Help");
    aboutItem = new MenuItem ("About");
    // Create the menus.
    Menu mainMenu = new Menu ("File");
    Menu helpMenu = new Menu ("Help");
    // Place the menu items in the menus.
    mainMenu.add (newGameItem);
    mainMenu.add (quitItem);
    helpMenu.add (helpItem);
    helpMenu.add (aboutItem);
    // Place the menus into the menu bar.
    MenuBar myMenus = new MenuBar ();
    myMenus.add (mainMenu);
    myMenus.add (helpMenu);
    setMenuBar (myMenus);
    setBackground (Color.blue);
    pack ();
    show ();
    // Call button method.
    makeButton (finalButton, 180, 550, "Final Answer");
    makeButton (fiftyButton, 270, 550, "50 / 50");
    makeButton (phoneButton, 360, 550, "Phone Friend");
    makeButton (askButton, 450, 550, "Audience");
    makeButton (retireButton, 540, 550, "Retire");
    remainingButtons ();
    } // MakeWindow constructor.
    private void remainingButtons ()
    // Creates windows for Money Ladder and Answer Boxes.
    Graphics g = getGraphics ();
    g.setColor (Color.black);
    g.fillRoundRect (200, 200, 300, 300, 7, 7);                    //**** This Code doesnt work
    g.fillRoundRect (100, 300, 50, 100, 7, 7);                    //**** This Code doesnt work
    g.fillRoundRect (100, 200, 50, 200, 7, 7);                    //**** This Code doesnt work
    // Creates, positions + sets size of buttons.
    private void makeButton (Button currentButton, int posx, int posy, String buttonText)
    currentButton = new Button (buttonText);
    add (currentButton);
    currentButton.setSize (80, 20);
    currentButton.setLocation (posx, posy);
    } // makeButton method.
    have i forgotten to call something ?
    please help me asap.
    thanks
    andrew.

    I took the liberty to make some change, (the black rectangles overlaps)
    import java.awt.*;
    import java.awt.event.*;
    class MakeWindow extends Frame
         Button   finalButton, fiftyButton, phoneButton, askButton, retireButton;
         MenuItem quitItem, newGameItem, helpItem, aboutItem, greenItem, blueItem;
    public MakeWindow ()
         super ("Who Wants To Be A Billionaire");
         setLayout(null);
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);
    // Create the menu items.
         newGameItem = new MenuItem ("New Game");
         quitItem    = new MenuItem ("Quit Billionaire");
         helpItem    = new MenuItem ("Help");
         aboutItem   = new MenuItem ("About");
    // Create the menus.
         Menu mainMenu = new Menu ("File");
         Menu helpMenu = new Menu ("Help");
    // Place the menu items in the menus.
         mainMenu.add (newGameItem);
         mainMenu.add (quitItem);
         helpMenu.add (helpItem);
         helpMenu.add (aboutItem);
    // Place the menus into the menu bar.
         MenuBar myMenus = new MenuBar ();
         myMenus.add (mainMenu);
         myMenus.add (helpMenu);
         setMenuBar (myMenus);
         setBackground (Color.blue);
    // Call button method.
         makeButton(finalButton,180,550,"Final Answer");
         makeButton(fiftyButton,270,550,"50 / 50");
         makeButton(phoneButton,360,550,"Phone Friend");
         makeButton(askButton,450, 550,"Audience");
         makeButton(retireButton,540,550,"Retire");
         setVisible(true);
    // Creates, positions + sets size of buttons.
    private void makeButton(Button currentButton, int posx, int posy, String buttonText)
         currentButton = new Button(buttonText);
         add(currentButton);
         currentButton.setSize (80, 20);
         currentButton.setLocation(posx, posy);
    public void paint(Graphics g)
         g.setColor (Color.black);
         g.fillRoundRect (200, 200, 300, 300, 7, 7); //**** This Code doesnt work
         g.fillRoundRect (100, 300, 50, 100, 7, 7); //**** This Code doesnt work
         g.fillRoundRect (100, 200, 50, 200, 7, 7); //**** This Code doesnt work
    public static void main (String [] args)
         MakeWindow userInterface = new MakeWindow ();
         userInterface.setSize (700, 600);
         userInterface.setLocation (10, 10);
    }

  • I am a sole proprietor business owner (work from home graphic designer) and I have a customer who wants to pay me via Apple pay. Can I accept her transaction? How do I get that rolling?

    I am a sole proprietor business owner (work from home graphic designer) and I have a customer who wants to pay me via Apple pay. Can I accept her transaction? How do I get that rolling?

    Apple Pay: Merchants FAQ - Apple Support

Maybe you are looking for

  • Date in CRMOD Report

    Hi, I am creatting a report on Users Log in CRMOD. I need to display the last Log-in date of the user in the report. The issue I am facing is, the Company Setting for CRMOD is USA CST time zone and for User the timezone is Sydney, Australia. In the U

  • Is it possible to back up an external hard drive to Time Machine from two different computers without creating two different records?

    I have an external hard drive that I do my work on. I use it on my office MacPro and on my MacBook Pro. I have Time Machine setup on both computers to back up the external hard drive to a remote backup drive, but when it backs it up, the backup goes

  • Using text input to change content of gallery

    Hello, I have an application where I'm using multiple excel tables as my data. Each table has the same columns; The only difference is the data in each one.  I have a screen "GalleryScreen" where I have a Gallery (aGallery) that displays information

  • Bayer Filter and colour balance.

    Hi all. I have recently been acquiring images using a mikrotron MC1363 camera and LV code 'Grab and save to AVI'. I have then used ImageJ to create a stack of U8 images. My problem then arises in that I need to apply a bayer filter and colour balance

  • Need to know the standard function module in E-Recruitment

    Hi All, I need to know the standard function module that defaults the value of 'Functional area' in 'Posting' from 'Requisition'. Early response is greatly appreciated. Thanks an best regards Rajeev