Problem with layers in saving logo as jpg

Hi- I created a logo in Illustrator and brought it into Photoshop. I wanted to save it as a .jpg in My Pictures to upload it to a website. But when I tried to change from the file extension psd to jpg, I got a dialogue box which says I'll have to save it as a copy. Under Save Options, there is a caution sign next to Layers. Under Color, it's checked next to the ICC Profile: US Web Coated (SWOP)v2. Also checked is Use lower case extension. When I save it as a jpg anyway and try to upload it to the site, it shows up as a box with an "X" in it. Can someone tell me what I've done incorrectly? Thanks!

OK, no problem. Here's the process I've been going through. I click Save
As. A dialogue box appears with "Save As" at the top. I save it in My
Pictures, as this is where I access images for this website. Under
"Format", I select .jpg. As soon as I do this, in the "Save Options"
section below, I see a yellow caution sign next to "layers" and at the
bottom a message appears which says, "File must be saved as a copy with
this selection". This is confusing, since I've gone through this process
before with other logos without having this problem. I'm wondering if it
has to do with the Illustrator file I originally brought into Photoshop.
Thanks for your help.

Similar Messages

  • A Problem with Layers

    I am having a problem with layers in different browsers. I
    have a menubar with some drop-down items. Some of these need to
    fall over other page objects such as GIFs. The problem is that in
    order for that to render correctly in IE, I have to set the z-index
    of the GIF to -1. However a GIF set to -1 doesn't render at all in
    Netscape. If I set the z-index to 0 it works fine in Netscape but
    not in IE. Has anyone dealt with this problem???

    Ugh. You are in deep doody.
    Your only option now is to hack mm_menu.js, and change all
    instances of -
    z-index="1"
    to -
    z-index="99"
    But - perhaps it would help if you read what the 'author' of
    that menu code
    (he adapted it, actually) says about the menus -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    In addition, this page will show you the potential problem of
    building with
    only layers -
    http://www.great-web-sights.com/g_layer-overlap.asp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "glen_nicholls" <[email protected]> wrote in
    message
    news:enm2cp$de7$[email protected]..
    > Yes, everything on my page is in layers. Is that OK?
    Also I created my
    > menu in Fireworks.

  • Saving logos as jpg, eps, and png. What mode do I create each in? RGB or CMYK?

    Question... My client has asked for their logo as a JPG, EPS and PNG. They want a file ready to go, so they can fire off logos to whomever for whatever purpose.
    The Pantones are selected. My question, what mode do I create each format (jpg, eps, png) in? CMYK or RGB? Or do I create a CMYK and RGB of each for each format? (The more I know, the less I understand)

    Wow, thanks for your input. I also spoke with a printer with whom I'm working on another job.
    I think I've really over-complicated this, and here's all I really need to send them:
    EPS: Pantone, CMYK, RGB (I have read EPS's are outdated, but she didn't have a problem with it. This way they can take the Pantone colors and try to replicate them as closely as possible)
    JPG: Pantone, CMYK, RGB (per your earlier comments)
    PNG: Pantone, RGB (Web usage)
    PDF/X-4: Printer didn't have strong feelings on this format. She said the EPS would be fine. I'll still send it though.
    Sound good? (I like affirmation)

  • Printing Problem with layered photos

    I have sent my InDesign document to the printer for reproduction.  There seems to be a problem with the output.  A couple of the photos (layered) did not print.  On my personal printer they print fine both directly from InDesign and the PDF I created.   Any suggestions?

    You probably need a global CSS file for your GoLive site. 

  • Problem with too automatic saving

    What can i do to prevent a pdf to be saved on my worktop automatically?

    you mean by OS the windows version? that's windows 7 and the reader x is vers.10.1.3.
    the pdf files come by a purchasing system and i open one, and then look the info on it, and then close the window with x, and then the file goes automatically on the worktop..
    is the problem with purch.system->sending the files to me? or are the saving settings adjusted so that the saving default is on desktop? how do i change the settings i a way that all future pdfs that come, would automatically either not be saved in my computer at all (since they exist in that purch.system) or they would be saved in file only for those which come throuhg the puch.system? Or is the settings adjusted by the sender of those files, and then i could not change the settings at all?

  • Problem with formatting the saved text to hard disk

    I use a modified code from Macromedia for saving the content of a text filed on hard disk. See code at the end.
    The code works fine and a text file is saved in the given location on the hard disk.
    The problem is that all of the content of the text field appears in a very long single line.
    The line breaks in the text field does not appear at all in the saved text file.
    for example:
    if the following is the the content of the text filed on the stage:
    abcdef
    jhijklm
    nopqrst
    uvxwyz 
    then the saved file is like: abcdefjhijklmnopqrstuvxwyz 
    No line break happens! How can this be fixed?
    Thanks for any suggestions.
    HR
    ******************* Here is the code *************************
    --this handler saves the contents of the field into a text file called 'output.txt'
    --it over writes anything that is in the 'output.txt' file.
    global myFile
    on mouseUp
      if objectP(myFile) then set myFile = 0  --Delete the instance if it already exists
      myFile = new(xtra "fileio")    -- Create an instance of FileIO
      openFile (myFile, the moviePath &"output.txt",0)--Open the file with R/W access
      delete(myFile) --deletes the file
      createFile (myFile, the moviePath &"output.txt) --creates the file again
      openFile(myFile,the moviePath &"output.txt,0) --Open the file with R/W access
      mySaveString = member("input").text --puts the contents of the field 'input' into the variable mySaveString
      writeString(myFile,mySaveString) --writes text to the file
      closeFile(myFile) -- Close the file
      myFile = 0 -- Dispose of the instance
    end

    You need to replace the carriage returns (that aren't followed by a line feed) with the CRLF combination. Feel free to place the following JavaScript handler into a movie script and call it prior to writing your string to disk:
    function jsStringToDOS (str) {
      return str.replace(/(\x0D)(?!\x0A)/g, "\x0D\x0A");
    global myFile
    on mouseUp
      if objectP(myFile) then set myFile = 0  --Delete the instance if it already exists
      myFile = new(xtra "fileio")    -- Create an instance of FileIO
      openFile (myFile, the moviePath &"output.txt",0)--Open the file with R/W access
      delete(myFile) --deletes the file
      createFile(myFile, the moviePath &"output.txt") --creates the file again
      openFile(myFile,the moviePath &"output.txt",0) --Open the file with R/W access
      mySaveString = member("input").text --puts the contents of the field 'input' into the variable mySaveString
      mySaveString = jsStringToDOS(mySaveString) -- convert to Windows CRLF characters
      writeString(myFile,mySaveString) --writes text to the file
      closeFile(myFile) -- Close the file
      myFile = 0 -- Dispose of the instance
    end

  • Problems with PDF's saved in illustrator

    Hello,
    I have designed a menu for a client in illustrator & saved it as a PDF. Which when I save it looks like this....
    Now the client has come back me, because when they upload it to the printers website it looks like this....
    I have tried saving it in different sizes & unticking & ticking certain options in the PDF save menu but each time it is uploaded on the printer website, it comes out looking wrong (not always the same either, but still missing chunks or pixelated with colour changes)
    Anyone have any ideas where I am going wrong? It always looks fine on my laptop, its just when it is uploaded on the printers website?
    Thanks! =)

    sorry about the 'export' confusion--my brain was functioning in indesign mode.
    here is what I have tried --I don't have illustrator here at home--so I used my work VPN to log into a machine that has  CS5:
    analysis---
    file was created in Illustrator 5.1 (part of the CS 5.5 Suite).
    no spot colors
    file size is 9.6 MB
    no bleed set on document
    artboard is 4.25 x  6.25
    all objects appear to be vector
    all text is outlines
    I tried to make it all work and may have a solution (I made a new file but it's 11 MB--probbably too big for email)
    possible solution:
    1.make a new layer and make sure it's the topmost layer
    select all the text items (VEGAN, address block, all menu items) move them to topmost layer.
    2. turn OFF that layer
    3.select all on original layer--go to Object>Rasterize--in dialog that opens--set rasterization to CMYK--600 dpi--then click OK--this will rasterize the baskground.
    when it finishes...turn new layer back on--save file with a new name (so you still have your original intact).
    4. make your PDF for the printer from that NEW file.
    I've attached a jpeg of what your finished document should look like (assuming the finished piece is supposed to be 4-1/4 x 6-1/4) it may need more bleed (top, bottom and right side).
    hope this will solve your problem...good luck

  • Problem with lowercase when saving in custom SAP table.

    Hi Gurus,
    I have a problem in saving entries in a custom table in SAP.
    When I enter a name with combinations of upper and lower case in SE16, when saving, my entries were all converted into uppercase. That goes as well in passwords. That's my concern, how can I check passwords if combinations were disregarded?
    My parameter fields for these were just type CHAR.
    Is there a way I can save data as how they were entered?
    Thank you in advance for your responses Gurus...

    Hi,
    Check the Domain of the field and select Lower case check box if it is a Zdomain or else create the new domain or check for one like this.For example..
    Table PA0002 which has a field NACHN and Data element assigned to it is PAD_NACHN...double click on the Data element and now again double click on the Domain and now Under Ouput Characteristics check the Lower Case check.
    And now database get's saved with what ever case you entered

  • Problems with layers after Camera RAW plug in installed

    Hello all,
    I am rather new to Photoshop, so please excuse what maybe an easy question, I have made a few images into black and white and added color to them in select parts.  Not to long ago I downloaded the new Camera RAW plug in to work on NEF pics.  Now I can not get the layers to work.  For some reason it is not allowing me to remove the black and white layer and bring out the color.  This is true in RAW-I get an Alpha Channel error if working in RAW or the brush will not work in the BW image saying it is not allowed on a layer?
    What am I missing?  I am thinking there is something really basic that I can not figure out.  Any help is appreciated.
    Mike

    The Camera Raw plug-in is part of the original default Photoshop installation.  If you downloaded a newer version, it should have replaced the original one.  Where did you install it?
    Layered files have absolutely nothing to do with Camera Raw.
    However, you have not given us details and your description of your problem is far from clear.  Please explain.
    Please read this post by a forum host for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/375816?tstart=0
    Thanks!

  • Problem with layered Photoshop-menu

    Hey everybody,
    I have encountered a rather frustrating problem in DVD Studio Pro 4.2.2.
    I'm working on an educational DVD with circa 50 clips on it, therefore, I've ended up with a somewhat complicated menu. Complicated may not be the word, as much as large.
    What I did was really simple, I created a Photoshop-file for each menu with three layers for each button – one for normal state, one for selected state and one for active state. This has gone smoothly and looks great.
    So to my problem; I simulate the DVD and everything works fine and as it should. I do notice some delays at the heavier menus, but not enough to really bother.
    When I build and format the DVD, however, and hover the options in the menu, nothing happens, when I really wish to see the selected state of the button. Not until I click a button it becomes selected, which means I have to click a button a second time to operate the DVD to its action.
    I'm aware of that there are no mouseover function on a DVD since DVD-players generally don't have mouses connected to them. Nevertheless, the DVD-application, in my experience, gets that when I hover a button I want to have it selected.
    I've been sitting all day trying to get to the bottom with this, without luck. And my first thought was to make a new smaller project using the same Photoshop-file and see if there was some error in my real project. But, like I said, without luck.
    I originally made this with the "color-coding" and then everything worked fine, but I thought that it was too much of a quality loss in texts to use that method, and therefore, ended up with the layered photoshop-file solution.
    Has anyone encountered the same problem, and does anyone know how to solve this problem of mine?
    Help highly appreciate.
    Best,
    Andreas

    There are many reasons to not use Layered Menus, you have encountered just one. There is no mouse-over for Layered Menus. The person has to click once to select the button, then they have click again to activate the button. Another problem is that there is a 2-3 second pause each time a button is selected. On a stand alone DVD player this means that the end user could have to wait 30 seconds or more to get through menu (an eternity compared to standard menus, which everyone one is used to).
    The solution is to use Standard Menus, not Layered Menus.

  • Problems with Layers in CS4

    I have Dreamweaver CS4 setup on a new Win XP Pro computer
    with 1gb of memory.
    I was setting up a webpage that would act like a manual
    photogallery. The user by clicking on one image could change to the
    next image.
    Everything was done using AP Div and hiding all the layers
    except the first one. This all went well until I tried do two
    things.
    The first was to Create a Class for the layers called "Hand",
    so that when the user moved the cursor over the layer(or image),it
    would turn into the hand icon.
    Normally I would done this by:
    Open the page with the layers, then in code view, put the
    cursor on any layer name. In the Property Selector, in the Class
    Box choose "Manage Styles". From here I could create a Class named
    Hand and apply it to all the layers.
    In CS4 this is NOT an option and I need to know how to get to
    the option called "Manage Styles". Another option (general) is how
    to create a New Class for layers in CS4.
    The second problem, was with Behaviors. To change images, I
    used "Show-Hide Elements" with trigger being "onClick". That did
    NOT work.
    That not working, I switched to the trigger "onDblClick".
    This did work. Is this a glich in CS4 or something I can fix? I see
    this as a minor thing and was just wondering.
    BTW Adobe did a nice job grouping the CSS Styles, AP Elements
    and Tag Inspector Panels. Saves space and is very nice way to set
    it up.
    Any help would be greatly appreciated.
    If needed sample pages can be put on the web to see the
    code.

    > The first was to Create a Class for the layers called
    "Hand", so that when
    > the
    > user moved the cursor over the layer(or image),it would
    turn into the hand
    > icon.
    Out of the block this means that you are improperly applying
    the behavior
    directly to the <img> tag rather than to an anchor tag
    - <a> - surrounding
    an image. All behaviors should be applied to anchor tags
    (usually). To fix
    this, select the image, and in the BEHAVIORS panel, change
    the onclick event
    to <A> onclick. That will have the effect of wrapping
    the image with an
    anchor, and at the same time, moving the behavior call to
    that anchor. Do
    this for each such image. To change the event, click on the
    onclick event
    in the event column, and then select the dark arrow to drop a
    list of
    choices. Now you will not need the custom CSS class, as links
    on an anchor
    always get the correct pointer by default.
    > The second problem, was with Behaviors. To change
    images, I used
    > "Show-Hide
    > Elements" with trigger being "onClick". That did NOT
    work.
    It should. If you select each individual image's anchor (or
    apply the
    behavior first, and use the event change I described above)
    you should be
    fine.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "fawny111" <[email protected]> wrote in
    message
    news:[email protected]...
    >I have Dreamweaver CS4 setup on a new Win XP Pro computer
    with 1gb of
    >memory.
    >
    > I was setting up a webpage that would act like a manual
    photogallery. The
    > user by clicking on one image could change to the next
    image.
    >
    > Everything was done using AP Div and hiding all the
    layers except the
    > first
    > one. This all went well until I tried do two things.
    >
    > The first was to Create a Class for the layers called
    "Hand", so that when
    > the
    > user moved the cursor over the layer(or image),it would
    turn into the hand
    > icon.
    >
    > Normally I would done this by:
    > Open the page with the layers, then in code view, put
    the cursor on any
    > layer
    > name. In the Property Selector, in the Class Box choose
    "Manage Styles".
    > From
    > here I could create a Class named Hand and apply it to
    all the layers.
    >
    > In CS4 this is NOT an option and I need to know how to
    get to the option
    > called "Manage Styles". Another option (general) is how
    to create a New
    > Class
    > for layers in CS4.
    >
    > The second problem, was with Behaviors. To change
    images, I used
    > "Show-Hide
    > Elements" with trigger being "onClick". That did NOT
    work.
    >
    > That not working, I switched to the trigger
    "onDblClick". This did work.
    > Is
    > this a glich in CS4 or something I can fix? I see this
    as a minor thing
    > and
    > was just wondering.
    >
    > BTW Adobe did a nice job grouping the CSS Styles, AP
    Elements and Tag
    > Inspector Panels. Saves space and is very nice way to
    set it up.
    >
    > Any help would be greatly appreciated.
    > If needed sample pages can be put on the web to see the
    code.
    >

  • Problems with playback and saving sessions

    Hi, guise!
    I've run into two annoying problems:
    1) For some unknown reason, the playback in new sessions is limited to -3db. So when I start a new 16/41000 session and import a commercial mp3 song just to check out its spectrum or tone, it's only hitting -3d on a meter, though it should be like 0db and clipping. Track volume = 0, master volume = 0. I've never seen this before, it's been happening to my Audition for a week or so, and I'm pretty shure I didnt change anything.
    2) When saving huge sessions with like 35-45 tracks or so, sometimes it suggests to save unchanged audio files, too (so I end up with Overheads, Overheads (2), (3), (4), etc. That's the most annoying thing, baaargh!
    Any pieces of advice?

    Potapka wrote:
    1) For some unknown reason, the playback in new sessions is limited to -3db. So when I start a new 16/41000 session and import a commercial mp3 song just to check out its spectrum or tone, it's only hitting -3d on a meter, though it should be like 0db and clipping. Track volume = 0, master volume = 0. I've never seen this before, it's been happening to my Audition for a week or so, and I'm pretty shure I didnt change anything.
    Hmm... go to Preferences > Multitrack, and reset the Stereo Panning mode to L/R cut logarithmic rather than -3dB center. This won't happen then.
    2) When saving huge sessions with like 35-45 tracks or so, sometimes it suggests to save unchanged audio files, too (so I end up with Overheads, Overheads (2), (3), (4), etc. That's the most annoying thing, baaargh!
    Yes, it's annoying. If you are absolutely sure that they aren't changed, then delete the extra ones. You might want to have a look at Mediasweeper too.
    Hi, guise!
    Any pieces of advice?
    Please use normal english spelling - that way I don't feel as though I want to hurl...

  • MSI R9 270x and problems with switching power-saving modes

    hi,I bought this video card but now I began to twitch screen sometimes when switching video card power saving modes
    it all happens in a game, or at the sites but not on the desktop
    how to disable power saving mode so that it always runs at maximum frequency?
    or how to disable Perf Level 0

    Ok, sorry about that.
    Currently seem to have a Grey Screen whenever I boot the desktop with the graphics card installed.
    1. I tried system restore to see if it was a program causing the grey screen, but same problem.
    2. Tried installing the cd version of the AMD drivers same problem.
    3. Installed the latest version of the driver, as well as, beta version same problem.
    4. Removed the graphics card and put it back in booted up, same problem.
    5. Also tried the Molex Cables that came in the box to different power supply on the PSU, same problem.
    PSU:
    Main Board: MSI Z77A-G45
    Bios Version:Version: V2.12, (9/29/2013)
    Video Card Driver Version:13.250.18.0
    Video Card BIOS Version:113-C6310100-X15:
    Video Card: msi R9 270X Hawk
    Video Card S/N: 602-V303-02SB1309098658
    PSU: 650W TX650 V2 PSU 80 PLUS Bronze  
    12v rail Rating of listed PSU: +12V_53A, -12V_0.8A
    CPU: Intel Core i5-3570K CPU @ 3.40GHz, LGA 1155, 77W
    Memory: Corsair Vengeance 16GB (2x8GB) DDR3 1600 MHz (PC3 12800)
    SSD/ HDD: 120GB SSD, 1TB HDD, 150GB HDD
    CPU COOLER: Cooler Master Hyper 212 EVO
    OC:No
    Operating System: Win 8 Pro 64bit

  • Problem with photos not saving in camera roll

    When I went to take my pictures from my iphone onto my laptop today I discovered I had 2 folders, 100apple and 101apple.
    I assumed this was due to the fact that I had reached over 1000 photos, and the numbers have rolled back to 001, hence the new folder.
    I moved my photos from my iphone to my folders on laptop, then synched with itunes.
    I then tried to take another photo and it wouldn't save.
    I have restored my iphone twice, tried taking a photo each time and it has worked.
    Then a while later it is back to not saving the photos I take!
    I am at the end of my tether right now as I have spent all night trying to sort this out for it to work then undo itself!
    Help would be appreciated.
    I have tried deleting the 101apples folder but I am continually being told the folder isn't available as it has been disconnected!

    blueeyes32f,
    Have you done a restore of the iPhone, and without loading the backed up data?
    Thank you,
    Nathan C.

  • Problem with attachments automatically saving as Firefox documents

    As my older Dell CPU does NOT have any USB ports, a friend of mine is uploading photos to her laptop with Windows 7 (my computer is running XP) but when she goes to save and attach them to Yahoo! emails sent to me, the photos themselves are completely visible within the body of those emails; attempts I make to save them to my desktop result in their being strictly Firefox documents opening a new FF window every time. While I CAN view them with the Windows photo viewer by specifying it, they still CANNOT be attached/uploaded or are visible within upload windows even after adding the .jpeg file extension and quotes as instructed.....I'm not sure if the issue lies with Windows 7 and her configuration of the attachment mechanism, Firefox and/or Yahoo! conflicts or a combination of everything. Please advise; never had this problem before now!

    Ask your friend with the Win 7 OS to zip the images before she sends them to you. Also, she needs to add them as an attachment, not by dragging and dropping them into a mail.
    By the way, when you say your 'cpu' doesn't have any USB ports, are you talking about a laptop, or a PC?

Maybe you are looking for

  • How do I use itunes from an external HDD on a new laptop?

    This really does seem to be an unanswerable question but you guys have helped so many times in the past without me ever having to post. Here is my set up when I first got iTunes way back I had it on my first laptop, we'll call this PC A, but the Hard

  • Intalling LXDE

    In the name of God Salaam, I'm new with ArchLinux. I install it on VBox. I want to have a GUI for my Arch, and I choose LXDE(because of simple) but I can't run it. I've installed it, but I can't run it. When I type: "exec ck-launch-session startlxde"

  • HT1459 Can Ipods be tracked by the serial number?

    My 4th generation ipod was stolen last night, I have no idea who took it. However i have the original box it came which of course contains the ipods serial number. Is there anyway apple or the authorities can help me recover this ipod?

  • How to Learn Flash CS3

    Hi All, I want to learn the Flash CS3 framework and technology with ActionScript2.0. Please send me some links for that or guide etc. Thanks, Kamalahasan.K

  • How to enable Database Queuing in Oralce8i?

    Hi, I have checked V$OPTIONS view and i see that the status of Database Queuing is FALSE. How do i make it TRUE? I want to basically enable Advance Queuing in my system using Oracle 8i (8.1.5). Thanks! Sanjay