Layers in CS4

New to CS4 and not well versed in HTML.  Sometime back in an older version of DW I used layers to position photos and text on a web page.  I now have CS4 and cannot figure out how to create a layer.  Help menu says to simply Click on Insert>Layout Objects>Layers from the menu bar.  Problem is I do not have a layers option in my menu bar.
What am I missing?
imac v 10.5.7

The use of AP divs is not a good way to layout a page... here's why:
http://apptools.com/examples/pagelayout101.php
Here are some links that will help you along the path to the correct way of creating a web page:
http://www.w3schools.com/  
This is a good reference site for all things HTML/CSS.  You should really have at least a basic understanding of HTML or CSS or using Dreamweaver will lead to much frustration.
http://www.macromedia.com/devnet/mx/dreamweaver/css.html
http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html

Similar Messages

  • Why Does Premiere Pro CS4 Import Only 10 Seconds Of Layered Photoshop CS4 .psd??

    Why Does Premiere Pro CS4 Import Only 10 Seconds Of Layered Photoshop CS4 .psd??
    I have a 24 second clip I layered in Ps and when I import the psd into Pr THE SEQUENCE IS ALWAYS ONLY 10 SECONDS!
    How can I change this?  Why does this happen?  I really need to know as soon as possible.  I have a video project due this Wednesday (granted it's for an AV class where I'm just learning Pr.  But I can learn VERY FAST!)
    Thanks for your help.
    --OSXniCKels

    Just in case I wasn't clear in my last line "just Click-drag on the Tail of your .PSD to set the desired Duration," once you have Imported your .PSD (as Footage), just drag it to the Timeline, Click-drag on the right-hand margin (the Tail) and stretch out its Duration, as is required.
    Now, if you Imported as a Sequence, open that Sequence's Timeline, and do the same.
    I normally will set my Edit>Preferences>Still Duration to about what I think will be applicable, do my Import, and then with the Info Panel handy, just alter the Duration to suit.
    Good luck,
    Hunt
    PS - Welcome to the forum.

  • Why can't I see the layers of cs4 .psd files passed to me in photoshop elements 11?

    why can't I see the layers from cs4 .psd files passed to me in photoshop elements 11?

    You should be able to see normal layers, but PSE doesn't understand layer groups/sets or comp layers. The inexpensive add-on elements+ from simplephotoshop.com will let you expand layer groups. (If you also have Premiere Elements installed you should be able to see layer groups in PSE without adding anything.)

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

  • Preserving layers between CS4 & Lightroom

    I made a test psd file with three layers in Photoshop CS4. I imported that file to Lightroom 2.5. When I opened the file from lightroom into CS4 with the option 'Edit a Copy with Lightroom Adjustments', the file was flattened i.e. all layers merged. I shut the file down in CS4. When I checked opening the file directly into CS4, the layers were preserved. If I added a curves layer to the flattened file in CS4 after it had been opened from Lightroom,and saved it withe same file name, closed it down in CS4, and reopened it from Lightroom into CS4 using 'Edit a Copy with Lightroom Adjustments', again the image was flattened.
    Conclusion - Layered files do not have their layers preserved when imported to Lightroom and trasferred to CS4 for manipulation.. Is this correct? If so it makes it impossible to pass images back and forth between Lightroom and CS4 and make non destructive changes to an image. Again, am I right, or am I doing something wrong?
    Many thanks

    Thanks, Jao
    It's a pity
    though I see why. Trouble is that, good though Lightroom's develop capabilities are, it often seems a rather 'blunter' tool to work with. I love it for its black and white conversions, and for its gradient dodging and burning, but to work on smaller areas of tone in images needs Photoshop, in my estimation. Because of the above cited interaction between the two, the holy grail of non destructive manipulation is unattainable. Sigh.......

  • Layers in CS4 - PDF?

    Hi All,
    Weird thing... When we used Illustartor CS3, we could save a file as a PDF file, and retain all of the layers. Now, with CS4, when we save it as a PDF file, the layers are flattened. This is not good for us as we use an Onyx RIP that seems more comfortable with PDF files than AI files, so we save all of our files as PDF files, but we need them to retain their layers! This worked fine in CS3... We save 10-20 files a day and are forced to keep using CS3 on one computer until this is fixed.
    Any idea what I'm doing wrong?
    Thanks,
    Evan

    Hi Wade,
    Sorry, was off of this project for a while but am now back to it.
    I think I may hav egiven the wrong impression. I'm not worried about opening the PDF file in Acrobat. What we do is save the file as a PDF so that our RIP (Onyx ProductionHouse) can utilize it, but then we need to be able to open it back up in Illustrator and edit it. When I do that, the layers are combined into one layer, whether or not "Create Acrobat Layers from Top-Level Layers" is checked or not.
    In CS3, this worked fine... we could save a file with four layers as a PDF file, then open the PDF file back up in Illustrator and all of the layers were still intact. It's just in CS4 that this has stopped working.
    Anyone have any suggestions?
    Thanks again,
    Evan

  • Help me with adjustments layers in CS4

    I have all of my own keyboard shortcuts for adjustment layers, and when I am finished i hit enter and the dialogue disappears. very easy, very little mousing around. but now with cs4 the adjustment panel opens and after i make my settings it will not go away unless i move it or double click the tab, etc. much more convoluted and very annoying. is there a way to get back to the way cs3 worked? i have a second monitor where i keep panels like layers, history, paths, info, etc always open but i do not want to keep the adjustment panel open all of the time. i liked the old way b/c it would pop open then after i hit enter it would go away.

    that helped alot. i didn't know i could assigned shortcuts to panels. i made one to close the whole panel and it disappears.
    but i found that if i am working on in the dialogue and decide to reset the adjustment layer and cancel out because maybe i changed my mind or didn't need it, it still puts the adjustment layer in my layer stack. so there is an extra adjustment layer with no adjustments that i have to go and manually delete. if in cs3 you decided to cancel the adjustment layer it didn't add it to the stack anyway.

  • "Command + Mouse Click" Keystroke on Layers using CS4

    I always use the "Command + Mouse Click" keystroke to create a "selection" and isolate an object on any particular Layer. It's always worked on previous versions of Photoshop.
    However, for some reason this keystroke no longer works in CS4. It does work fine in Channels though but not in Layers.
    Is anyone else having this issue?

    OMG, you are the king! I'm sooo used to version 5.5 to CS1 where I can use the same keystroke outside the image icon boundaries. Thanks!

  • Confused about layers DW CS4

    In several books on "how to build web pages" they mention layers as a good thing to use...
    But... it seems that the option is grayed out and not available... From Insert > Layout Objects I have options to insert DIV Tags; AP Div: then some Spry stuff.. but the "Layout Table" and "Layout Cell" are grayed out and thus unavailable.
    Am I doing something wrong, some other menu choice, or is there a preference setting I have messed up.
    And,  speaking of messed up when I first started playing with DW the properties dialog box would pop up automatically... now I have to select it and then it stays up even if the page is closed

    In addition to Vinay's good advice, I'll post a link for  you to read so that you do not use AP Divs unless you understand they way to use them.
    "Layers' have now been renamed to AP Divs.  So if any of your books refer to layers, they will be referring to  AP Divs.
    Why  do APDivs move?
    http://forums.adobe.com/message/2181263#2181263
    You may find other posts of interest (usually often asked questions)  in the Dreamweaver FAQ  as you progress with your learning of Dreamweaver.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Merging layers in CS4

    HI,
    When I have layers open, I have three choices to merge:  Merge down, merge visible, and flatten image.  Flatten image is the only one without a shortcut.
    Which, if any, is the better choice?
    Thanks,

    It all depends on exactly what you want/need. Each has differences, and one's needs should dictate which is chosen at a given time.
    I also have a Flatten Layers in a series of Actions, for specific needs.
    Good luck,
    Hunt

  • Cs4 extended merge 3d layers

    Hi,
    The for merging 3d layers in cs4 is grayed out.
    If I create two 3d layers with a cone and a sphere and try to merge them with Ctl+e or  3D/ Merge 3D layers (grayed ) it does not work.
    Thanks for your attention,
    JPD

    http://psd.tutsplus.com/tutorials/tools-tips/a-basic-guide-to-photoshops-3d-tools/
    Thank you very much.
    There is too http://tv.adobe.com/watch/the-russell-brown-show/demosaurus/

  • Moving layers into Group

    I am a web designer and have created a script that puts a browser UI around a Photoshop document. The action places several images and creates several text layers. What I want to do is place all the images then add them into a group called "BROWSER". I can do this and it works fine in CS3, but it fails to select all the layers in CS4 and CS5.
    I have tried several methods which all work in CS3, but not 4 and 5. I have selected the top layer, held shift and selected the bottom layer "Add Continuous", I have selected them individually with the "Add" modification (holding down the command). After I create the selection, I try and "Make Group from layers", however, in CS4 and 5 it only places the last layer in the folder.
    I have also tried creating the Group folder, naming it and moving the individual layers into the folder. The problem here is that when moving, PS uses the layer number instead of the layer name! For instance, I have a layer call "Page Title", when using the move command it uses it's raw layer number "layer 16" or whatever.
    So sorry for the wall of text. Can anyone offer any insight? I am downloading the trial of CS5 to see if that makes a difference.

    Are all the layers visible?? I just tried recording an action in CS5 and had no problem.  I create a new document white background layer and added 6 layers. I targeted the middle layer and then recorded this action
    Alt+,   (Target bottom visible layer in this case the background)
    Alt+]   (Target next visible layer up in the stack in this Layer 1)
    Shift+Alt+. (Select continuously up the stack to the upper most  visible layer 6 layers with there visibility off between will also be selected)
    menu Layers>New>Group From Layers (Create new group named it test  and the layers were collapsed into the new group named test)
    stopped recording
    I then went back into the history palette to before the group was created where I had the 7 layers.  I played the action and it worked. Went back in time again and added layers till I had 100 layers on top of the background layers. I turned the visibility of some layers off. As long as the background layer and the layer above it as well as the Top layer visibility was on the action worked.  All bets are off it the visibility of any or those three layers are off.  The Action will fail.

  • Can you group layers in photoshop elements?

    deciding whether to buy photoshop elements or reg photoshop - need to be able to group layers and open layers from CS4 - can I do that with elements 13?

    To be able to work with layer groups in Elements 13, you need an add-on from an external software.
    For instance, the very affordable tool set from Elements+ ($12)has a script for that:
    file:///C:/Elements+/13.0/help_files/en/group-layers.htm
    See the other features:
    About Elements+
    Or see:
    Layer Comps Work Around - Elements Village

  • Deleting Layers?

    I'm sorry if I sound REALLY stupid, because this seems like an extremely obvious question to ask, but HOW DO YOU DELETE LAYERS in CS4? I've looked everywhere, in AE help, on google, and nothing has showed up. I don't want to delete layer effects, I just want to know how to plain old delete a layer from compositions!?

    There's also a menu command in the Edit menu. Just choose Edit > Clear. The menu command has a tip to remind you of the Delete key keyboard shortcut.

  • PhotoShop CC will not play Layer Adjustment Actions Correctly

    My computer has PhotoShop CC installed on a brand new Dell Windows 7 computer. Previously I used CS4 and it worked great, but now I'm having issues with CC playing back any Action that has layer adjusments. I'll record an action consisting of an edited layer adjustment such as curves, levels, brightness/conrast, etc., and then when I play it back the layer adjustment applied is the default 0. For instance, here I clicked "Create New Action" and labeled it "Curves Layer TEST":
    add a new curves layer adjustment and label it "Brighten":
    Then I add a few points to the curve (overly brightened to demonstrate my issue):
    then I hit the Stop Recording button. But when I look at the curve values in the Actions box of the very curve layer I just recorded, it says the Preset Kind is Default. Why doesn't it say Custom??? The Properties box read "Custom" as I was editing the curve!
    So anyway, I open up my nexy photo and play the Brighten action I just created...
    and nothing happens to the image. Oh, it now has a curves layer on top, but it's the Default straight line. What happened to the curve I edited and recorded!!??
    What's the deal? This is the same process I used in CS4, CS2 and every other PhotoShop incarnation and it worked fine, until CC. Is this a bug? Or is there a new process to creating layer adjustment actions???

    Adobe added the adjustment panel in CS4. Adobe also changed how the action recorded records adding adjustment layers in CS4.  Before the Adjustment panel when you clicked on one of the add adjustment layer icons Photoshop would open the adjustment type options dialog window which you would set and commit. When you committed the settings the action recorder would record a single step that added the adjustment layer with the setting you set. After Adobe added the adjustment panel the action recorder records a step Make adjustment layer Adjustment type preset default as soon as you click on the adjustmet type icon. If you then make changes to the settings when you move onto the next Photoshop operation the action recorder records a second step Set current adjustment layer to type preset kind custom and settings.  Adobe also introduced many problems with the adjustment panel. The two step recoding can be a problem because it possible to add steps between the two steps and the step set current adjustment layer will fail if the targeted layer was changed by the addition.  The adjustment panel also has two options in its fly-out menu the change Photoshop operation. They can break new and old actions that add adjustment layers. For how adjustment layers will get added may not be the way they were  added when the action was recorded. These options work more like global Photoshop Preferences actions have no control over.  However the options do not alway work like set. So if you try real hard you can record actions that add adjustment layers that will alway work the way you designed your action to work.  Adobe does not want to fix these problems. I tried to get Adobe to fix these bugs for years. I have now given up.

Maybe you are looking for

  • Run a subvi by pressing a button multiple times

    Hi I wanted to run a subvi each time the user pushes a button. So the subvi might be called multiple times & different instances of the subvi run simultanously with their front panels open. To do this I made a .vit & call it by refrence wehenever a b

  • LiveCycle Designer 8.0 Table Header bug

    My dynamic form (8.0 dynamic XML form) has strange behavior with table headers. When rows are dynamically added to the table to make the table expand to a third page, the table headers become unstable. Once the table expands to the third page, if a r

  • Looking for Weblogic 8.1 Developers

    Hello, I hope no one minds me posting this - my company is in urgent need of Weblogic 8.1 Developers to work on a project in the Portland, OR area. Please feel free to contact me at [email protected] if you are interested or know anyone else who migh

  • Lightroom not starting - Error msg : Multple entities found

    Hey there, I had an interesting situation happening the other day. I was working in LR, closed it and when trying to open it again (a couple of hours later) it would not start. Instead I got the following error message: AgEntityProvider:getEntity():

  • E 2500 port blocking

    I am trying to block outbound and inbound traffic on TCP 5222 and 5223 on my E2500 but cannot figure out how.  The reason is I have kids in my house using KiK (texting app) on iPads, iPods etc.  My goal is to eliminate this applications ability to fu