Image popup

Hi ,
I want to create a popup which pops up an image. I have seen
insert image but i want to know how to do an image popup . If i
select a word and choose popup from the main menu it shows me the
topics which i want to add so should i keep the images in a topic.
I want only the image to be shown in the popup if i customise the
popup linking to a topic the extra space in the page is also
included. I know i am beating around the bush. Let me know how to
execute this i am using robohelp x4 and webhelp for my project.
Thanks
Ramya

Ramya,
Create a new, separate topic just for the image itself. Leave
that topic out the TOC and Index (or use it, if you want to point
to the image by itself).
I think Rick and Peter have some tips on their sites about
working with images.
H

Similar Messages

  • When I right click on a web image to save, the Save Image popup box has nothing listed in the "Save as type" box at the bottom just below "File Name"

    When I attempt to save an image from a web site page, I right click and then the Save Image popup appears. At the bottom of the popup, the "File name" box will contain the appropriate file name of the image. However, in the "Save as Type" box, there is nothing listed and I can't enter a file extension, such as JPEG. What then is saved is just a thumbnail image

    You can use this extension to modify the menu.
    *Menu Editor: https://addons.mozilla.org/firefox/addon/menu-editor/
    You can also achieve this with code in the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #context-sendimage,
    #context-sendvideo,
    #context-sendaudio { display:none!important; }</nowiki></pre>

  • Hover over hotspot - image popup? How to?

    Hi, new to HTML and CSS - really no code to post, anything I try doesn't work in the slightest.
    I'm trying to have an image popup directly below a hotspot on mouseover of that hotspot. I can get it to work on text, but not with the hotspot. Either doesn't work at all, or the image that is supposed to pop up is permanently at the bottom of the screen (I suppose where the coords for the hotspot map are).
    Any help appreciated, thanks.

    Have a look here http://forums.adobe.com/message/2248950
    Gramps

  • Large image popup

    Hi,
    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database
    too.

    Hi Zabeth,
    Thanks for your reply!
    How exactly can i define the hotspot and not the image as the rollover? I guess i replace the:
    <a class="thumbnail" href="#thumb"><img src="sales1.1_thumb.jpg" width="80px" height="60px" border="0" /><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    with something like:
    <a class="thumbnail" href="#thumb"><map name="Map" id="Map"> <area shape="rect" coords="33,140,114,260" href="#" /></map><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    However this obviously doesnt work! Am i on the right direction!?
    Thanks

  • Large image popup on mouse over

    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database too?

    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database too?

  • Next / previous image swap WITH larger image popup

    Very simply what I need to do is almost identical to what you
    see here:
    http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
    (scroll down to the animal pictures)
    When you click "next" and "previous" the images swap through
    a series
    called "img1.gif" "img2.gif" and "img3.gif"
    So far so good. However let us assume there is also a set of
    images called
    "img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which are
    larger
    versions of those little thumbnails. I need for the
    appropriate associated
    large image to popup in its own window when the thumb is
    clicked.
    Has anyone a lead on something like that?
    Thanks very much.

    On Thu, 28 Sep 2006 17:59:37 +0000 (UTC), [email protected]
    (Clay)
    wrote:
    >Very simply what I need to do is almost identical to what
    you see here:
    >
    >
    http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
    >
    >(scroll down to the animal pictures)
    >
    >When you click "next" and "previous" the images swap
    through a series
    >called "img1.gif" "img2.gif" and "img3.gif"
    >
    >So far so good. However let us assume there is also a set
    of images called
    >
    >"img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which
    are larger
    >versions of those little thumbnails. I need for the
    appropriate associated
    >large image to popup in its own window when the thumb is
    clicked.
    >
    >Has anyone a lead on something like that?
    >
    >Thanks very much.
    That sounds simple, where are you stuck? Do you not know how
    to open a
    popup? BTW, the JustSo Picture Window extension would be
    perfect for
    the popups.

  • Hotspot image popup?

    Hey everyone,
    Im very new to Dreamweaver / HTML / Javascript but im trying my best so bare with me! Currently i have a simple thumbnail image which i can trigger a larger image to appear (on top) when i roll over the thumbnail image. However im trying to trigger this event with a hotspot and not the thumbnail as i want to have several hotspots on one large image which will trigger serval different popup images on top of the large image.
    My HTML and CSS i currently have to do this:
    HTML:
    <a class="thumbnail" href="#thumb"><img src="sales1.1_thumb.jpg" width="80px" height="60px" border="0" /><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    CSS:
    <style type="text/css">
    .thumbnail:hover{
    background-color: transparent;
    z-index: 50;
    .thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 2px;
    left: 1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    .thumbnail:hover span{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 1;
    left: 200px; /*position where enlarged image should offset horizontally */
    </style>
    This works perfect when rolling over the thumbnail image, however how can i apply this same effect by using hotspots on one image?
    Thankyou for your help

    Hi Zabeth,
    Thanks for your reply!
    How exactly can i define the hotspot and not the image as the rollover? I guess i replace the:
    <a class="thumbnail" href="#thumb"><img src="sales1.1_thumb.jpg" width="80px" height="60px" border="0" /><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    with something like:
    <a class="thumbnail" href="#thumb"><map name="Map" id="Map"> <area shape="rect" coords="33,140,114,260" href="#" /></map><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    However this obviously doesnt work! Am i on the right direction!?
    Thanks

  • Dynamic Image Popup Extension

    Hi, does anyone know of a free dynamic popup extension out
    there? So far the other image extensions I have found all require a
    .jpg file. I am using it for a dynamic page and need to use it with
    a dynamic attribute <img src="#photos.primaryImage1#">.
    Thanks
    Shane

    As a follow-up, Shane tells me that he got the extension to
    work on the
    detail page by cushioning the code with cfoutput tags. Glad
    you got it
    working Shane.
    Shameless plug:
    http://www.communitymx.com/abstract.cfm?cid=A8B18F40A0806AB8
    Bill Horvath
    Free Tutorials for All Macromedia Products
    http://www.communitymx.com/free.cfm
    Free 10 Day Trial
    http://www.communitymx.com/joincmx.cfm
    "Shane930" <[email protected]> wrote in
    message
    news:e1meu0$2rk$[email protected]..
    > Well it looks like there are two extensions that will do
    part of the job
    > for
    > what I want. The first on is CMXCFPopup.mxp by Bill
    Horvath. This one is
    > $3.00 and it works fine with my repeating region page
    but it does not work
    > so
    > far with a detail page that has multiple dynamic images.
    >
    > The second one is dbJustSoPWbMX.mxp by E. Michael
    Brandt. The problem
    > with
    > this one is that the extension is only written for ASP
    currently. I have
    > emailed Michael to see if there is a chance he will
    update it to CF.
    >
    > Thanks
    >
    > Shane
    >

  • LightBox Image Popup

    Ok i've added this between
    <head> and </head>
    <script type="text/javascript">
    function SWFDelegate(url,width,height,caption) {
       var objLink = document.createElement('a');
       objLink.setAttribute('href',url);
       objLink.setAttribute('rel','lightbox');
       objLink.setAttribute('title',caption);
       if(typeof width != 'undefined') {
          objLink.setAttribute('width',width);
       if(typeof height != 'undefined') {
          objLink.setAttribute('height',height);
       Lightbox.prototype.start(objLink);
    </script>
    </head>
    and on my button image on Adobe Flash CS3 i have.
    on( release )
    getURL("javascript:SWFDelegate('images/nelson.png','480','640','Septik')");
    The picture shows the clickable hand but it doesn't show my picture any bigger, when i click it nothing happens, please help.

    I have the same problem and it's driving me nuts. Resizing the Hero (???) frame or the immense lightbox container does nothing. the hero comes in at 47%. is there some size/lock/mechanism working here?
    The design is clearly different from the preview.

  • Image Popup - from Dreamweaver

    Probably really basic, But how do you create a pop up image
    in dreamweaver (it's flash content of some sort I think) that fades
    in and resizes itself. There is an example
    here
    of what I'm trying to get at. When you click on any of the
    thumbnails - whalaaaa.
    Any ideas anyone :)

    They've used this
    http://www.huddletogether.com/projects/lightbox2/
    excellent and free.
    Then there's
    http://projectseven.com/products/galleries/lightshow/index.htm
    commercial.
    Jo
    "nelicans" <[email protected]> wrote in
    message
    news:ggilrl$e95$[email protected]..
    > Probably really basic, But how do you create a pop up
    image in dreamweaver
    > (it's flash content of some sort I think) that fades in
    and resizes
    > itself.
    > There is an example
    http://www.unitedwebsitedesign.com.au/portfolio.html
    > of
    > what I'm trying to get at. When you click on any of the
    thumbnails -
    > whalaaaa.
    >
    > Any ideas anyone :)
    >

  • Using Image Thumbnails in InDesign/PDF

    Hi,
    I'm using InDesign to create a PDF training document but I'm having difficulty in getting some larger images to display at a good resolution. What I would like to do as a result is to place my images as hyperlinked thumbnails which, when clicked, would display the fullsize image either within the same document or in a separate window. Does anyone know if that is possible with Acrobat(PDF)/InDesign?
    Thanks in advance for any help. I'm currently using CS4 Design Standard on Windows XP and am awaiting a copy of CS5 Design Standard.
    Regards,
       Patrick

    I'm using InDesign to create a PDF training document but I'm having difficulty in getting some larger images to display at a good resolution. What I would like to do as a result is to place my images as hyperlinked thumbnails which, when clicked, would display the fullsize image either within the same document or in a separate window. Does anyone know if that is possible with Acrobat(PDF)/InDesign?
    Surprising things are possible with Javascript in Acrobat, so what you ask for might be possible within Acrobat, but you'd best ask over in the Acrobat-specific forum if you want to pursue that. I don't think that what you want can be handled in InDesign alone. However, the InDesign forum might be able to help you get the original images to display at the resolution you'd like, thereby obviating the need for HTML+JS-style image popups.

  • How do you determine custom popup size ?

    RH9/Snagit 10
    I am inserting hyperlinks to graphics in a popup window and trying to get the popups to appear without scroll bars.
    the graphics are all roughly the same size (gui screen caps) and will be viewed internally on the same sized laptop screens.
    I tried auto-sizing but the resulting window was too small.
    I have tried custom popup, but no matter what size i make the image in snagit or when i import into RH, the screen cap does not fit in the popup and there are scroll bars.
    is there a formula i can follow to figure out what size i should make the image/popup.
    thanks

    I found that the best idea is to let Firefox decide that itself.

  • How to popup an OAF page in a new window?

    Hi all,
    I hava a requirement to popup an OAF page in a new window when i touch a image .
    When i touch the image,popup a new OAF page ,and the orial page become invalid like LOV,
    there are some messageTextInput items and a 'Confirm' submitButton in the new OAF page,
    So how to popup a new OAF page and how to pass the values to orial OAF page when i press the 'Confirm' submitButton?
    Can anybody give me a detailed example pls?
    Tks,
    Edmund.

    Hi Ming,
    It seems that the page you are trying to open has some security access on it. Read Menus and Page Security in Dev Guide for more details.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                   

  •      How to remember checkbox values for each image

    The situation is this: i have a horizontal list which i
    populate with images loaded from xml. After i click on any of the
    images, popup windows is displayed with checkbox. The same popup is
    displayed for all of the images after i click on them. I need to
    remember checkbox values (on/off) for each one of the images in
    horizontal list but i don't know how to do that? How can i know
    which one of the images (they are different) inside horizontal list
    i clicked on in the first place?
    thank you

    I am sorry but i don't quite follow you, i am not sure what
    you are saying so i would really appreciate it if you could explain
    it to me a little bit further. I have the following mxml code where
    i define my HorizontalList:
    <mx:HorizontalList height="326" width="935" id="imageList"
    itemRenderer="mx.controls.Image" columnWidth="427" rowHeight="320"
    itemClick="popUpWindow()" backgroundColor="#4A4A4A"
    borderColor="#444242" themeColor="#000000" verticalCenter="166"
    horizontalCenter="0">
    </mx:HorizontalList>
    and following "popUpWindow()" function which i call when
    image in HorizontalList is clicked:
    //previously i populate horizontal list with images from an
    array "slidePathAC"
    imageList.dataProvider = slidePathAC;
    public function popUpWindow():void{
    trace ("\npopUpWindow function")
    var tw:TitleWindow = new TitleWindow();
    tw.showCloseButton = true;
    tw.setStyle("borderAlpha",0.9);
    mx.managers.PopUpManager.addPopUp(tw, MainPanel, true);
    tw.width = 500;
    tw.height = 500;
    mx.managers.PopUpManager.centerPopUp(tw);
    tw.addEventListener("close",removePopUp);
    Thank you very much for your help

  • Uploaded images lost

    Hi,
    once again the images I uploaded to AppStudio are lost. The upload URL gets a 404 error. They happened to work some time ago, but now they seem to be gone.
    Example:
    https://waspro.blob.core.windows.net/apps/48393/3cbc24fb-7e08-49da-a6cd-0bc48e146ba2/res/WP_20130907_12_35_00_Pro.jpg
    has worked once in an old version of my app.
    What has happened here?
    Thomas

    Re: templates
    I've never used a dwt.
    I will build the index page I want and get the CSS all right, and then save it as template.html in my root folder. I find that if I ever get strayed from my styles or something else goes wrong with any page I build from there, I always have my original to start over from.
    Alan's right though. Somewhere there is something (however miniscule) that doesn't match between the two pages.
    I just went through an hour of hair pulling, over a second quotation mark in one line of an embedded script. Six images in a rotating banner with hyperlinks for each image, and one little " kept the entire script from loading and working properly.
    I have another one I use for overlapping image popups, and it's the same way. If I don't have the exact name and extension (spelling AND case) for each picture on the page, none of them work.
    "It's the little things."

Maybe you are looking for