How do I put a picture in this box here?

And how do I start making points?

There are some options  for you to edit your writing etc, and there's a camera, click on it..
select the image from your computer and that's it.
To make points I just saw this, hope it helps:

Similar Messages

  • How do i put a Picture in LiveType?

    How can i put a picture as a background?

    Do you want to reference the background or have it appear in your final project? You will want to open the manual to the section on BACKGROUND MOVIE to make sure you know how to enable or disable the b/g function when you render your output or move your project to FCP.
    If you are thinking you are going to use the b/g movie for the entire project and jsut place your LT elements on top of it: don't.
    bogiesan

  • How do I put a picture in Final Cut Pro X's Stats title?

    Hey! How do I put a pictures on these two little gray boxes, on the Stats generator?

    In the Title tab of the Inspector, under Published Parameters,  there are two drop zone wells. Click in one and then select your source clip from the browser or Time line…then the other.
    Russ

  • How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    Help PPLZ How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    http://www.ilounge.com/index.php/articles/comments/adding-album-art-in-itunes/

  • How do i edit a picture like this

    Hey i was wondering how do i edit a picture like this? With the effect or whatever its called

    Image like that can be achieved many different ways there is no right or wrong no one way to do things in Photoshop.  There are also many third Add-Ons developed for Photoshop. Prices range from free to very expensive.  Several third party add on have been developed to process images and help produce image like your example.

  • How do i put a loop round this so the user can only enter a number between

    how do i put a loop round this so that the user can only enter a number between 1 and 3 if a number like 4 is enter it will just say something like retry
    if (CA.trim().equals(ans1)){
    Out = "incorrect";
    else if(CA.trim().equals(ans2)){
    Out = "incorrect";
    else if(CA.trim().equals(ans3)){
    Out = "correct";
    else{
    System.out.println("Enter 1 2 or 3 try doin test again");
    System.out.println(Out);
    byte b[] = Out.getBytes();
    out1.write(b);

    You already know the conditions so here's some pseudocode.
    get input
    while(input is not what I want (between one and three))
            Inform user of improper input and ask for it again
            get new input

  • How do I put a tick in a box on a form

    How do I put a tick in a box on a form

    First, whomever created the file has to add the ability for you to do that in Adobe Reader. If they haven't, then you can't check the box with Reader.

  • How do I put a picture in my gui?

    Can anyone tell me how to put a picture in my gui?
    Thank you

    Someone used my code before I added this new stuff. They took it word for word.
    I apologize if you are getting frustrated with me. Please know I am working very hard on this. Learning Java in just a few weeks to me is impossible so I wil take all the help i can get. I know it must seem very easy to you because you know it very well but I am just learning, maybe you can remember back to when you were learning?
    Anyways i tried this code but it did not work. I didn't get any errors when compiling but nothing showed.:
    JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);Here is my code but please keep in mind that alot of it has comments because I have not actually worked on the code for it yet. Just getting the buttons set up is where I am at.
    I really wish that i could look at the examples and just have it be easy to code from it. I tried and I tried and sometimes I can get it but sometimes I just can't.
    Thank you,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.JFrame.*;
    import java.io.*;
    class Testing
      java.util.List<DVD> dvds = new java.util.ArrayList<DVD>();
      JTextField tfTitle = new JTextField(15);
      JTextField tfGenre = new JTextField(15);
      JTextField tfProductNumber = new JTextField();
      JTextField tfPrice = new JTextField();
      JTextField tfQuantity = new JTextField();
      JTextField tfInventoryValue = new JTextField();
      DefaultListModel dlm = new DefaultListModel();
      JList list = new JList(dlm);
      public void buildGUI()
        JButton btnLoadfile = new JButton("Load File");
        JButton btnAdd = new JButton("Add");
        JButton btnModify = new JButton("Modify");
        JButton btnDelete = new JButton("Delete");
        JButton btnSearch = new JButton("Search");
        JButton btnSave = new JButton("Save");
        JButton btnFirst = new JButton ("First");
        JButton btnPrevious = new JButton ("Previous");
        JButton btnNext = new JButton ("Next");
        JButton btnLast = new JButton ("Last");
        JPanel p1 = new JPanel(new BorderLayout());
        JPanel p = new JPanel(new GridLayout(6,2));
        p.add(new JLabel("DVD Title: "));
        p.add(tfTitle);
        p.add(new JLabel("Genre: "));
        p.add(tfGenre);
        p.add(new JLabel("Product Number: "));
        p.add(tfProductNumber);
        p.add(new JLabel("Price per Unit: "));
        p.add(tfPrice);
        p.add(new JLabel("Quantity on Hand: "));
        p.add(tfQuantity);
        p.add(new JLabel("Inventory Value: "));
        p.add(tfInventoryValue);
        p1.add(p,BorderLayout.NORTH);
        JPanel p2 = new JPanel();
        p2.add(btnLoadfile);
        p2.add(btnAdd);
        p2.add(btnModify);
        p2.add(btnDelete);
        p2.add(btnSearch);
        p2.add(btnSearch);
        p2.add(btnSave);
        p2.add(btnFirst);
        p2.add(btnPrevious);
        p2.add(btnNext);
        p2.add(btnLast);
        p1.add(p2,BorderLayout.CENTER);
        JFrame f = new JFrame();
        //f.setIconImage(new ImageIcon("test.gif").getImage());
        JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);
        f.getContentPane().add(p1,BorderLayout.NORTH);
        JScrollPane sp = new JScrollPane(list);
        f.getContentPane().add(sp,BorderLayout.CENTER);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.pack();
        f.setLocationRelativeTo(null);
        dvds.add(new DVD("StarWars","Action","1245",10.00,5,55.00));
        dvds.add(new DVD("OfficeSpace","Comedy","9821",20.00,5,105.00));
        dvds.add(new DVD("Lost","Drama","9382",25.00,2,52.50));
        dvds.add(new DVD("Friends","Comedy","9824",18.00,5,94.50));
        dvds.add(new DVD("Superman","Action","3652",20.00,10,210.00));
        dvds.add(new DVD("Batman","Action","9583",17.00,7,124.95));
        dvds.add(new DVD("Cinderella","Family","2734",19.00,8,159.60));
        setList();
        f.setVisible(true);
        f.setIconImage(new ImageIcon("Images/test.gif").getImage());
        btnAdd.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                    Double.parseDouble(tfPrice.getText()),
                                   Integer.parseInt(tfQuantity.getText()),
                                   Double.parseDouble(tfInventoryValue.getText())));
            setList();
            clearTextFields();
        btnDelete.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            int index = list.getSelectedIndex();
            dvds.remove(index);
            setList();
            clearTextFields();
            btnModify.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
             int index = list.getSelectedIndex();
            dvds.remove(index);
                 dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                         Double.parseDouble(tfPrice.getText()),
                                        Integer.parseInt(tfQuantity.getText()),
                                        Double.parseDouble(tfInventoryValue.getText())));
                 setList();
                 clearTextFields();
    // btnSave.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //                try
    //                  File file = new File("TestSave.txt");
    //                  PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(file)));
    //                  out.println("a line");
    //                  out.println("another line");
    //                  out.close();//<---------very important
    //                catch(IOException ioe){ioe.printStackTrace();}
                  //dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                  //                            Double.parseDouble(tfPrice.getText()),
                  //                           Integer.parseInt(tfQuantity.getText()),
                  //                           Double.parseDouble(tfInventoryValue.getText())));
    //                  setList();
    //                  clearTextFields();
    //    btnSearch.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //               String Search =
    //               JOptionPane.showInputDialog("Enter name of Movie");
    //               int x =0;
    //               for(x = 0; x < dvds.size(); x++)
    //            DVD dvd = (DVD)dvds.get(x);
    //  if(dvd.title.equals(searchTitle))// or
    //            if(dvd.title.equalsIgnoreCase(searchTitle))
    //        list.setSelectedIndex(x);
    //        break;
    //          if(x == dvds.size()) System.out "not found";
        btnPrevious.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
                 DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                int index = list.getSelectedIndex()-1;
                                 if (index <0) index = dvds.size()-1;
                                list.setSelectedIndex(index);
         btnNext.addActionListener(new ActionListener(){
                    public void actionPerformed(ActionEvent ae){
                                  DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                   //int index = list.getSelectedIndex()+1;
                                   int index = (list.getSelectedIndex()+1) % dvds.size();
                                list.setSelectedIndex(index);
        list.addListSelectionListener(new ListSelectionListener(){
          public void valueChanged(ListSelectionEvent lse){
            if(lse.getValueIsAdjusting() == false)
              int index = list.getSelectedIndex();//<---
              if(index > -1)//<---
                DVD dvd = (DVD)dvds.get(index);//<---
                tfTitle.setText(dvd.title);
                tfGenre.setText(dvd.genre);
                tfProductNumber.setText(dvd.productNumber);
                tfPrice.setText(""+dvd.price);
                tfQuantity.setText(""+dvd.quantity);
                tfInventoryValue.setText(""+dvd.inventoryValue);
      public void setList()
        dlm.clear();
        for(int x = 0, y = dvds.size(); x < y; x++)
          dlm.addElement((DVD)dvds.get(x));
      public void clearTextFields()
        tfTitle.setText("");
        tfGenre.setText("");
        tfProductNumber.setText("");
        tfPrice.setText("");
        tfQuantity.setText("");
        tfInventoryValue.setText("");
        tfTitle.requestFocusInWindow();
      public static void main(String[] args)
        EventQueue.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    class DVD
      String title;
      String genre;
      String productNumber;
      double price;
      int quantity;
      double inventoryValue;
      public DVD(String t,String g, String pn, double p, int q, double i)
        title = t; genre = g; productNumber = pn; price = p; quantity = q; inventoryValue = i;
      public String toString(){return title;}
    }

  • How do I put a picture in an email

    I want to put a pdf in an email, but not as an attachment, I want the email to open and the picture to all ready be there..just dont know how, thanks for your help

    Thank you Dan! I understand all that. What I don't get is that when I send an email to someone, the only way I can figure to put a picture in the email is by either dragging it onto the body of the email where I want to place it (which makes it an attachment) or I can use the Attach File from the File menu or the Attach button at the top of my composing window.
    I get emails all the time the look like a regular html web page with formatting and inline photos and graphics and they never show up in my email as having attachments. This is what I want to do. So, how does one place, insert, paste as html, or other wise put an image into an email so that it has formatting and does not show up as having an attachment when someone else receives my email.
    I am a photographer and the biggest reason I am asking the question is that I want to send out an email that includes an image inline in the body of the email so that the recipient will not trash the email before opening it because it has an attachment or their spam filter intercepts it and trashes it because it has an attachment.
    Thanks again for any assistance!
    If anyone likes, I can send you an example of both how my emails look (with attachments) and ones that I get that have the formatted text and photos.
    Am I just thick here and not getting something?????
    Cheers!
    Gar
    Message was edited by: Gar Benedick

  • How do I put a picture in the background on Pages

    I must be having a senior moment!   In the past I have made a poster in Pages and put a picture in the background and text over the top.
    I have just tried to do it again and can't for the life of me remember how to do it.   I do have a new version of Pages which has confused me slightly.
    Any help would be much appreciated.
    Kathy

    Menu > Arrange > Section Master > Move object to Section Master
    You also should still have Pages '09 still in your Applications/iWork folder
    Pages 5.5.3 has over 100 + features missing and is comparatively buggy.
    Peter

  • How do i put a picture on my home screen back ground

    im trying to put a picture on my home screen back-groud and i don't know how... YET

    if you have an 8 gig 3g, you can't, as it is not supported. otherwise it would be an option after you select the photo you want as the background. it would ask you to set lock screen, home screen or both.

  • How do I put just pictures from iphoto to idvd to make a dvd?

    Okay. I had a lot of trouble today. I wanted to get pictures from iphoto to a dvd. So I did that by going to iphoto then share then burn. Well, that worked on my blu ray. The pictures would come up sorta like iphoto (the rolls and everything) But my videos did not work however. But I figured out that they were .mpg and they need converted. But I heard that what I did (using iphoto) won't work on reg. dvd players but for some reason it works on my blu ray. Anyways, I heard that using idvd will work. How do I get my pictures over to idvd and burn it to a dvd? I tried doing this once but the themes were what was messing me up. The pictures would show up in a theme and I don't want that just the pictures. Any advice, tips, etc would be appreciated!

    Hi lace66
    Welcome to apple discussions. You may wish to pose the very same question to the iPhoto Forum also since I'm not 100% certain if any of the following apples to iPhoto 6 => iDvd. It's really a question for that particular forum. It's been months since I've worked in earlier versions of iLife. However, w/in ilife'08 as well as the latest iLife version '09; you could do it easily like this:
    click here
    Essentially you simply select the photos you want within iPhoto, go to the top menu where it says "Share" => Send to iDvd. Or (another option) you could burn your photos directly one step down on the drop down menu where it says "Burn" (directly below "send to iDvd") if I'm not mistaken.
    Hope this helps but if not just come on back.
    Message was edited by: SDMacuser

  • I lost my iphone 4 and had pictures on icloud. I got another iphone 4, how can I put my pictures from icloud to iphone 4?

    How can I restore my pictures in iCloud to new iPhone4?

    Welcome to Apple Communities
    Go to Settings > iCloud and log in with the Apple ID. Then, go to Photos > Photo Stream and you should see your photos. Press Share button, select them and import to your device

  • How do i put multiple pictures on one slide in the slideshow module?

    The lightroom slideshow module appears to only allow one picture or one video per screen.  I would like to put everything within one folder (usually 4 pictures) on one screen.  any way to do this?  Does anyone know software that will do this if lightroom doesn't?  Thank you!

    You could do this with Photoshop or using just Lightroom you could "print" mulitiple pictures to a jpeg file and then import the jpeg for your slideshow. Look under Print Job near the bottom of the print screen and choose jpeg file for Print To.

  • How can I put selected pictures from camera roll into a seperate album removing them completly from camera roll??

    Im gunna be straight up honest here.. I have some rude pictures of my girlfriend on my iphone which I would like to keep for my own personal viewing but obviously dont want family and friends seeing when they are flicking threw my camera album which often happens. I had intended to make a private album put them all in there and put a passcode on the album. With all of apples features I would of thought this would be a standard thing you could do, however when I made the private album the pictures were still in my camera roll and if I try to delete them I am told the pictures will be removed completly from my phone.. This is stupid. What is the point in being able to make albums if the pictures are going to still all be in the camera roll!? Does anybody know of a way I can move pictures from camera roll to a private album?? Any help would be much appreciated.

    Photos placed in a user created album or in an existing album are not copied/duplicated. The photos placed in an album include a pointer to the original photos stored in the Camera Roll. Having an album for select photos is for viewing the select photos only without having to see all photos in the Camera Roll.
    The same applies to albums transferred from your computer. All photos transferred from your computer are stored in the Photo Library. Photos on the albums below include a pointer to the original photos stored in the Photo Library. The photos appear as they are duplicated when they are not. This way you can view the photos in an album only by selecting the album, or all photos on the Photo Library or Camera Roll by selecting it.

Maybe you are looking for