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.

Similar Messages

  • 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/ 

  • JACOB and pop up windows

    I am using JACOB to test a webapp that contains a proprietary activeX control. So far, so good...I can open a browser, navigate around, access the activeX control and call methods on it.
    The problem I have is that one of the webapp links pops up a vbscript window and I cant seem to access it to "click OK" on it. Does anyone know how I can access the dialog window or any other popped up windows? Any help or suggestions is greatly appreciated. I think JACOB is a pretty fantastic library...but really suffers in the documentation aspect and therefore requires a lot of experimenting and tinkering. Cheers.

    I usually create some javascript/php app that calls image
    files from a specific folder. In that folder the Contribute user
    uploads images (menu: File, Publish file from my computer) and the
    thumbnails can be created dynamically. Some lightbox scripting
    would be nice to, instead of using popups.

  • Contribute and Pop-Up windows

    Hi there,
    Offently I have user that want pop-up windows on their site
    to provide enlarged view of thumbnail pics to their website
    visitors. Of course with a little javascript fonction and a link do
    the trick.
    But how to provide Contribute Users the possibility to add
    more thumbnails and a larger associated view in a pop-up window
    using a javascript link?
    Code:
    quote:
    <a href="/i/terrasse.htm" onclick="return
    popup('/p/en/terrasse.php')"><img src="/i/terrasse_s.jpg"
    alt="Terrasse View" width="350" height="258"
    class="image_align_left" /></a>
    Javascript:
    quote:
    function popup(url, name, width, height) {
    var settings =
    "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes, width="+width+",height="+height;
    window.open(url,name, settings);
    Any idea?

    I usually create some javascript/php app that calls image
    files from a specific folder. In that folder the Contribute user
    uploads images (menu: File, Publish file from my computer) and the
    thumbnails can be created dynamically. Some lightbox scripting
    would be nice to, instead of using popups.

  • Site check and POP up window help

    Hi all,
    If any one has a minute spare could they please look over my
    site , it can be seen at
    this link.
    Any criticisms welcome (be gentle)..!!
    Just one question - with the pop up windows on the aircraft
    specification page, it sometimes takes an age for the images to
    appear - I know that the image file sizes are fairly large (120kb
    sometimes) but my client wants BIG pictures. Is the slowness and
    sometimes failure to load at all a consequence of this alone , or
    is there something else in my code that could be done better.
    Thanks for your time
    Emma

    In FF on XP Home, the center div is floating all the way to
    the righ tof the
    page.
    See here:
    http://cdcdigital.com/tester/sitecheck.jpg
    "Emmahatt" <[email protected]> wrote in
    message
    news:e3akng$1gv$[email protected]..
    > Hi all,
    >
    > If any one has a minute spare could they please look
    over my site , it can
    > be
    > seen at
    http://www.executiveaircraftservices.co.uk.
    Any criticisms welcome
    > (be
    > gentle)..!!
    >
    > Just one question - with the pop up windows on the
    aircraft specification
    > page, it sometimes takes an age for the images to appear
    - I know that the
    > image file sizes are fairly large (120kb sometimes) but
    my client wants
    > BIG
    > pictures. Is the slowness and sometimes failure to load
    at all a
    > consequence of
    > this alone , or is there something else in my code that
    could be done
    > better.
    >
    > Thanks for your time
    >
    > Emma
    >

  • XML parsing and pop up window

    hi,
    i have a JSP.
    this JSP has the following code..
    Relevant code snippet...
    <form name="myform" action="Parse.jsp" method="post" target="newWin" onsubmit="return doSubmit(this);">
    <input type="hidden" name="xmldata" value=<%=array[1]%>> // array[1] is an XML string returned by a class method.
    <input type="submit" value="Parse the xml">
    </form>
    <script>
    function doSubmit(formObj) {
        window.open('','newWin','scrollbars=0,menubar=0,toolbar=0,location=0,status=0');
        return true;
    </script>this Parse.jsp wants to perse the XML given to it....
    the problem is this Parse.jsp never gets the proper xml....because you know i have the value=<%=array[1]%> in the above and this is corrupting the XML.
    so, problem is how can open a pop up and send the XML string from its parent window ?

    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.

  • Removing software from leopard.(rookie question)  And Pop-up Windows?

    I downloaded some photo software that came with the camera, of course it was no good, How do I go about deleting it from my macbook?
    Also, I occasionally have began getting a pop up window on my mac, it just comes up and stays in the back ground, I never even notice it until I close everything else down. Any tips on how to do away with that?

    normally, removing software is simply by deleting the programme from your applications folder.
    say, your unwanted app is called "xxxx"; find "xxxx" in your apps folder and delete. Occasionally, you got an "uninstall" command in your "disk image" (xxxx.dmg) file; you would need to open the dmg file and click on "uninstall" if it's there. Once you know your way around, you'll also find the appropriate "preference" files, which is usually in your home folder/library/preferences, and might be called something like "com.xxxx.plist".
    There are programmes around to make this task easy, but I have never used them:
    http://www.matterform.com/mac_software/uninstaller/
    http://appzapper.com/
    These articles might also be of help:
    http://guides.macrumors.com/UninstallingApplications_in_Mac_OSX
    http://aroundcny.com/technofile/texts/mac031004.html
    Enjoy your mac, they are great machines!

  • ADD ONS AND PoP UP WINDOWS ALERTS TO UPDATE - ARE LINKED TO TROJAN OR MALWARE

    <pre><i>Locking duplicate thread.
    Please continue here: [[/questions/981465]]
    </i></pre>
    I keep getting pop ups windows everytime I go to Firefox browser. Most state that I need to upgrade my media player. I have both ignored and gone to install but my Norton Security tells me the origin of this upgrade is a TRojan Horse. I have a picture of the messages. I need your help. I am disappointed in Forefox lately for this is not the only occassion. Some of the add ons are also unsafe. (i.e. Better Surf).
    I need a contact number so I can send the Printscreen Image.
    Bottom line I no longer feel I can trust even these browsers. I need to resolve all these issues and I get all of these problems with both of My Browsers Chrome and Mozilla.
    I cannot continue wasting such precious time fixing what I dont even understand. Also why no support number.
    Your response will be absolute appreciated.
    Sincerely,
    Rossie'''bold text'''

    Does Google have any "uninstaller" or "updater" for its stuff?
    If you don't mind deleting those plugin files by hand, you can get the locations from a different page. Type or paste '''about:plugins''' in the address bar and press Enter. For each plugin file, the physical location should be listed. Note that some folders may be hidden and in order to reach those, you may want to copy as much as possible of the path (not including the final file name) and paste that into Finder to drill down into the hidden folders.
    Any luck?

  • Mavericks Safari and Pop Up windows

    Since upgrading to Mavericks, and the related latest version of Safari, block pop up windows does not always work.  It may work sometimes, but regularly with some websites I get windows popping up to the front.  Block pop up windows is checked.  I've tried cycling it, quiting, restarting all the usual.  It looks to me that either this feature in Mavericks is not working right or some websites have figured out a workaround.  An example of a website that rules safari is adsupplyads.com.  I've removed the cookie but it just comes back whenever I visit some websites.

    I haven't investigated the issue, but I have seen that some websites use a javascript that "covers" the entire webpage when it opens. When you click anywhere on the website, the JS opens a new window with an ad.
    The only thing I've found to stop those is AdBlock, as William Lloyd pointed out.
    I used to just use JavaScript Blacklist to block the Ads that jiggle, make noise, or flash. I don't mind a website making some money to pay for itself, but if the ads are annoying or get in the way, I'd block them. Now, I have to block them all.

  • Opening firefox comes a Java script error pop up window

    Today I've been having this problem when I open Firefox
    I get this pop up window, one after another.
    Max shows 20
    LeadManage_OnDocumentLoad pd 1320084884 1320084944
    check4Match l1
    metaKeywords 1aaaa
    metaKeywords 2 [object HTML Collection]
    keyarray metaKeywords:undefined
    url:http://support.mozilla.com/fi/questions/881878?=s=java+script&r=1&as=s
    mySearchString:undefined
    How can I fix this, I have installed Firefox again but no help.

    How do you remove my compagion in modules? Please reply ASAP . Thanks .

  • I am getting adds and pop up windows on my Mac OS X how can I stop them?

    I'm getting pop up windows and adds to the side of some websites and I wanted to know how to get rid of those. the administrator user is the only one that is infected. Please help!!

    Go step by step and test.
    1. If adware is installed without your knowledge,
        download  free AdwareMedic by clicking “Download ” from here
        http://www.adwaremedic.com
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once scanning and removing the adware is done, quit the app by clicking AdMedic in the menubar
        and selecting “Quit AdwareMedic”.
    2. Safari > Preferences > Extensions
        Turn those off and try Safari.
    3. Safari > Preferences > Privacy > Cookies and other website data:
        Press “Remove all website data” button.

  • Applescript Studio Beginner - Run a script and display a window

    Hi,
    I am new to applescript studio ; I found out how to make an application displaying a window with a progress bar.
    How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
    Thanks,
    Nicolas

    Nicolas Silvestre wrote:
    How can I start running a script without displaying any window, and at some time in the script, run the "awake from nib" handler that will call the display of the progress bar ?
    The "awake from nib" handler is called automatically when your nib file gets loaded, you don't call it yourself. I suppose you could go thru the pain of putting your window into a separate nib file and then have your script load the nib file when you're ready... but that's not the easiest way to do it and you probably don't need to do this for your situation.
    All you really need to do is go into Interface Builder, select your window object and uncheck the checkbox in the "Window Attributes" pane that says "Visible At Launch". The "awake from nib" will still be called at it's normal time and your window will be loaded but it will not be displayed.
    Then you can do whatever other scripting you need to do... and when you're ready to display your window you simply call:
    show window "yourWindowsAppleScriptName"
    You can do your initial scripting at the beginning of "awake from nib" and then call "show window" at the tail end of "awake from nib" if that works for you. But you don't have to have the "show window" call in your "awake from nib"... you can call it later on in some other handler if you need to.
    Steve

  • Page Zero and Pop-up Windows

    Hello:
    I am trying to create a pop-up window that doesn't have some/all of the page zero regions. I don't want to create another page just for the pop-up window, I would like to use the same page but with(out) some privileges. I just don't want the user to be able to navigate to other pages (page zero lets you do that) from the pop-up window. Is there a way some/all page zero regions can be not shown when a pop-up window is displayed?
    Thanks,
    -Bino
    Edited by: bino on Jun 2, 2010 7:11 AM

    Hi Bino -- I'm not sure how you are bringing up your pop-up window, but you can set conditions on the regions in page 0 just like any other page so, for example, you could have a certain region not appear if the user is not logged on or if an item has a certain value, etc. If you are going to use an item value, when you bring up the pop-up window, you could set the value of that item right in the URL as one option.
    Rgds/Mark M.

  • Having an issue with a pop-up window behavior

    My client has asked me to have a graphic on her web page to trigger another smaller window to open.  I had it set to onClick, so I changed it to onMouseOver.  It works fine in Firefox, it does not however work in Safari and since I'm on a Mac i do not even bother to look at IE because nothing works in IE.
    So can anyone tell me what I need to do to get this to work?  Here's what I think the relevant code is:
      <a href="#"><img src="images/constantcontactallstar_onlinelogo.jpg" style="float:left; padding:10px;" onmouseover="MM_openBrWindow('2009ConstantContactAllTotalOffice.htm','2009CCAward','width =800,height=640')"/></a>
    And you can see the file at:
    http://www.totalofficewebsites.com/marketing.html
    The graphic in the left hand column should link to the press release on the mouse over.
    Again, thanks for the help!!
    Nina

    I'll check my browser settings.  What would be a better solution to this?  Leave it as onClick?
    Yes.  To get around Pop-up script blocking, the user must initiate an event by clicking the link.
    Another approach is to use pure CSS (no scripts) to create a rollover effect
    http://alt-web.com/DEMOS/CSS-Disjointed-Image-Rollover.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Safari and pop-up window saying computer is infected with virus

    Hello,
    I'm ... "hoping"...this was just scareware stuff - but I was on safari and clicked on a link off of google when I got a pop-up that said my computer has been infected. I think another window popped up and I clicked cancel - and kept on clicking cancel...it kept popping up and I'd click cancel - finally about after say 5 times closing the popup - the original popup was there. I don't think it gave me a choice to cancel...it was like continue or some other choice.
    At any rate what appeared next was what looked like file folders and perhaps a scan bar or progress bar and a bunch of stuff about viruses detected. I panicked and quickly just closed the window as quick as possible and now can't even really recall what I saw.
    I honestly didn't do anything other than click on a link. So I can't imagine I really did anything. Can you get into trouble just from clicking on a link?? Is there a way to tell if I really did anything? Has anyone else had this happen and know it is either a concern or just scareware??
    Any suggestions?
    Should I be concerned??
    Thanks!!

    Hi
    No virus out there affects a Mac directly. Best way to eliminate these intrusive panels is to add DNS server codes to your System preferenes>Network panel.
    To do so, open the panel, click on your Internet connection on the left, then select "advanced". In the DNS panel copy/paste these openDNS codes on separate lines: 208.67.222.222 and 208.67.220.220. Then, select OK, then "apply".
    Restart Safari.
    In Safari, open Safari Preferences>Security>Show Cookies. In the spotlight panel, type the name of the website triggering the warning. Remove any cookies that appear.
    Lastly, in the Safari Menu, select "empty cache".
    That ought to clean up the problem.

Maybe you are looking for

  • Use of variable header XHeaderName1 in SOAP sender adapter

    Hi all, I have a doubt regarding the use of adapter-specific attributes in SOAP sender adapter. In specific: the SOAP client should be able to pass a variable with the SOAP request (XHeaderName1 header variable) and this should be available in mappin

  • Windows 7 - No networking until login

    Hello, We have 4 windows 7 machines all connected to a sbs 2011 server Each of these machines all have the same errors in their event logs relating to no network connectivity at boot up. The errors logged are: 5719 - Netlogon 502 - folder redirection

  • All SQL statements in a session

    Hi OTN, It's possible to get all SQL statements executed in a session? In V$SESSION and V$ACTIVE_SESSION_HISTORY are only the current and pre current statements. -JSG

  • BridgeVIEW Networking stops after a certain time

    Hi, We have a BridgeVIEW v2.1.1 system with several server PC's which are connected over the network with one client PC. The server PC's are responsable for the I/O's and the client PC is used for monitoring the measurements and to control the settin

  • Re: Node Manager is not responding

    Yes, we have seen this also. But only on NT Nodes. I have not seen this occur on UNIX or VMS. The only way we have been able to clean it up is by using Mark Russinovich's HandleEx utility. You cannot even look at it using Escript/environment console.