Adding HTML into the library in 'Code' view

Adding an object into the Library from ‘Design’ view works as advertized… however I’m looking to add HTML into the Library that is not ‘seen’ in ‘Design’ view… for example… some of the META tag data in the Header section.
In my reading… I have come across references that this can be accomplished…but I’m being frustrated by the fact that while in ‘Code’ view the MODIFY/LIBRARY/ADD OBJECT TO LIBRARY…. The “Add object to library” is grayed out.
I’m about down to thoughts like “you can’t get there from here”… or … “you ain’t smart enough to figure out how to do it”.
Is this ‘doable’?... and if so… what are the proper sequence of steps.
Many thanks for any and all inputs..

Btw Nancy… just as a heads-up, to save the next guy a bit of frustrations…
…the pointer you provided is no longer working:
Guidance on when to use DW Templates, Library Items and SSIs  -
http://www.adobe.com/devnet/dreamweaver/articles/ssi_lbi_template.html
Thanks again for the help… I’m off and running in other areas…
(...why did a vision of Don Quixote and windmills just spring into my mind??)
Best regards,
zippes

Similar Messages

  • In trying to transfer iWeb pages (not uploaded) to another computer I went into the library and transferred the domain onto the desktop. Disaster! On opening iWeb all previous (uploaded) sites have disappeared. Help!

    In trying to transfer iWeb pages (not uploaded) to another computer I went into the Library and transferred the domain onto the desktop. Disaster! On opening iWeb all previous (uploaded) sites have disappeared. On opening the domain all I can recover is the many component parts, and when unzipped the code. Help! Mike

    Code in a domain file - really?  That is not possible because the domain.sites file does not contain any html or css code at all - the domain file is your iWeb data file and you won't see any code until you publish your website.
    If you can see html code, then you have the wrong file and it is a published version of your site which iWeb can do nothing with - iWeb has no import facility so cannot open any html files.
    Go back and ensure that you have the correct domain.sites files that can be found under your User Library/Application Support/iWeb/domain.sites and if you have Mavericks then you need to go to Go and press the alt key to reveal your hidden User Library, so that you can then get to Application Support and then iWeb and then your domain.sites file.
    You will also need to go and download either DomainCracker or iWebSwitch which allows you to open individual domain files under Mavericks, because from Lion onwards, you cannot open individual domain files.
    Also, it says that you are still using iWeb 08?  If this is so, you'll either need to upgrade to iWeb 09 by going to Amazon and purchasing the iLife 09 or 11 boxed set, both of which contain iWeb 09 or you need to switch to newer software that is actively being supported and developed such as EverWeb (http://www.everwebapp.com).

  • Can't get songs from my iPod into the library on my new mac

    I recently had to get a new hard-drive on my dell laptop, and iTunes was uninstalled from the computer. When I re-installed iTunes, my iPod was not being recognized by the laptop, so none of my songs on my iPod were in the library anymore.
    Now I have a new MacBook, and my iPod is being recognized, but I can't get most of my songs from my iPod into the library in iTunes.
    I'm sure there is an easy solution, but I can't figure it out!
    Any help is much appreciated!!!

    If you have any iTunes Music Store purchases the transfer of purchased content from the iPod to authorised computers was introduced with iTunes 7. A paragraph on it has been added to this article: Transfer iTunes Store purchases using iPod
    The transfer of content from other sources such as songs imported from CD is designed by default to be one way from iTunes to iPod. However there are a number of third party utilities that you can use to retrieve music files and playlists from your iPod. I use Senuti but have a look at the web pages and documentation for the others too, you'll find that they have varying degrees of functionality and some will transfer movies, videos, photos and games as well. This is just a small selection of what's available, you can also read reviews of some of them here: Wired News - Rescue Your Stranded Tunes
    Senuti Mac Only
    PodView Mac Only
    PodWorks Mac Only
    iPodDisk PPC Mac Only (experimental version available for Intel Macs)
    iPodRip Mac & Windows
    YamiPod Mac & Windows
    Music Rescue Mac & Windows
    iPodCopy Mac & Windows
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available at this link: Two-way Street: Moving Music Off the iPod

  • Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Thank You. This helps me alot to get into the masters and to see events and photos in a utilitarian way, but it is not as easy as viewing the normal iphoto format to find photos.  Can I do something else or did I not do something right to not see normal iphoto in Time Machine ?

  • Loading into the library at runtime?

    I have built a flash animation (for a web site) that requires a number of decent quality JPG images.  I don't display all of these at the start, so I don't want to wait for them all to load before starting the animation.  Thus I want to be able to load these images in the background - the obvious process would involve MovieClipLoader.loadClip() method.  This works fine if I am loading into an INSTANCE of a moveclip (either existing on the stage or one that I creat in actionscript) - but I really want to load into a library movieclip.
    The problem is that I end up using these images in two different movies on the stage - each pulls from a movieclip in the library (that contains the image I want).  So my original thought was simply to load (using loadClip()) into the library movie - which in turn would show up in the two stage movieclips that have this library clip in the timeline.  However, I cannot seem to get loadClip() to work with a library object.
    I tried exporting the library movieclip to actionscript (giving it a name) - but loadClip() doesn't seem to want to load into it.  I can only get loadClip() to load into an instance that exists on the stage.
    Sorry if I am asking a stupid question - I don't do a lot of flash programming - although I have extensive programming experience in other languages.
    So can this be done?  Is there another way to accomplish what I want to do?
    I can easily load into an instance of a movieclip - but I don't want to load each image twice (into two different movieclips that I need to manipulate) - hence my desire to load into a single library object that end up having multiple instances on the stage.
    My other thought was to load into an instance and then COPY that instance to the second instance.  But I can't seem to find a way to copy one clip into another clip?
    Any pointers would be very much appreciated.
    Just to clarify, here is an example.
    *  I have several library movieclips (call them clip1, clip2, clip3... )  which contain a single frame with a JPG image in that frame.
    * I have a library movieclip called bkgnd which has 10 frames in it.  Each frame has an instance of the different clips above (e.g. frame 1 has clip1 in it, frame 2 has clip2 in it, frame 3 has clip3 in it etc).  At run time, this move is manipulated through gotoAndStop() to display a particular image.
    * I use this bkgnd library movieclip in TWO places on the real stage (two instances).  Each is controlled through actionscript to display particular frames (particular images) through the gotoAndStop() method.
    * I want to be able to load the individual images at runtime - my thought was to use loadClip() to load JPG files into the clip1, clip2, clip3... library clips.  However, loadClip() doesn't seem to want to load into a library clip.

    Thank you.  I was able to use the bitmap class draw function to accomplish what I wanted.
    It got pretty convoluted though.  Used actionscript on instances of hidden movies to initiate the loading.
    Had a loader bar on images when they are used - but wanted them to load asynchronously in the background (use the first while others are loading).
    There are lots of little "gotchas" with this stuff, and while flash is very powerful, it is difficult to document / take apart.  Because action script is all over the place and interacts in very funny ways, it can be very complicated to figure out how all the timelines mesh and what code is running when.
    I have to say I am quite disappointed in a few items - one of which is that if you associate actionscript with a particular item on the stage (a movie clip), you don't see it highlighted in the timeline and you don't see it on the movie inspector.  It is kind of hidden out there unless you know to look for it.
    Anyway - thanks again.  Definitely did the trick..... Warren

  • I have updated iTunes on my computer and my iPod nano 4 is up to date but not all music shows up in my iTunes library..only the purchased songs..what happened and how do I get them back into the library?

    The music library in the updated version of iTunes is grossly incomplete although the music still remains on my iPod. Why did this happen and how do I get the music back into the library?

    Hi Dalegu219,
    Thanks for visiting Apple Support Communities.
    If your iTunes library is on an external hard drive, but iTunes is not recognizing the library, first make sure the right library is selected.
    You can use these steps to make sure iTunes is opening the library on your external drive:
    If iTunes is running, quit iTunes.
    If you're using Windows, hold down the Shift key and from the Start menu, choose All Programs > iTunes > iTunes.
    If you're using a Mac, open iTunes and immediately hold down the Option key.
    You should see one of these screens:
    Pick Choose Library and locate the library on your external hard drive.
    From:
    iTunes: How to open an alternate iTunes Library file or create a new one - Apple Support
    If the right library is selected, but you do not see your songs, try re-creating the library using the instructions found here:
    iTunes: How to re-create your iTunes library and playlists - Apple Support
    Best Regards,
    Jeremy

  • My ipod has 760 songs on it.  I had to reload my computer that contained itunes.  The new installation of itunes won't allow me to copy the songs into the library.  What can I do?

    My ipod has 760 songs on it.  I had to reload my computer that contained itunes.  The new installation of itunes won't allow me to copy the songs into the library.  What can I do?

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Cannot import a .mov file into the library

    I am trying to import a .mov file into my library so I can
    create a .fla file. Every time I try to import it into the library
    using the import wizard, it starts the importing process and always
    quits not quite two minutes into the process. It then returns me to
    the front page of the import wizard. I have done this before with
    absolutely no problems.
    The one thing that I am wondering about is the size of this
    particular .mov file. It is 377MB. Do you think this may be part of
    my problem? Thank you in advance for anyone's input or
    suggestions!

    Jeremy Williams wrote:
    > I am trying to import a .mov file into my library so I
    can create a .fla file.
    > Every time I try to import it into the library using the
    import wizard, it
    > starts the importing process and always quits not quite
    two minutes into the
    > process. It then returns me to the front page of the
    import wizard. I have
    > done this before with absolutely no problems.
    >
    > The one thing that I am wondering about is the size of
    this particular .mov
    > file. It is 377MB. Do you think this may be part of my
    problem? Thank you in
    > advance for anyone's input or suggestions!
    I would consider 10mb to be too big for a flash file. Even if
    it was CD
    I would load it dynamically to avoid performance problem.
    377mb is out of the question way beyond flash ability to
    maintain stable
    performance, not just the final output but the IDE itself.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Loading CD's into the library

    When I load a cd into the library it sometimes loads the music as individual songs and not the cd as a whole.  Is there a way to load the cd so all the songs are listed under the cd not as individuals?  Thank you for any suggestions.

    Post here:
    https://discussions.apple.com/community/itunes/itunes_for_windows
    You have an iTunes question, not an iPod question.

  • What is the problem with Itunes 11.0.1.12 and adding music to the Library?

    What is the problem with Itunes 11.0.1.12 and adding music to the Library?  I had no problems when I updated, just had to get used to the new format and appearance.  Added a few albums here and there, and then today I can't get anything in the Library.  I've always just dragged and dropped my music with no problems.  I've had an Ipod for the last six years and never encountered any big problems with Itunes or my various Ipods.

    Why is this Itunes such a pile of junk?  If I restart my computer I can sometimes find the recently added music in my Itunes Library. 
    It would be nice to know if other people are having the same problems.

  • How do I get iTunes to accept FLAC files into the library?

    If I want to use iTunes to catalog FLAC files (but NOT play them...as I use my logitech Squeezebox fior that) how do I get iTunes to accept FLAC files into the library?

    As polydorus notes, iTunes has the huge shortcoming of not handling FLAC. 
    There are plugins that allow iTunes to play FLAC, but everything I've seen says they are problematic. 
    A much better approach is to get a 3rd party conversion program such as Switch and convert the FLAC files to an iTunes-compatible format such as  AAC or AIFF.
    Put the converted files in your iTunes library, and keep the original FLACs on hand for when you are using a more capable player.

  • IPhoto won't import movies (.mov, .mp4) into the library since last upgrade to 9.5.1 (902.17)

    iPhoto won't import movies (.mov, .mp4) into the library since last upgrade to 9.5.1 (902.17). Error message is "File format not recognized". Before that, no problem. Had them first on SD-card over USB, tried then to copy to the HD (Desktop) and import from there, but didn't work. Imported successfully into iMovie and exported as .mp4, but even this is not recognized.

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    Post back with the result.

  • I have recently purchased a new laptop but cannot sync my music into the library, any ideas on how to do this?

    I have recently purchased a new laptop but cannot sync my music from my iphone into the library, any ideas on how to do this?

    Follow the directions here:
    https://discussions.apple.com/docs/DOC-3141

  • HT1473 I can get my CDs into the library but my IPOD Touch will not add it.

    I can get my CDs into the library but my IPOD Touch will not add it.

    You need to convert the forma of DVDs to one compatible with the iPod. If the DVDs are commercia ones with DRM it is not legal to convert them.

  • Everytime i open itunes, it has to reload all my songs into the library.

    Everytime i try and open itunes, it asks me to agree to the licence agreement, then re-loads all my songs back into the library.
    I have uninstalled and downloaded itunes but it still does it.
    How do i fix this, is there a way of locking the songs into the library?

    There are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. You'll find that they have varying degrees of functionality and some will transfer movies, videos, photos, podcasts and games as well. Have a look at the web pages and documentation, this is just a small selection of what's available, they are generally quite straightforward. You can read reviews and comparisons of some of them here:
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    TuneJack Windows Only (iPhone and iPod Touch compatible)
    SharePod Windows Only (iPhone and iPod Touch compatible)
    iPod2PC Windows Only
    iDump Windows Only
    iPodRip Mac & Windows
    YamiPod Mac and Windows
    Music Rescue Mac & Windows
    iPod Music Liberator Mac & Windows
    Floola Mac & Windows
    iGadget Mac & Windows (iPhone and iPod Touch compatible)
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    TouchCopy Mac & Windows (iPhone and iPod Touch compatible)
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide

Maybe you are looking for