Assistance in making CD label

I am a NEW user to photoshop premiere elements 9.  I am trying to make a CD label and everytime it comes up that I need to do a download, but then states it cannot open the file for the download
What am I doing wrong?

You probably want to post the question over in the premiere elements forum where folks are more
familar with premiere elements, as this is the photoshop elements forum (different program)
http://forums.adobe.com/community/premiere_elements

Similar Messages

  • Urgent assistance needed on textfields/labels please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one.
    My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
    The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    public void init() {
    backgroundColor = new Color(200,255,255);
    this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
    makeButtons();
    row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row1.add(clearB);
    row1.add(studFindB);
    row1.add(studForB);
    row1.add(courB);
    row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row2.add(studBackB);
    row2.add(courFindB);
    row2.add(courForB);
    row2.add(studB);
    row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row3.add(courBackB);
    add(row1);
    add(row2);
    add(row3);
    Panel p = new Panel(new BorderLayout());
    Label studID = new Label("STUDENT ID");
    TextField entry = new TextField(" ");
    p.add(studID,BorderLayout.WEST);
    p.add(entry,BorderLayout.CENTER);
    Label firstTF = new Label("FIRST NAME");
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    setBackground(backgroundColor);
    clearB.addActionListener(this);
    courBackB.addActionListener(this);
    studB.addActionListener(this);
    courForB.addActionListener(this);
    courFindB.addActionListener(this);
    studBackB.addActionListener(this);
    courB.addActionListener(this);
    studForB.addActionListener(this);
    studFindB.addActionListener(this);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    appletWidth = 8*4+row1.getSize().width;
    appletHeight = 8*(2+courBackB.getSize().height);
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB,
    studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    thanks in advance for anything someone can do for me

    I haven't tried your code, but since you use a layout manager, you shouldnt need to think about setting the size for the applet.
    And I think when you call the method makePanel the last 4 times, you want to use the returned panel to add your components on. Right now you add everything directly to the panel and never use the panels you create.
    And you also reuse some of your components more than once (like e.g. courBackB). You need to create a new button everytime, otherwise if you try to add the same button twice, the second one will not be displayed.
    Try to add the components one by one and check it is displayed before you add the next one.
    If you want to check what components and their sizes etc, you have on your applet, here is a little trick. Get the focus on your applet and press ctrl+shift+F1. If you run the applet in a browser, you will get something in the java console that displays all your GUI components and a description of them. So
    It might help you.
    Also take a look of the Java Tutorial for the AWT. You can download it from
         http://java.sun.com/docs/books/tutorial/information/download.html
    called tut-OLDui.zip.

  • Making Address labels

    Is it possible on the Mac system to create standard Avery labels using Pages, for contacts which are listed in a Numbers spreadsheet? (At the risk of my APPLE self-destructing, I used to be able to do this with MS Word and Excel ! It was a form of mail merge.)

    These restrictions strike only for those ignoring my script available on my idisk :
    <http://public.me.com/koenigyvan>
    download :
    For_iWork:iWork '09:forNumbers09:forlabels.sparseimage.zip
    Yvan KOENIG (VALLAURIS, France) lundi 29 novembre 2010 18:38:39

  • Help making a label clickable

    HI,
    I am currently triying to set up a JLabel so that it can link me to go to another page in the GUI. Could anyone possibly help please
    many thanks

    JLabel label = new JLabel();
              label.addMouseListener(new MouseListener() {
                   public void mouseClicked(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseEntered(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseExited(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mousePressed(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseReleased(MouseEvent e) {
                        // TODO Auto-generated method stub
              });you probably want the mouseReleased method to do the business

  • HT5330 I'm confused. Apple support person assisted me making move to Cloud, without Lion. But I never changed Mail acct settings.

    I'm confused. I am in Snow Leopard and have had a .Mac (.me) address for years. I made the move to Cloud, without Lion. Had an Apple support person on the phone to assist since I wanted to be sure about not losing my email address. Got an email from Apple confirming. It says "Your mail will be moved to iCloud after June 30th. You can continue to send and receive mail at your [email protected] address after MobileMe ends on June 30, 2012."
    But I never changed any Mail accountt settings. When I look at my Mail preferences-account info, it says Account Type: MobileMe IMAP, but Incoming server is still mail.me.com and Outgoing drop down shows Mail-mobile me.

    Yes, shortly before the switch over on June 30, apple announced that the mail settings for the old MobileMe account would continue to work after the switch over.
    Some people have found that this has not been the case and have addressed the situation by manually setting up their mail settings as follows:
    Delete your mail account from Mail preferences and set it up again using the Mail Server Information.
    Some users have apparently encountered issues using this information in pre-Lion set ups (I haven't), Roger Wilmut has kindly provided instructions for those who find themselves with this problem.
    Entering iCloud email settings manually in Snow Leopard or Leopard

  • Making a label background change

    I use this code now but it dunna work...
    what am i doing wrong?
    // Label Online : Red when not in contract, blue when in contract.
    l_online.setBackground(Color.red);
    l_online.setForeground(Color.black);
    l_online.setText("Online");
    gbc_contr.gridx = 0;
    gbc_contr.gridy = 0;
    gbc_contr.insets = new Insets(15, 25, 0, 5);
    gb_contr.setConstraints(l_online, gbc_contr);
    contr_client.add(l_online);

    Hi,
    If I've got you right, you want to change the background color of your label according to a value..
    say when value=0, you make the bgcolor red, otherwise, it is blue...
    label.setBackground(Color.red) works when you say
    label.setOpaque(true).
    I think it is false, by default.
    Here is a code sample...
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.border.*;
    public class Test extends JFrame
         JLabel label;
         Test()
              getContentPane().setLayout(new BorderLayout());
              getContentPane().setBackground(Color.black);
              label = new JLabel("Data");
              getContentPane().add(label,BorderLayout.NORTH);
              setSize(200,200);
              setVisible(true);
              int value=0;
              label.setOpaque(true); //Note this
              System.out.println(label.isOpaque());
              while(true)
                   if(value == 0)
                        System.out.println("RED");
                        label.setBackground(Color.red);
                   else
                        System.out.println("BLUE");
                        label.setBackground(Color.blue);
                   try
                        Thread.sleep(2000);
                   catch(InterruptedException ie){}
                   value=(value==0)?1:0;
         public static void main(String args[])
              Test test = new Test();
    }

  • Need some help in making a label disappear for certain time

    hi
    i need to make a program for my java class
    this is the question
    Design and implement a memory game. In this game you show the user a sequence of
    random integer numbers in the range of 0 to 99, and then ask him to type these
    numbers. Display how many he has remembered as a score. The level of game depends
    on how many numbers are there in the sequence. The duration of the display for the
    sequence is the speed. The user can adjust the level and the speed.
    my question is how to view the numbers for the game and make them disappear after certain time
    in need help with the syntax for it
    this is what i made so far
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.FlowLayout;
    import java.awt.Color;
    import javax.swing.JButton;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    class game extends JFrame implements ActionListener {
    public static final int WIDTH = 500;
    public static final int HEIGHT = 300;
    public static final int x = 3;
    public static final int y = 3000;
    public static void main(String[] args) {
    game gui = new game( );
    gui.setVisible(true);
    public game( )
    super("MEMORY GAME");
    setSize(WIDTH, HEIGHT);
    setDefaultCloseOperation(JFrame.EXIT_ON_…
    setLayout(new BorderLayout( ));
    JPanel buttonPanel = new JPanel( );
    buttonPanel.setBackground(Color.LIGHT_GR…
    buttonPanel.setLayout(new FlowLayout( ));
    JButton b1 = new JButton("MAKE IT HAREDER!!!");
    b1.addActionListener(this);
    buttonPanel.add(b1);
    JButton b2 = new JButton("MAKE IT FASTER!!!");
    b2.addActionListener(this);
    buttonPanel.add(b2);
    add(buttonPanel, BorderLayout.SOUTH);
    public void actionPerformed(ActionEvent e)
    String buttonString = e.getActionCommand( );
    if (buttonString.equals("MAKE IT HAREDER!!!"))
    else if (buttonString.equals("MAKE IT FASTER!!!"))
    }

    To post code, use the code tags -- [code]Your Code[/code] will display asYour CodeOr use the code button above the editing area and paste your code between the {code}{code} tags it generates.
    I strongly suggest you forget about the GUI part and first make a console application that fulfils the game specifications. If you have problems with this, you can post your questions in the New to Java section of these forums.
    db

  • How can I create labels in Pages?

    I dowloaded a template from Avery for return address labels, which supposedly could be used for Macs.  Although the labels were the right size, .5" by .75", and the columns and rows looked like they were the right size, the text printed outside of the labels.  I also tried to manually create template for labels by creating a table in pages but that did not work either.  Any ideas?

    The Avery label software, if available for your OS X version, may be a good idea.
    Theirs had been suggested over the past several years in these discussions.
    As far as Pages go, I've never used it though I have it. And also a good manual.
    But there are several versions of Pages, too, and so some aspects of that were
    changed over the range of OS X systems each was intended to work with.
    Apple support has this section specific to Pages. There may be certain parts
    of the information pertaining to older versions of that software suite...
    You could try making address labels from Address Book in the OS X,
    if you've used it and have a library of saved ones in there already.
    •Address Book: Printing mailing labels or envelopes with multiple names - Apple Support
    •Mac Apps - Pages - Apple Support:
    http://www.apple.com/support/mac-apps/pages/
    If you had a later version OS X, other options may appear in the App store for sale.
    On the topic of update, if your OS X is not already at 10.6.8, you could update it.
    Depending on the hardware version specification of the Mac, it may be able to be
    upgraded to a later full system. In older Intel-based Macs, Snow Leopard is good.
    Or, if your computer is a pre-Intel build architecture, (PowerPC) then it would not
    be able to upgrade past Leopard 10.5.8.
    In any event...
    Good luck & happy computing!

  • How do you type multiple lines on a path? (label for top slope of bottle)

    Ill describe the best I can...
    I am making a label that will wrap around the top half of a bottle, the part that slopes to the spout.  Because of this, the label is actually shaped more like an arch so when it goes onto the bottle, it will look more straight.  The top part of the label of course will be a tighter arch than the bottom half.  This is part of why its hard to make things look right.  I know I can bend a line at the same angle and type on it and it looks right but I have a paragragh I have to do this with, about 5 lines worth.  I dont want to have to make a different path line for each one because that would be a nightmare to get each line perfect with each other.  Is there a way to do the "type on a path" to work with multiple lines at once?

    Scott Falkner wrote:
    You can't. Each line of text requires an explicit path. You could draw the top line and the bottom line, then make a three-step blend between the two. Expand the blend then link the paths so that text from path 1 flows to path 2, and so on. In the example below each path is linked to the one below. I only needed to paste text into the top path. I was able to link to each following path by clicking on the red + at the end of the previous path, then clicking on the path below.
    You could also design the label flat and use a distortion envelope or Warp effect to bend it. This is how I have done such labels in the past. That method requires more experimentation, but makes edits easier.
    That seems to be something that might work out.  How do you separate each of the strokes from the blend to make them typable though?

  • Mac Disk Labeling software for free? No demo or trial software please!

    Hi!
    So my family has a memorex kit for making CD labels and DVD labels... but the problem is that it recommends to use exPressit software, and that's only available for Windows!
    I've done searches on software that works with memorex labels, and all of them aren't free, and if they have demo versions, it prints DEMO on the CD art.
    Is there any software that works with Memorex CD labels and is fully free? I have the images, I just need to print them onto the labels. Help please? (and please give links, thanks!)
    I have the
    CD and the jewel case spine label,
    and the
    memorex dual purpose CD label (for making jewel tray art and such). 73950878-A
    My printer is the HP Deskjet F4280 All-in-One.
    Any help would be greatly appreciated. I want software that works with these sheets, my printer, and is FULLY FREE. No demo versions or trial versions please! Thank you so much!

    Just my 4c.
    I've been using DISCUSS with a Canon i865 IJ printer very successfully for many years now. I can't recommend it enough. (As per a previous post). My PC friend decided to get a copy after he saw it on my Mac.
    It's NOT free, and because of it's artwork library you need to order a disc, but I think it's very much worh it. And I've found the more I use the program the better looking and more proffessional looking my discs and covers look. I have to admit I don't use the art library much, preferring my own images taken from the video.
    As to using "sticky labels"; I started out using them but switched to InkJet printing pretty quick as it was faster, easier and safer. No labels peeling off discs as mentioned etc.
    I know one of the reasons for using sticky labels instead of IJ printing is that labels allow a "gloss" finish. Up until recently IJ printing only offered a matte finish. (As far as I'm aware).
    InkJet GLOSS disc's have now become available, unfortunately they are currently extremely EXPENSIVE, so are really not an option for most of us just yet. Hopefully the price comes down.

  • Just the Label If You Please

    When adding a label (a/k/a filename) to the top of a print in PS CS3, I'm getting the active layer added. For example,
    BigRedBird.psd @ 16% (the wing only 91.3% scale--brightened +15 CS3, RGB/16)
    That makes it a bit messy (some of the layers have long titles), especially when showing proofs to clients. It is a real necessity to put a label on proofs as I have a lot of images that look very much alike and need that feedback to link prints to files.
    Back in CS2 (and earlier versions of PS), the label was just the file name. It is as though (from the Adobe Help Viewer for file -> print -> output popup), "If printing separations, the separation name is printed as part of the label."
    I'm clearly missing something. I've been through all of the preferences, Googled lots of discussion (get lots of advise on making DVD labels), and tried to search these forums.
    Any help appreciated,
    Bruce

    Christoph, thanks for the suggestion. I'd not thought of that and had to fiddle a bit to get it ('command click' is the trick).
    Unfortunately, even with no layer selected, it still does not give just the file name at the top of the page. A bit more gets added, e.g. 'BigRedBird.psd @ 50% (RGB/16)'
    Again, it is as though something related to printing separations.

  • Download Assistant is partially broken

    Greetings everyone,
    I'm trying to load the latest CS Trial, but the Download Assistant is making some trouble.
    I'm able to start the download, but the progress bar isn't doing anything even after 20 minutes. The Network monitor though shows activity.
    But i cannot either pause the download, or quit the app properly (I have to force quit it everytime).
    I'm on OS X 10.8.2 and have the latest version of AIR.

    Troubleshoot Adobe Download Assistant
    http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html

  • Setting Default Label Position

    Hi all
    When I create a Boolean (or anything else), LV defaults to putting the label above the control and left justified. I like to change that so that the default location for a label is just to the right and top justified.
    Anyone know how to do this?

    > Sorry, but don't believe you can--though that would be nice.
    > Personally I seem to spend half my life making contol labels
    > right-justified and aligned to the left of the terminal, and
    > indicators, left-justified and to the right of the control...
    >
    I've heard this advice about the justification before, but many times it
    doesn't seem necessary. If the label is totally above or below the
    control, then the justification will determine which edge of the label
    moves while the top or bottom is maintained. As long as autosizing is
    turned on and the label projected horizontally intersects with the frame
    of the control, the justification doesn't matter since the right or left
    edge, whichever is next to the control will be maintained.
    As for th
    e orginal question, this is something you can change with
    custom controls or typedefs, but the built-in control label position
    cannot be controlled.
    Greg McKaskle

  • Help - Final Cut the right option for making self-playing presentations

    Hi There,
    I'm been in a horrible place trying to export a presentation made in Keynote 2 into Quicktime. This presentation has audio embedded in the presentaion (not as an object on the slide) and also has quicktime movies on the slides. The movies have vector images building in and out that is supposed to follow along with the audio and video.
    The long and the short of it is, it doesn't work for what I want it to do.
    Keynote can't:
    A) set any timings that are accurate in any way
    (i need to have visualks sincing with an audio narration)
    B) can't export either at all at times or with any accuracy to QT.
    I need to be able to make QTs so they can be:
    A) made into steaming files that would be available online
    B) input into a DVD so they can viewed on a television.
    I know I attempted a cheat by trying to go about this through Keynote and it has failed. Now I have to figure out what will work, learn the app and rebuild the keynote files in the right program.
    Is final cut what I want? is express enough? Is there a presentation sofware out there that works? I was also told motion may be necessary? I know there is a strong possiblilty I was using the wrong piece of software for what I want to accomplish. I am will be willing to make the investment if I know it will be succesfull.
    I'm really at a loss and need advice to assist in making the right decisions to move foward. Help! and Thank You.

    All these applications will take some time learning to use effectively. I'd suggest you spend the time learning them before you tackle a project in earnest.
    The full version is a bit more complex to learn because there are many more settings and options, which aren't available in FCE, and which may make it more daunting. The applications themselves behave very similarly, and anything you learn in FCE will apply to FCP.
    I'm an Apple certified Final Cut and Motion trainer. Is Motion overkill? Can't answer that for you. It is very easy to use and to get going and be productive. It also comes with excellent templates. If you get Studio you get LiveType as well, and all the applications integrate easily, LiveType to Motion to FCP and any combination of that. I like LT a lot, but Motion is fun to use too, very dynamic in what you can create in real-time on the fly. It does require horsepower though, lots of RAM and a fast graphics card. You might find it a bit bogged down on a PowerBook as the project gets more complex. Motion is really designed for short pieces, motion graphics elements, opening titles, interstitials, not for doing whole programs.

  • Modification Assistance ON Mode ?? Help !!

    Hello friends,
                  I have switched off the Modification Assistant for my program, se38>Edit>Modification operation-->switch off the assistance.
    I havn't made any changes in code.Now i want to switch ON the Modification
    assistance,thus making source code again in amsked mode so as to keep proper
    version management.
    I have looked for such option but was not able to find .
    Kindly help me to sort this problem.
    Regards
    Jase

    Once you tansport the changes of the object and Try aftet that i think it will be switched on automatically...

Maybe you are looking for

  • PDF file in java

    Hai everyone, Is it possible for me to display a pdf file in an applet or an application?? if yes , please give me a link where i can get the informatio about .. thanx Peter Iyer

  • Get path to folder on server

    Hi. I've got the following folder structure for my servlet, -data   -webapps     -testApp        -uploads        -WEB-INF           -com              -mycompany                 -packageName                    -UploadHandler.class     -secure        -

  • How to trim the spaces at end of the line

    Hi, My requirement is to spool the data returned by query with column seperator as "|" . I am setting linesize before running the query and can't expect the exact linesize. There may be extra spaces also. Example: 2030588|EPM_NA_US_RMT_12295_________

  • 10.1.0.3 Agent on 10.2 RAC Cluster

    Has anyone sucessfully installed the 10.1.0.3 OEM agent on a linux based 10.2 RAC cluster? I can not seem to find any documention on this. I have 10.1.0.3 agent running on 10.2 "non-rac" nodes but the installer seems to have difficulty when I try to

  • Optimum Video File Size To Avoid Buffering?

    I am attempting to encode two 3 minute .flv files for my client for their website. I have encoded both of them under a number of settings and I am now down to tiny 8mb files in order for only one of them to play without excessive buffering. It will p