How do i insert javascript stuff into dreamweaver?

okay, first of all, im a total idiot when it comes to
javascript and CSS, so please expect me to ask a lot of stupid
questions.
basically, i want to know how to insert a javascript file
into your dreamweaver website. for example, i have a drop down menu
i made using a program called Sothink DHTML Menu 9, and im not sure
how to put that into dreamweaver. Can anyone help?

Doesn't validate.
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
==================
"GPaul" <[email protected]> wrote in message
news:gnhu94$ird$[email protected]..
> I'm not familiar with the <burp> tag?
>
> "Al Sparber - PVII" <[email protected]>
wrote in message
> news:gnhu4j$ikv$[email protected]..
>> "name294" <[email protected]> wrote
in message
>> news:gnhtst$ic6$[email protected]..
>>> okay, i just want to know if this program lets
you customize your
>>> drop-down
>>> menus. from what i saw from the movie, they
don't seem to give you the
>>> greatest
>>> freedom in customization.
>>
>> The freedom is actually total. Yes, you choose a
style theme, but once
>> you do the system writes a style sheet which is
fully editable - just
>> like a <burp> Spry style sheet </burp>
>>
>>> it seems like that you get a selection of
pre-made menus and you have to
>>> select which one you wanna use. I want to have a
program that lets you
>>> design
>>> your own menu looks from imported images.
>>>
>>> does projectseven do that?
>>
>> Yes.
>>
>> You might want to have a look at PMM2 (which has
replaced the one you
>> looked at):
>>
http://www.projectseven.com/products/menusystems/pmm2/carbon.htm
>>
>> And also the tweaks section here:
>>
http://www.projectseven.com/products/menusystems/pmm2/tweaks/index.htm
>>
>>
>> --
>> Al Sparber - PVII
>>
http://www.projectseven.com
>> The Finest Dreamweaver Menus | Galleries | Widgets
>>
http://www.projectseven.com/go/pop
>> The Ultimate DW Menu System
>>
>>
>>
>>
>>
>>
>
>

Similar Messages

  • How do I insert a slideshow into dreamweaver cs4?

    I was using adobe bridge but this seems to have broken down the websites I had done and were working.  Attempting to use it as I did before accessed directly throug dreamweaver automatically set it up to just select the jpgs and design the boder etc.  but this isn't hapening anymore.  Does anyone know why?

    If I recall, Bridge outputs to a Flash gallery which few people can see.  Flash is pretty much dead because iOS devices don't support it.  You'll reach more target users with a jQuery gallery.  Do you have Lightroom?
    http://help.adobe.com/en_US/lightroom/using/WS09C82293-1DE0-42de-97F3-A5EDF26A55C7.html
    Nancy O.

  • How do you insert an image into a google map using a macbook?

    I am trying to put images into a Google map using my MacBook, but cannot seem to find any help. How do I insert an image into my Google map using my MacBook?

    Nothing complicated with your menu - very clear "ADD Image" but my menus are not as simple. Everytime I need to add an image I spend 5-10 minutes searching again. Wonder why so hard. I generally find Acrobat menus cryptic and unclear and I am big Adobe fan - use Illustrator, Photoshop, Dreamweaver, Premier, Fireworks etc - but Acrobat menus are like calculus in the dark.

  • Are Virtual Copies saved in Backups? How do I insert a backup into an existing catalog?

    Are Virtual Copies saved in Backups? How do I insert a backup into an existing catalog
    I deleted a tif image file that I didn't intend to, which had several LR virtual copies created from it. The virtual copies had a lot of important history that document my print preparation edits. Are these virtual copies saved in the LR backups?
    If so, how can I insert them into the catalog I am using? I have made a lot of edits in the two days since my last backup and don't want to lose that history either. Do you suggest I make a current backup before retrieving files from my last backup? I know I'm supposed to go to the backup location and open the last backup, but how do I blend that with the current work from the last 2 days?
    Any help would be most appreciated. Thanks, Tom

    Rob,
    That was exactly what I was after. However, I'm still having trouble getting the virtual copies imported. The master file was in my trash, I restored it to the original hard drive folder. Before I got your message I re- imported it to LR but of course LR came up with a new name since I was importing from and saving it to the same folder in LR. And of course no copies. This may have been a mistake, but before starting the procedure you described, I re-named the master file (it seemed that the import from backup would re-create it so I didn't want  a conflict).
    Then I did what you said and used the 'Import From Another Catalog' feature. I found the virtual copies in the backup and checked them. But when the import completed, the it gave me file names  xxx/Copy1, xxx/Copy2 but there was no image or history or metadata. When I tried to find the folder containing the files, it said it couldn't be found. So I missed something in the settings. When I tried again, there was a warning saying the file(s) exists in the catalog and its settings differ. I went ahead anyway and the message I got was "No Photos in previous import"
    Here's what the import from backup shows:
    A box with catalog contents and all the folders and files within them, that you can check.
    A New Photos section, which gives 2 file handling choices: a)add new photos to the catalog without moving them or b) don't import new photos
    A Changed existing photos section with 2 replace options: a) nothing or b) Metadata and develop setting only. If you choose this you can check a box to preserve old settings as a virtual copy.
    Not sure what to do. I changed the master file back to its original name, but that didn't make a difference. Suggestions? Thanks, Tom

  • How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    Help - How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    https://discussions.apple.com/thread/3383532?tstart=0
    Stefan

  • How to pass a JavaScript variable into a java method

    I would like to know how to pass a JavaScript variable into a java method with in a <% %> tag inside a JSP file like so:
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <script LANGUAGE="JavaScript">
    myValue = someDynamicValue;
    <% System.out.println(myValue)%>
    </script>
    </head>
    <body>
    </body>
    </html>
    obviously "System.out.println(myValue)" will not work because myValue is seen as a java variable and not a JavaScript variable.
    I would like to know how to let the jsp file, that I wrote in the above code, see myValue as a JavaScript variable and not a java variable so that I can pass it to a java method.
    NOTE: the java method does not have to be a println() method, it can be any method of my choice.
    NOTE: someDynamicValue is a JavaScript value that can dynamically change

    I don't believe you can. JSPs are really just elaborate templates that an engine such as Tomcat parses and generates an HTML page based on. That page is then displayed to the user. By the time you want to use some function in Javascript, the JSP has already been parsed and generated.
    Basically, Javascript and JSPs can't talk to each other. One's server-side and the other is client-side.

  • How do I insert a picture into iMovie regardless of aspect ratio

    When I insert a picture, i either have the choice of cropping the picture or having black bars on the sides. How can I insert a picture into imovie and not be dictated based on the aspect ratio. thanks

    Klaus1 wrote:
    Must be one of the wonderful improvements introduced in iMovie 11.
    nope, never.
    look:
    example #1: a 1:1 pic in a 16:9 screen
    option A bars l/r
    option B cat-off
    example #2: a wiiiide screen pic in a 16:9 screen
    option A bars t/b
    option B catcut off
    and you don't want kitty look like that:
    (1:1 aspect ratio distorted to make fit onto a 16:9 screen)

  • How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    bhsleadership
    I am in the process of preparing to test a sample from your brand and model camera in my Premiere Elements 8.0/8.0.1 on Windows 7 64 bit. I will have the results probably tomorrow morning.
    For now I just want to put you through the drill that I do for anyone who says he/she is using Premiere Elements 8.0/8.0.1.
    1. Are you working from the 8.0/8.0.1 Update of the program?
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4653
    2. Do you have the automatic Background Rendering and AutoAnalyzer features turned OFF.
    For Background Rendering option. See Edit Menu/Preferences/General.
    For AutoAnalyzer option. Click on Organizer in the row below the blue active Organize header in order to open the Elements Organizer. In the Elements Organizer workspace, go to Edit Menu/Preferences/AutoAnalyzer Options and disable all the AutoAnalzyer options. To return to the Premiere Elements workspace from the Elements Organizer workspace, in the Elements Organizer workspace, go to File Menu/Exit.
    Is your computer optimized in spite of the fact that  you have a high end laptop? I presumed so but always go to verify, no pile ups of preview files, conformed video and audio files et al.
    Looking at the properties of your source media, I see:
    video compression = MPEG1
    audio compression = MPEG-Layer1 (.mp2)
    Frame Size = 640 x 480 (4:3)
    Pixel Aspect Ratio = 1.0
    Frame Rate = 30 progressive frames per second
    With properties like those you are sure to get a red line over that content since there is no project preset with that description.
    But, your choice of the default NTSC DV Standard would have been mine also.
    I am heading to try to get a quick look at the behavior of the sample video here in my Premiere Elements 8.0/8.0.1.
    To be continued.
    ATR

  • How do i insert a row into Numbers

    I'm new to numbers - how do i insert a row into a spreadsheet please?  The spreadshet started life in excel and was imported and saved as numbers.  I did try the help option but didn't seem to get the answer.

    right click on the row tab then select the "Add Row Above" or "Add Row Below"

  • How do I insert a Screengrab into a help topic?

    How do I insert a screengrab into the mac discussions forum topic box?
    I want to show a helper the screen I am getting and would like to post it in my reply.
    TIA

    Hi Robert,
    Follow the instructions for links on this page.
    http://discussions.apple.com/thread.jspa?messageID=607563&#607563
    Follow the instructions for links on this page.

  • Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    You will need to find a forum for MS Word since that is the software that you are trying to manipulate in this.  If you think the processing/creation of the PDF plays a role then you should ask in the forum for the software that you are using to create the PDF.
    This forum is for issue regarding downloading and installing Adobe trial products, so in any circumstance, your issue does not fit in this forum.

  • How do you insert a picture into an iMovie video?

    how do i insert a picture into an iMovie video?   (i know it's simple and i've done it before, but i can't figure it out now )

    Just drag it onto the Project timeline  From iPhoto or outside of iMovie...
    rick

  • How do you insert a picture into another picture?

    How do you insert a picture into another picture.  For example, one person is missing from family photo & I'd like to insert that person's face.

    By using an external editor:
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How do I insert an image into a quetsion (post)

    What are Mozilla code-structure in new posts.?
    How do I insert an image into a new post?
    Thank you

    cor-el said
    If the image is on another server then we prefer to have a link instead of the real image in case it is a large image and we've already seen it or do not want to wait for it to load (server may be slow).
    I do not know what any of this means.
    I have a single laptop connected to the internet.
    So far I have worked out how to upload an image to a thread-reply by copying the uploaded file "path" and pasting it onto the reply
    and then after the reply is posted there are two incidence of each image
    1. the URL
    2. the image at the bottom of the reply
    I am a newbie so would appreciate any feedback
    (Firefox window controls have disappeared (Clean installed v18 5 days ago). Have logged another thread/reply on this forum)
    Thanks

  • How do I look up how to put Cafe townsend  tutorial into dreamweaver

    How do I ask how to put Cafe Townsend Tutorial into dreamweaver. I have a mac. The tutorial notes say follow this line
    (Mac OS X) Macintosh HD/Users/your_user_name/Documents/local_site. I don't understand what each section means. If someone called explain it that would be great as I ended up with an empty folder in dreamweaver with the name 'Cafe Townsend' on it. Thank you

    Right.  It's an empty local site folder until you put something into it. 
    Go to step 2.  Download and unzip the Check_Magazine.Zip files
    http://download.macromedia.com/pub/developer/check_magazine.zip
    Go to step 3. Copy the check_magazine folder into your local_sites folder (Cafe Townsend).
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

Maybe you are looking for

  • E72 needs to restart frequently

    last 4 months am using my E72 for my communication needs. but the issue with this system is when ever i connected to the data package for checking mails its working perfectly. But once i logged off and disconnect this internet connection the issue  s

  • PHP Include not showing in design view

    One of the advantages of Dreamweaver is the ability to see the result of your code in the Design view. I am building a template set for a web site I'm starting, and will be using the template files in various paths and path depths. As a result, I am

  • All items not moving to iPad

    I ran into an odd issue with my iPad that, until now, has been fine. I tried to sync two rented movies. Both moved over (but it just repeated the "cover image" for both movies). Anyway, the real problem came when I tried to change the movies on the i

  • Opening older files with CS6

    On a Windows platform. I recently installed CS6 and everything appeared to be working fine. I was able to open older CS5.5 docs without any issues. I decided to delete the entire CS5.5 Suite and now I find whenever I go to open any of these old CS5.5

  • Client apps accessing WL 6 services

    Hi All This is an addendum to the question I posted : Subject: External clients accessing WL(4.5.1 SP13) JNDI Date: Thu, 15 Feb 2001 14:07:38 -0500 (BTW, I heard from only one person till now). I would repeat the question. We all have clients (applic