Insert image & click to open in larger window

I'm using Dreamweaver 4.
Please advise the proper way to insert an image and set it up
so when clicked it opens a new window and the image is larger. Any
reference to an on-line article explaining this would be
appreciated. Thanks.

Free -
http://www.dreamweaverfever.com
(PictureWindow Fever extension)
Commercial, and worth it -
http://www.valleywebdesigns.com
(JustSo Picture
Window)
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
==================
"dkents" <[email protected]> wrote in
message
news:e6i67h$q8b$[email protected]..
> I'm using Dreamweaver 4.
> Please advise the proper way to insert an image and set
it up so when
> clicked
> it opens a new window and the image is larger. Any
reference to an on-line
> article explaining this would be appreciated. Thanks.
>

Similar Messages

  • I am using firefox 6 and if I right click and click on open in new window both my windows hang

    when I right click and click on open in new window.
    both my windows hang.
    The machine becomes slow and firefox does not respond till I close the new window.
    (I have not tried if it helps if I close the main window).
    the new page does not load and if there is a tab that is loading on the old window it does not load as well.

    Did you look in Customize (View > Toolbars > Customize) to see if your "New Tab" is there and should be moved to a toolbar.
    You are so not up to date with Firefox that you might as well stay with what you have until it breaks. Make sure you maintain backups of your profile and all personal data to external media, preferably an external hard drive.

  • Cmd+Click to open in new window

    I want to have Cmd+Click open link in new window in Firefox (instead of new tab).
    * Firefox 11, Firefox 12 beta
    * No 3rd-party extensions enabled
    * Mac OS X Lion
    * Regular HTML page with <A> link (no JS handler)
    * browser.link.open_newwindow=2
    * browser.link.open_newwindow.restriction=2
    * browser.tabs.opentabfor.middleclick=false
    1. No combination of options seems to make Cmd+click open link in new window (instead of new tab).
    2. Inconsistent behavior between Cmd+click and middle click: with mentioned settings Cmd+click opens in new tab and middle click opens in new window.
    I believe that Cmd+Click should do the same as middle click. Specifically with browser.tabs.opentabfor.middleclick set to false Cmd+click has to open link in new window.
    Should I file a bug? Or is there some other relevant option?

    Thanks. It helped. I have tried Alt and Control, but didn't expect Shift to change behavior.
    Then again, considering multi-window browsing use-case,
    1. It is undiscoverable. Hardly ever Shift alone qualitatively changes behavior of a gesture. Thus it makes the gesture less discoverable. I even had to post question here after an amount of googling.
    2. It is inconsistent. Other browsers make possible multi-window browsing with one or two simple settings. In Safari those are "never use tabs instead of windows" and "⌘click opens window". In Opera — "use windows insead of tabs". (Chrome doesn't support windowed browsing at all though).
    Both browsers redefine ⌘click to open in new window. Safari uses shift+click to add to reading list instead. So Firefox behavior is inconsistent with alternatives and it makes switching harder.
    Related question:
    https://support.mozilla.org/en-US/questions/758539
    3. Requires changing habits. Suppose you want to switch from tabbed browsing to windowed browsing (my case). Firefox's behavior requires to change to gesture you use to open links. It may be quite hard to fight habits.
    On the other hand, an option turning meaning of all gestures upside down (tab instead of window/window instead of tab) would make the switch transparent and intuitive. Intuitive I mean in the sense that with the options you don't redefine action bindings (action for middle-click, action for target="_blank", action for ⌘click) but you just choose your prefered mode of browsing: windows or tabs. Tab or Windows.
    I'd like to hear any comments regarding what the issue is worth.

  • TS3899 I can no longer in email click on a web address and have the address open in Safari. Nothing happens if I hold and click on Open in the window that comes up. I can copy the address there and put it in Safari and it opens OK

    I can no longer in email click on a web address and have the address open in Safari. Nothing happens if I hold and click on Open in the window that comes up. I can copy the address there and put it in Safari and it opens OK

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • How do I enlarge a thumbnail on hover and then click to open in new window?

    Can anyone help me here?
    Basically what I have are a few thumbnails on my site that I want the user to be able to click to open to a new page or URL. But before one clicks, just on the hover, I would like the thumbnail to display the larger image.
    Any help appreciated.

    Replace this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <script type="text/javascript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    //-->
    </script>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    With this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script type="text/javascript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    //-->
    </script>
    And replace this:
    <style>
    #thumbnail img a {
    height: 200px;
    width: 200px;
    opacity: 0.70;
    /**image size on mouse over**/
    #thumbnail img a:hover {
    height: 350px;
    width: 350px;
    opacity: 1.0;
    </style>
    </head>
    With this:
    <style type="text/css">
    #thumbnail img a {
    height: 200px;
    width: 200px;
    opacity: 0.70;
    /**image size on mouse over**/
    #thumbnail a img:hover {
    height: 350px;
    width: 350px;
    opacity: 1.0;
    </style>
    </head>
    It should work.
    Nancy O.

  • Right click to open new firefox window opens in wrong workspace

    Right click in Mac Dock to open new firefox window opens in wrong workspace.
    When a user is in another workspace than the Firefox window, right clicking the Firefox icon in the dock and pressing New Window, should create a new window in the current workspace, Not the work space firefox is already running in.

    To be absolutely honest, I can't ever remember a time where this worked in Firefox. I don't think the issue is related to the issue you mentioned, unless this particular issue only occurs if you have a dual-monitor-setup (I do have dual-monitors).
    Firefox currently behaves differently to all native Mac apps + most Mac apps that support multiple windows.

  • Firefox freezes when tryin to open a large window while playing farmville

    firefox freezes when trying to open large window
    == This happened ==
    Every time Firefox opened
    == playing farmville

    This began to happen to me when I tried to run two separate profiles simultaneously on the same installation of firefox with -no-remote

  • Large image in lightbox opens in new window

    I added a lightbox gallery to my site and it was working fine.  Then, I tried to add more thumbnails and that's when problems started.  Some of the larger images wouldnt load at all so I then started over with a new page/gallery, deleted files off the server and tried uploading again.  The quirky thing is that the gallery works fine on my computer but when I upload it onto the server and view it from the web it doesn't work correctly.  The larger images open up in a new window  Im guessing that I'm missing something on the server but I don't know what.  I reuploaded everything on the local server and still nothing.  Can anyone help?

    I finally got it to work by deleting files off the remote and uploading again.  Thought I did that last night but I guess this morning I did something right that I had missed.

  • How can I totally disable occurrence of the New Tab tab when I right-click to open a new window?

    Whenever I right-click on a link in Firefox and choose "Open Link in New Window", the resulting new window opens with TWO tabs: a tab containing the target for the clicked link and another "New Tab" tab containing icons for sites I don't want and don't care about. Even more annoying, the "New Tab" tab is the tab that is active/selected when the new window comes up, rather than the tab for the link I right-clicked.
    This is very annoying and highly undesirable behavior. When one right-clicks on a link and chooses "Open Link in New Window", one should get a new window containing ONLY the displayed information for the target link. One should not get TWO tabs.
    How do I get rid of this behavior? I've searched via Google for a solution but haven't found one.
    I hope the Mozilla team will correct this problem very soon. I've been using Firefox for a long time and have found it to be a very good browser. However, this new behavior totally destroys my good feelings about Firefox.
    Thanks for reading my comments.

    Starting Firefox in Safe Mode does indeed get rid of the behavior I find undesirable. Thank you.
    However, I still wonder why one should have to go through the extra step (starting in Safe Mode) to avoid the second tab in the newly opened window.
    I have not added any add-ons to Firefox on my PC.
    The problem suddenly started occurring a while back, after an automatic update of Firefox to the latest version.
    Any thoughts on WHY this is happening?

  • Firefox just updated to V21 now I can't right click to "open in new window" only "new tab" or "new PRIVATE window"

    Because I'm a bit of a dinosaur I don't use tabs, preferring to use new windows instead. Since the upgrade to V21, when I right click I don't get offered the option to open in a new window, only a new tab or a "private" window. How do I get back to choosing "non-private" windows ?

    That is how it works. Current Firefox version make you close and restart Firefox after toggling the History setting that changes Private Browsing mode.
    In permanent mode you can only open new PB mode windows.
    Future Firefox versions will support Private Browsing per tab, this is already available as an extension.
    *Private Tab: https://addons.mozilla.org/firefox/addon/private-tab/
    The Firefox menu button gets purple or you get a purple PB mask on the menu bar or tab bar (Linux) if you are in a PB tab and all Private Browsing mode tabs get a dashed underlining unless you are in permanent PB mode.

  • When i click to open Firefox two windows always open - help

    When opening Firefox 3.6.6 on my Mac it always opens two windows - every time. Also, if in another program and i click on a link which should open my browser (Firefox) it will not do so until i bring Firefox up as the main window. Use to do this automatically.
    == This happened ==
    Every time Firefox opened
    == two updates ago

    It's a bug on Mac:
    https://bugzilla.mozilla.org/show_bug.cgi?id=531552 - Firefox 3.6b opens two windows when opening external links
    (please do not comment in bug reports)

  • Finder is not working properly mac osx 10.7.4 it no longer launches a new window when I click the finder icon - I have to right click and open a new window

    Hi
    Just recently Finder has stopped behaving as it normally would. Clicking the icon doesn't seem to launch the finder window. I have to right click the finder icon and then click New Finder Window. Sometimes there is no response for sometime and then finally it does open a window. If I click finder when a wondow is open it does not shift focus to finder anymore. I am sure this did not use to be the case?
    PS. not sure if this is how to put things on the forum as haven't used them before!
    Julian

    Click on the spotlight icon in the top right of your screen (looks like a magnifying glass), type
    Terminal
    and press 'return'.
    In the window that opens up, paste or type this exactly into the window
    killall Finder; killall Dock
    (that's case sensitive) and press 'return'.
    You'll notice the Dock disappear for a second or two then return, as do any open Finder windows.
    Test using Finder as normal. Same problem?

  • Any click to open in new window

    Hi
    Can any one let me know if this is possible. Any link I click in google search it should open in new tab. And it should go to that tab.

    The default action when clicking a link is to open in the current tab
    or window. If the author of the webpage modifies the link with the
    target="_blank" modifier then the link will open in a new tab or window.
    It can also be modified via Javascript to achieve the same result.
    You can also use a keyboard modifier with the click (browser
    dependent) to open in a new tab or window.
    The default however is to open the link in the current space.
    Dave

  • Image Capture ALWAYS opens Desktop Finder Window - Annoying!

    Guys,
    I've just bought a Lexar Firewire reader for my Comact Flash cards - it's excellent! However, I've set the options in Image Capture to import all files automatically, and delete them from the card after import. This works perfectly - except for one problem:
    Whenever I import the files, I get a Finder window pop up after the transfer - showing me the Desktop, and all the files on it.
    Anyone got idea's how to stop this annoying window popping up every time?
    Thanks!

    Image Capture is not third party software. Image Capture is installed on every Mac, and it's an excellent way to move pics from your cards to the Mac for those who don't want to use iPhoto, especially as iPhoto will only recognise cameras/cards attached by USB and not Firewire. As to the core problem, sorry I have no idea except that IC is trying to show you the pics location after completing its task.
    Regards
    TD

  • Image preview in Open dialog window (Photoshop CS6)

    Hi
    We had a possibility to see images preview in Open File dialog window of Photoshop CS5 but in new CS6 version there is not such possibility. Should I forget about that nice option and use Mini Bridge?

    I'm not so sure it was on purpose or not Noel. Especially since it's still there in Illustrator and Indesign. If it weren't for it being in those, I might think it was intentional. Then again, it could very well be Adobe trying really hard to push MiniBridge, which is almost utterly useless. I think they actually made the minibridge WORSE as well. The sizing issues of the thumbnails on that are a pain and minibridge is just plain cumbersome to run. Anyways, besides my many qualms with minibridge itself, and back on the open dialog box thing...I actually watched a youtube video pointing out the same codecs you're talking about and without the PSD functionality, it's pretty useless. I'm a graphic designer, so I don't really use PS for camera image editing and don't mess with those files that the codec helps with. Even if it did, that still isn't very helpful to me. Because at that point, you're pretty much just doing what Bridge/MIniBridge does. However, consider how I, and many other designers in the print field work: At any given point we might have something like 3 different versions of a file; a PSD (with layers to edit), a JPEG (to send to the customer for proofing), and a PDF (for printing). Now, within that customer folder I might have 50+ files of different jobs. Imagine trying to sift through all those thumbnails, scrolling across window upon window, and when you get to the file you're finally looking for, you click it open to just to see that you opened the jpeg instead of the PSD. Now, in LIST view, I can see many more files on one screen and each file type is represented by an icon. So I know the blue icons are Photoshop icons and it's very easy to skim through there and know exactly which file type I'm looking for without peering at extensions. Get what I'm saying? Not that I don't appreciate you trying to help. Just saying, unless any codec can bring back the preview screen....than I don't see a workaround until Adobe flat out FIXES IT. I'm one of those guys that loves to get the newest thing and give it time to work, but if they don't fix it, I might have to call up Adobe and demand a downgrade on my Photoshop to 5.5, cause it really slows my workflow when I have hundreds of files to keep up with, and any new feature in PS CS6 that might have sped up my work is offset by not being able to do such a remedial task as preview my files before opening them.

Maybe you are looking for

  • Can;t Read or write to SD Card reader

    I have a Compaq Presario CQ62 laptop (Windows 7 64bit) that has a built in media card reader that has never worked. When I insert the SD card it makes the "USB Beep Up sound" that says it sees the card - but when I go to MY COMPUTER, there is no SD c

  • Need help identifying the application responsible for an insert...

    Hi, I'm a MSSQL guy and Oracle is still a bit mysterious to me.  I'm looking for some assistance tracking down the application in an environment which is responsible for particular inserts. For example, suppose I have 10 different programs running an

  • How can I get rid of opening message about found photos?

    When I attempt to open iPhoto6 on my iMac G5, before it loads the photos, I get this message that won't go away until I respond: "6294 photos have been found in the iPhoto Library folder that were not imported. Would you like to import them?" Questio

  • Microsoft Windows Intel Itanium(64bit) 10.2.0.4

    Please give me the link of Microsoft Windows Intel Itanium(64bit) version 10.2.0.4 . o/s is windows 2003 Best Regards Junaid Thanks in advance

  • Pricing Procedure Download Problem

    Hi Through initial load i am trying to download the pricing procedure from ECC6 to CRM 5. When i check the download monitor the status is "Green" When i check the CRM table "PRCC_COND_PP" the pricing procedure which i have download from ECC6 to CRM 5