Using javascript pop ups with catalyst

Is is possible to use a java script popup with the "Go To URL" interaction?  I would like to have a specifically sized popup window and am using the following code: javascript:popWin('/xxxxx.html','750','650',true); .  Is there another way to get a specifically sized popup from catalyst?

Found the culprit!.
When disabling an add-on for grabbing material into TreeDBNotes - Add to TreeDBNotes 1.0 - the rest started working fine.
The TreeDBNotes is a great word processor / database storage, that deserves more users and upgrades!

Similar Messages

  • More than usual pop ups with pages freezing ?

    Hi i've been having problems with constant pop ups with pages freezing anyone else having these problems ?

    Force Quit .
    Press command + option + esc keys together at the same time. Wait.
    When Force Quit window appears, select the Safari if not already.
    Press Force Quit button at the bottom of the window.   Wait.
    Safari will quit.
    Relaunch Safari holding the shift key down.
    Identify and remove adware
    http://www.thesafemac.com/arg/
    or
    use Adware Removal Tool.
    http://www.thesafemac.com/art/

  • Bugs? Pop-ups with raw footage appearing after Adobe Flash Player down-loaded.

    Hello! I am confused about what is appearing with my downloading Adobe Flash Player. I have used it before without problems but then I had to download it again to start holiday photos about 10 days ago. I immediately received pop-ups with raw footage (porn) on it. The ads said they were by 'bettersurf,' and 'done...' (something, I can't remember.) They would just pop-up in the middle of anything I was working on. I contacted Windows because it had a logo that looked like Adobe but it said that the windows media player needed to be updated. I'm good on all of that - no need to update. The only way to make it stop (I even blocked the sites from access, had the safety controls on 'strict' and parental safeguards on) was to turn off Adobe Flash Player. Well, I need to get the cards done and so I downloaded it again (with some difficulty I want to add even though I followed instructions to a 't'.) Sure enough I am getting pop-ups from the same ad company as before. I haven't yet seen porn but I'm suspicious. My system is 11.9.900.152 (64) Windows 7. Hopefully I have that right, I think that is the first no. When I check to see if Adobe Flash Player was downloaded correctly, etc. it verifies that it is. Can somebody help me? My daughter is young and I watch her when she is on the computer (I'm actually sitting right with her the whole time,) so I am positive she hasn't downloaded something wrong. And I want to add again that my settings are on strict, pop-ups turned OFF....and the pop-up regarding updating windows to have the flash player work correctly looks very much like a legit site - but I know it isn't.
    Thank you so much for any words of advice.

    You're infected.
    Those ads DON'T come from Flash Player (or Adobe), but they DO use it to display.
    Run a thorough virus scan, and download TDSSKiller to look for "adware".

  • I have recently gotten many pop-ups with my blockers on.

    I thought this was from a virus because it started when we found a virus or infection "acer arcade" a week ago and it was very hard to get out of the computer. I got everything out and the computer says it is totally clean of viruses but I am still getting pop ups with my blockers on. Is there something the computer can't see or is there something i need add on from firefox??? The pop ups come about every 5 minutes and it is very annoying!!!

    I thought this was from a virus because it started when we found a virus or infection "acer arcade" a week ago and it was very hard to get out of the computer. I got everything out and the computer says it is totally clean of viruses but I am still getting pop ups with my blockers on. Is there something the computer can't see or is there something i need add on from firefox??? The pop ups come about every 5 minutes and it is very annoying!!!

  • Javascript pop-ups don't open, neither does the Add-ons field. Connected?

    After reset or re-install, I can access Tools > Add-ons once. Then it will not open again. When clicking it or using command (Ctrl+Shift+A), nothing happens - no message, no symbols in address field, nothing.
    Also, web pages with Java pop-ups (it says "javascript:popup_imp..." when I try to use them) do not work, like the web interface of a mail service, where New Message or Reply normally opens in new tab.
    Are these issues related?
    May installed plug-ins be involved?
    What can be done?
    Thankful for any support!
    /m

    Found the culprit!.
    When disabling an add-on for grabbing material into TreeDBNotes - Add to TreeDBNotes 1.0 - the rest started working fine.
    The TreeDBNotes is a great word processor / database storage, that deserves more users and upgrades!

  • No pop-ups with partner determination in Interaction Center Web UI

    Hi,
    We are working with SAP CRM 7.0 SP06 and have the following problem.
    In Interaction Center Web UI, when we create a sales order, the partner determination is triggered. But no pop-ups are shown to choose the right business partner. When we use Web UI for different Role (not Interaction Center), then we will get pop-ups to choose.
    So partner determination is alright, but pop-ups are not working for us in Interaction Center.
    I know when using SAP GUI Interaction Center, you have to implement SAP Note 487734 for getting the pop-ups. But this note is not relevant for CRM 7.0 and Web UI.
    Do you know what the problem is?
    Regards,
    Emile

    Hi Naga,
    In customizing go to:
    Customer Relationship Management => Interaction Center WebClient => Business Transaction => Define Business Transaction Profiles
    Then for your Business Transaction Profile go to 'Business Transaction Dialog Boxes' and mark the 'Allows Dialog Box' field.

  • How can I use JavaScript extention functions with Xalan for transforming XML with XSL

    While transforming standart XML and XSL files to HTML with this servlet:
    package mypackage1;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    import java.net.URL;
    import javax.xml.transform.*;
    import javax.xml.transform.stream.StreamSource;
    import javax.xml.transform.stream.StreamResult;
    import org.mozilla.javascript;
    public class Servlet2 extends HttpServlet
    private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException
    try
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Source xmlSource = new StreamSource(new FileReader("c:/aaa.xml"));
    Source xslSource = new StreamSource(new FileReader("c:/bbb.xsl"));
    Transformer transformer = tFactory.newTransformer(xslSource);
    transformer.transform (xmlSource, new StreamResult(out));
    catch (Exception e)
    e.printStackTrace();
    everything is going ok,
    but when try to use javascript function in XSL file, for example like in this:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns:lxslt="http://xml.apache.org/xslt" xmlns:my-ext="ext1"
    extension-element-prefixes="my-ext">
    <lxslt:component prefix="my-ext"
    functions="getdate">
    <lxslt:script lang="javascript">
    function getdate() {
    var d = new Date();
    return d.toUTCString();
    </lxslt:script>
    </lxslt:component>
    <xsl:template match="/">
    <p><xsl:copy-of select="my-ext:getdate()"/></p>
    </xsl:template>
    </xsl:stylesheet>
    recieve error-message:
    XSL-1000: (Fatal Error) Error while parsing XSL file (Extension function namespace should start with 'http://www.oracle.com/XSL/Transform/java/'.).
    What kind of namespace I should specify?

    Hello, Paul.
    I'm sure you may not use JavaScript as a language for creating XSLT extention functions with Oracle XDK Parser. This is since parser might have JavaScript interpreter to work with JavaScript, but it has not.
    If you need to build any XSLT extention functions you must build them as Java class' static methods.
    After that, you define the usage of the class by mean of namespace declaration as:
    xmlns:your-ns="http://www.oracle.com/XSL/Transform/java/yourpackage.Yourclass"
    (Prefix "http://www.oracle.com/XSL/Transform/java/" may differs if you use non-Oracle XML parser)
    and use class' static method in XSLT:
    <xsl:value-of select="your-ns.staticMethodName(paramsIfAny)"/>
    In your case you may wish to use standard Date class:
    xmlns:date="http://www.oracle.com/XSL/Transform/java/java.util.Date"
    <xsl:value-of select="date:toString(date:new)"/>

  • Javascript pop-ups - Classic ASP

    Anyone ever have a problem with javascript pop-up windows no longer keeping focus after upgrading to 5.0? We recently upgraded, and this is one of the quirky things that's come up...
    Wendy Ramsaur, KSA

    Found the culprit!.
    When disabling an add-on for grabbing material into TreeDBNotes - Add to TreeDBNotes 1.0 - the rest started working fine.
    The TreeDBNotes is a great word processor / database storage, that deserves more users and upgrades!

  • Text-only Pop-ups with linked Word docs in RH8 and links in general

    Procedures have been written in Word with several words to have pop-up definitions.  The Word-styles have been set up in my RH8 project.  I plan on linking the Word docs instead of importing them.
    What are the impacts to the pop-ups and links when the original Word document gets modified down the road.  Do these all need to be set up again?
    Am I better off performing an import or will linking be acceptable?  I have not tried to create the pop-ups or links at this point.
    Additionally, we already called out related procedures at the bottom of our procedure (they are not linked-would do that in RH).  Should I remove these in the Word document and perform the drop and drag function in RH8 to add the related documents?

    A pop-up menu can be associated only with timelines not with playlists.

  • Homepage use to pop up with a variety of website icons that reflected the site actual image such as pininterest, facebook, youtube, + a search 4 ur own?

    BEfore I had my computer restored, when i clicked on a new tab the page popped up with different icons from websites such as facebook, pininterest, youtube, and it also had a bar where i could search for others and input my own asd well. It was not the most recent tabs. How do i get this back

    The built-in page can be customized by dragging bookmarks to the various thumbnail areas, but it doesn't (currently) come with popular website links. More info on the built-in new tab page:
    * [[New Tab Page – show, hide and customize top sites]]
    You might have been using a "speed dial" / "fast dial" type add-on previously. If you search on the Add-ons site and check the screen shots of the types of pages they create, perhaps you can find that same one again.
    * https://addons.mozilla.org/firefox/extensions/
    By the way, what was involved in the restore? Sometimes Windows will create a folder named:
    C:\Windows.old\
    which may contain your old Firefox profile (settings) folder.

  • Pop ups with blocker

    Hi
    even though I have acitivated the pop up blocker I get pop ups.
    Why? How can I change it?
    Thanks for any help
    Andrea

    1. If adware is installed without your knowledge,
        use  free  AdwareMedic by clicking “Download ” from here
         http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once adware is removed, quit the app by clicking AdwareMedic in the menubar
        and selecting “Quit AdwareMedic”.
    Safari
    2. Safari > Preferences > Extensions
        Turn those off one by one and relaunch Safari again to test.

  • Don't able to download file to local using window pop-up with IE

    Dear all,
    I am working in web dynpro for java, i want to download file to local using window pop-up , here is my code :
    IWDResource resource = WDResourceFactory.createResource(blacklistData.getBytes(), allblFilename, WDWebResourceType.TXT);
    IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(
                     resource.getUrl(WDFileDownloadBehaviour.ALLOW_SAVE.ordinal()));           
    window.show();
    It runs in Firefox browser very well, but IE can not run. :(. How to resolve my problem ?
    @Note : version Firefox is 3.6, IE is 8.0
    Thanks.

    Hi Soledad
    Please check browser compatibility of the webdynpro iview for server version.
    Refer to Product Availability Matrix :  [http://service.sap.com/pam|http://service.sap.com/pam]
    Best Regards
    Arun Jaiswal

  • Can I use pop ups with numbers? It works on my iMac but I lose it when I send it to my iPad. Did I do something wrong?

    I really need to ustilize drop down options in numbers spreadsheets. Is there any way to do it or any apps I can download to do it?

    If you updated your existing account then try logging out of it on the iPad by tapping on the id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on the iPad.  If you created a new account then any content that you purchased/downloaded via the old account will remain tied to that old account, and only that old account can download updates to its apps or re-download it's purchases.

  • Firefox 31 (Ubuntu) won't open new window or Javascript pop-ups

    Hi, I am running Firefox 31.0 in Ubuntu 14.04 having the following problem:
    1) When I click on New Window or New Private Window in the File menu, nothing happens, same with pressing Ctrl-N.
    2) Certain websites are not able to open new windows or pop-up windows through Java or Javascript
    (e.g. the command: javascript:popup_imp(...) does not produce anything)
    I did try safe-mode and there everything works fine. Then I restarted firefox (several times) with all plugins disabled but still had the same problem, so I don't know what causes the difference between safe-mode and no plugins.
    (By the way, there is no problem opening a New Tab by pressing Ctrl-T or from the file menu, the issue is only the New Window and New Private Window).
    Is there any other way to narrow down what is preventing the new windows?

    Hi cor-el,
    thanks for your answer, however as I explained in my post, safe-mode does not present the problem, but disabling the extensions on its own does not help (i.e with all extensions disabled the problem still is there).
    Also, I did not have this problem in the past and I did not change anything graphics related (unless something was changed software-wise internally and I did not notice).
    And yes I am currently using the default theme.

  • Annoying pop ups with every click

    When connected to the internet, I keep getting ridiculous pop up ads with every click. The tech guys at the apple store deleted some apps but nothing has change. Can someone please tell me what's wrong and how to rectify it? I must say that there is a zip cloud thing, not sure if its an app on my laptop, I think I might have downloaded it accidentally. Could that be the problem?

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware.
    Malware is always changing to get around the defenses against it. These instructions are valid as of today, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for a more recent discussion, or start a new one.
    The VSearch malware tries to hide itself by varying the names of the files it installs. To remove it, you must first identify the naming pattern.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for two files with names of the form
              com.something.daemon.plist
    and
               com.something.helper.plist
    Here something is a variable word, which can be different in each case. So far it has always been a string of letters without punctuation, such as "cloud," "dot," "highway," "submarine," or "trusteddownloads." Sometimes the word is "apple," and then you must be especially careful not to delete the wrong files, because many built-in OS X files have similar names.
    If you find these files, leave the LaunchDaemons folder open, and open the following folder in the same way:
    /Library/LaunchAgents
    In this folder, there may be a file named
              com.something.agent.plist
    where the word something is the same as before.
    If you feel confident that you've identified the above files, back up all data, then drag just those three files—nothing else—to the Trash. You may be prompted for your administrator login password. Close the Finder windows and restart the computer.
    Don't delete the "LaunchAgents" or "LaunchDaemons" folder or anything else inside either one.
    The malware is now permanently inactivated, as long as you never reinstall it. You can stop here if you like, or you can remove two remaining components for the sake of completeness.
    Open this folder:
    /Library/Application Support
    If it has a subfolder named just
               something
    where something is the same word you saw before, drag that subfolder to the Trash and close the window.
    Don't delete the "Application Support" folder or anything else inside it.
    Finally, in this folder:
    /System/Library/Frameworks
    there may an item named exactly
                v.framework
    It's actually a folder, though it has a different icon than usual. This item always has the above name. Drag it to the Trash and close the window.
    Don't delete the "Frameworks" folder or anything else inside it.
    If you didn't find the files or you're not sure about the identification, post what you found.
    If in doubt, or if you have no backups, change nothing at all.
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.
    "ZipCloud" is some sort of cloud-storage service with a doubtful reputation. The OS X client is sometimes distributed along with malware. Although ZipCloud may not be malicious itself, it should be deemed suspect by virtue of the company it keeps.
    To remove ZipCloud, start by backing up all data (not with ZipCloud itself, of course.)
    Quit the application, if it's running, and drag it from the Applications folder to the Trash.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/LaunchAgents/com.jdibackup.ZipCloud.autostart.plist
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu. A folder should open with a file selected. Move the selected file to the Trash.
    In the same folder, there may also be a file named
               com.jdibackup.ZipCloud.notify.plist
    Move that to the Trash as well.
    Log out or restart the computer and empty the Trash.

Maybe you are looking for

  • Connecting a linksys WRT600N to a playstation 3

    will be getting this router this week is there any one that could give me any info on how to connect to a playstation 3. were there any special configuration  that needed to be done or were there any problems that I may encounter. and lastly is it be

  • Error while starting workflow from warning msg or error msg?

    Hello experts, I m tryin to start and workflow from error msg of ME21...whn we juss click enter without entering any value, it gives error as -" enter Purch org  ". whose msg class - ME and msg num - 083. thn from t-code SWUY,i creating and linked wo

  • Combining Clips into one

    I was wondering if anybody could help me. I am having a great time using imovie and idvd with older tapes. I just imported a tape off a new camcorder, so now imovie breaks the movie into small clips for each time the camera was turned on and off. I m

  • JavaFX 2.1 TableView that includes WebView cells

    I want to create a JavaFX table that, in the cells of one column, allows the user to edit XHTML text. I only need very basic formatting capabilities like bold, italic, striketrough. I have already managed to implement this by using my own subclass of

  • Can't update to aperture 2.11

    I have Aperture 2.0 and when I try to install 2.1 a box pops up and tells me 2.0 is rewuired to install this update. Any help would be appreciated