Image on a pop-up window

Is it posible to insert a image into a pop-up window?
Thanks

I found some nformation here:  http://www.windjack.com/ 

Similar Messages

  • Preloader Image Script and Pop-Up Window Behavior

    Hello --
    My client's referring site --
    www.moscaritolo.com/originals.htm. Please note: I am not a
    programmer, but more of a designer and don't possess the skills of
    writing code so in the development of this site for my client, I
    decided to use this preloadslider -
    http://www.dynamicdrive.com/dynamicindex14/preloadslide.htm
    - by Jason Moon to display the images. So far, I really like it and
    so does my client.
    However, I now have a problem with the pop-up window behavior
    for the triptych image on the originals.htm page. When you hit the
    triptych pop-up behavior, the preloader stops working on the main
    page and (#) stays in the address bar even when you've closed the
    pop-up window for the triptypch image. Next, I tried just making
    the word triptych a standard link to a new htm page and using the
    back button on the browser and STILL, the preloader will not work
    properly..? Any ideas..?
    Text

    please code sample ? demo code is enough to try
    with.This has nothing to do with samples. You should know
    which encodings you use. You decalre it in the HTML
    i have not mentioned encoding in the HTML.
    by html encoding , i think you mean this (bold letter)
    // created by dreamweaver 2004
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>if you mean that...NO, I DID NOT USE that thing in my JSP. i deleted that.
    and XML headers. XML encoding, i have this at the start of XML....
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    // XML data
    Java, if nothing else is said, uses
    UTF16.
    in my form i have method="post".And what do you receive? What does "corrupted" mean?
    Not well-formed? Garbage characters? Truncated?error message: [STDOUT] xmlStringelectric.xml.ParseException: java.io.IOException: could not find 59 line 1, char 46682:
    NO, i dont blame my parser. if i provide the XML seperately, then my parser works fine.
    but when i send the XML via JSP to the parser it does not work.
    that means sending of XML is making some trouble.

  • Pop-up window - triggered by a click on an image

    I need to know how I make an image call a pop-up window (external website), when you click the image.
    Please help.

    Thank you very much.
    I actually had some useable java script, but the trick dividing the commands into two steps - Insert HTML --> javascript code AND linking an object to that code did the trick.
    Now I'll have to learn some more javascript code in order to center the pop-up window.
    But thank you very much so far.

  • Looking for a best way to arrange an array of Pop Up windows with repeating small imgs

    I would like to find out what is the best way to approach setting up various Pop Up windows.
    Here is my set up:
    I have 20+ product images which act as buttons and each brings a user to a unique section with the pop up window where a large photo of this product in use is displayed. In addition to this photo in the pop up window are additional product images (which were also used to create a photographed assembly)
    I figured that since I repeat my product images on the pop up windows and all of them are already used in the product page let me use them again in the pop up window. So I arranged the pop up windows in each separate labeled section in which I reused the product images buttons from the products page and put the UI Loader into each separate labeled section which loads the big assebly photo of that product in use.
    Here are my questions:
    - Should each product have a separate labeled section with a pop up window
         This way I can reuse a number of already existing product button images and load only the high resolution assemble image
          However I end up having a lot of sections labeled for each product
    - or it should be arranged as follows:
         var sourceVar:String;
         function my_btnDown(event:MouseEvent):void {
         sourceVar="product_popups/product1_popUp.swf;
         gotoAndPlay("productsLoader");//where "productsLoader" is the labeled secion of my UI Loader
         This way I end up with one labeled section but have to implement up to 5 buttons on each new Pop Up.  In a sence I make the size of a loading pop up .swf a bit bigger by not recycling the existing buttons, but my assumption that I will have an easier funcitonality of the site?
    I am not sure which way would be a better or more appropriate way to go?

    Léonie-
    You are totally correct regarding custom tags instead of keywords depending upon the instance.
    My main point is that Folders are mostly misused. Images need to be keyworded or tagged and linked to Albums, generally not put in folders. With digital images almost always folder organization of images is just wrong, because folders by definition locate an image in just a single category. And few images are ever just in a single category.
    Some usage of folders can be helpful. Folders of Projects (e.g. 2001 Projects, Client royalfrenchel, etc.) make sense to help collapse a large number of Projects. However note that even in that simple two-folder example images cannot be in both folders at the same time without splitting the folders up.
    IMO users should spend  time carefully establishing how to keyword/tag and aggressively avoid using folders as much as possible. Eg. in Arturo's instance "week5" should be a keyword, not a folder. That way if one wants to make a brochure and use 5-week-old puppy pix it is an easy search on "week5" to retrieve pix to create an Album to peruse for brochure purposes. If "week5" instead comprises multiple deeply nested Folders subset to every litter of every Dam the process of retrieving becomes a nightmare.
    I welcome further discussion of this important topic.
    -Allen

  • Create pop up window

    I would like to create a pop up window- or new window
    to place a pdf of my resume from a button in my flash document. Can
    I do that and how? The instructions I found in Flash help are
    written for the developer mind set- I am all about visuals. If a
    step by step tutorial exists, even better. Thanks all.

    franny23,
    > Ok. so if I use this code- where do i put my PDF/resume?
    >
    > thank you for the help.
    Using getURL() is certainly one way to accomplish this goal.
    The
    getURL() function in AS2 is practically identical to the
    anchor tag (<a>) in
    HTML. It's mainly there for making hyperlinks (or buttons)
    ... basically,
    for opening documents. Usually, the to-be-opened document is
    an HTML page,
    but a PDF will do.
    It doesn't really matter where you put your ODF, among your
    site
    folders, as long as you reflect its position (its path) in
    your usage of
    getURL() -- just as you would with a normal HTML hyperlink.
    If your PDF and the SWF are in the same folder, you don't
    need a path at
    all:
    myBtn_btn.onRelease = function() {
    getURL("resume.pdf", "_blank");
    If the SWF is in the root of your site, along with its HTML
    page (the
    page that embeds that SWF) and the PDF is in a folder called,
    say, pdfs,
    then your code might look like this:
    myBtn_btn.onRelease = function() {
    getURL("pdfs/resume.pdf", "_blank");
    Does that make sense?
    The second parameter, "_blank", is an optional parameter
    that tells
    Flash how to open the new document. The default parameter is
    "_self", which
    means this hyperlink would replace the current page with the
    PDF. The user
    would have to click the Back button in order to return. The
    presence of
    "_blank" means the PDF will be openend in a new browser
    window. I don't
    know if that would count as your image of a "pop up window,"
    but arguably it
    could.
    In the code shown, your button would have to have an
    instance name. The
    instance name is what gives thiat particular button a unique
    identifier, so
    that ActionScript can speak with it directly. As shown, the
    instance name
    is myBtn_btn. If you prefer, you could call it myButton or
    hyperlinkButton,
    or even something silly like bananas. Whatever you call it,
    just make sure
    to update your code to reflect that instance name.
    e.g.
    bananas.onRelease = function() {
    getURL("pdfs/resume.pdf", "_blank");
    Where can you assign this instance name? Select your button
    on the
    Stage by clicking on it, then look at the Property inspector
    (Window >
    Properties). You'll see an input field for the instance name.
    Then you'll
    type the code shown above into a keyframe that lines up
    vertically with the
    keyframe that contains your button. It's recommended that you
    create a new
    layer just for code, because it makes all your ActionScript
    easier to find.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have manged to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the pr

    I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have managed to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the projects, what I would like is a piece of text  or icon that when you roll over it and then click a separate window pops up with additional information in, once finished reading the info you can then click to close the box, any advice on how to do this?

    The best way to do what you're asking is with the Composition widget. Start with the Tooltip preset, which, by default shows the info on rollover. You can change the option to show on click, which is what you're after. You can also add the close button or have the info disappear on rollout.
    David

  • Is it possible to create a link to a pop-up window from an image map in dreamweaver?

    I'm trying to use an image map as my home page. As it is a simple site I want the links on the image map to open in a small 200 x 200 pixel pop-up window.
    I seem to only be able to have it open in a new tab.
    Thanks for any help!

    ZankeBee wrote:
    http://www.royalteascafe.co.uk/opening.html
    That site uses Cyber Studio javascript actions. Cyba Studio was discontinued years ago.
    If you're code savy enough you can extract the javascipt from the site and the csactions and rebuild to your own requirements. It's not that difficult but you do need to know your way around the code environment in Dreamweaver.
    Give us another site link and I'll take a look to see if there is anything more up-to-date code handing these pop_ups.

  • I would like to create a pop-up window appear from Labview Interface. In this window, I will have a slide control and an image taken from a camera. The main VI have to run while pop-up window is open. How can I do ?

    When I pushed a button, this pop-up window has to appear. There will be a slide control and a picture from a camera in this window. Is it possible to make appear this windows while main VI Interface continue to run ? How can I do this ? Thank you for your answers.
    Cyril.

    Here you go. This is simple example. Maybe not the best way, I am just
    beginner in LV and still not comfortable with data flow that much. I prefer
    events, so I would change this to use Event Structures.
    When you click on OK button on SliderMain, it opens Slider.vi. Now both
    windows are open and you can interact with both. Now if you click on OK
    again with Slider.vi open, you run into problems. Only thing I did was
    change VI properties of slider.vi, mainly window appearance.
    vishi
    "Cy" wrote in message
    news:[email protected]..
    > I would like to create a pop-up window appear from Labview Interface.
    > In this window, I will have a slide control and an image taken from a
    > camera. The main VI hav
    e to run while pop-up window is open. How can I
    > do ?
    >
    > When I pushed a button, this pop-up window has to appear. There will
    > be a slide control and a picture from a camera in this window. Is it
    > possible to make appear this windows while main VI Interface continue
    > to run ? How can I do this ? Thank you for your answers.
    > Cyril.
    [Attachment SliderMain.vi, see below]
    [Attachment Slider.vi, see below]
    Attachments:
    SliderMain.vi ‏16 KB
    Slider.vi ‏11 KB

  • How to create a pop-up window with a larger image

    Again, I'm looking to do something very simple and can't figure it out. I want users to be able to hover over/click on an image and there pops up a larger version of the image, much like you see on online catalogs and shopping sites. I've looked into Lightbox and jQuery but don't understand how to incorporate the code into my pages. Is there a simpler way using DW CS4?
    Thanks,
    Gail

    Select the thumbnail image and link it to the larger image file.
    Use DW Behaviors Panel and hit the plus + sign.
    Choose Open Browser Window.  This will invoke another panel for adjusting the size and other attributes of your pop-up window.
    Hit OK.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • No image size pop-up window in Mail 2.1

    I'm accustomed to seeing a pop-up window at the bottom of my mail, giving me the option of resizing a photo, and telling me how large my message is. Today it's not there. This is probably something easy that I've unclicked, but I can't find it. Oh, it's Mail 2.1, on an eMac running 10.4.8.

    I had this problem and it was related to a Mail plugin (Daylite DMA).

  • Firefox will not open, a pop up window message says: The application or dll mozilla firefox xul.dll is not a valid windows image. I am using XP and firefox use to work perfectly

    Firefox will not open a pop up window says "the application or dll c:program files mozilla firefox xul. dll is not a valid windows range"
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)

    I resolved the problem. I went to CNet and re-downloaded the upgrade. It proceeded as intended and the upgrade is installed and running with no loss of plug-ins, bookmarks, etc.

  • Since installing 3.6.9 my Joomla content editor pop-up windows no longer return the URLs selected

    I recently upgraded to Firefox 3.6.9 and found that when using the editor in a Joomla 1.0.15 website , the content editor pop-up windows no longer return URLs selected (eg: image or file URL to be used in a link). I have been using the site with no problems for many years, and the problem was cured when I reinstalled 3.6.8

    Thanks cor-el but the problem is not in my web development but is a new issue/problem in FireFox which was not present in all versions up to and including version 3.6.8 and was only introduced in version 3.6.9. I have also established that the same problem also exists in FireFox version 4 beta 6 and have therefore also raised a second question today.
    My understanding was that I should raise these issues in this forum, but I will also check out the other forum.

  • Refining JS script to control a pop up window

    After much frustration... I have a working popup window to display small images. The script thanks to WEB DESIGN GARAGE by Marc Campbell is simple enough, he has me paste this in the body:
    <script language="JavaScript">   function doPopup(popupPath) {     window.open(popupPath,'name',       'width=400,height=200,scrollbars=YES');   } </script>
    And I call the popup window with:
    <a href="javascript:doPopup('..//obituary1');">Obituary1</a>
    that I insert in my text at the appropriate place. Adding more (renaming my file and text) as I need them.
    But.. one of the issues evidently with popup windows is that they sink. Clicking on a second one puts them all behind the main window.. So.. Marc includes some code to prevent this. and he writes
    To do this, add the onLoad event to the body tag of the popup  window's HTML file:
    <body onLoad="window.focus();">
        Now where and how do I place this, in my head section... the body section... before or after my popup script... or append it to the link part... Everyplace I place it I get... a yellow highlight in DW implying this will not work.. (it doesn't) or if I stick it where I do not get a yellow alert it does not work either.. and has broken my popup script.
    My testing site.. http://www.test.lsvs.ca/obituaries2.php
    Thanks for any insight / help
    Ralph

    Your pop-up windows look fine to me, but the onLoad code goes in your body tag:
    <script type="text/javascript" src="http://127.0.0.1:37935/xpopup.js"></script></head>
    <body onLoad="window.focus();">
    <p>
    <script language="JavaScript">
      function doPopup(popupPath) {
        window.open(popupPath,'name',
          'width=960,height=625,scrollbars=no,location=no,status=no');
    </script>

  • How to create one time pop-up window?

    I'd like to have a pop-up window called "how to use this app" show up just one time; the first time a user opens the folio to read it for instruction but then not appear again after it is closed. How could I do this? Thanks.

    I have not tried the "alert-box technique" yet.
    I have found code that will only display for first time visitors. How would I add an image to the below code with a link to a website?
    newwin=open("yourpage.htm", "dispwin",
    "width=350,height=350,scrollbars=no,menubar=no");

Maybe you are looking for

  • Ipod has lost memory soem how.

    I just got finnished restoring my 30GB ipod video and now it says in itunes AND on the ipod that it only have 15.97 GB of memory anyone know why it would be at 15 and not 30?

  • MacBook Pro 15 (2.4 GHz) Loosing AirPort Connectivity

    I have a MacBook Pro 15 (2.4GHz) connecting via AirPort to an AirPort Extreme base station. At least once a day, randomly, my MacBook will drop the wireless connection, and then start prompting me for a password to reconnect. If I reboot the machine,

  • MacBook Pro crashes after 10.10.2 update

    Hello! I have been shearing for help and "fighting" with my 15" Mid 2014 Retina MacBook Pro. When I try to play (example. Goat Simulator, S-Tuner [<- on web] etc..) my mac crasher after getting freeze and getting weird colored triangles to screen. I

  • How to make an Audio library with a download option?

    I'm looking to set up an online audio library with Business Catalyst, I'm wandering how would be the best way to set it up if its at all possible?

  • Shuffle won't work with tiger

    My 8 year old daughter saved up and bought an iPod shuffle so she could listen to her own music and story tapes in bed or wherever. To my shock we could not upload anything to it from our IMAC, not PC, IMAC! The problem is that our Aluminum Intel Ima