If I open a pop up. The screen opens but the contents don't load. How do I solve this?

In my website build with joomla. I have to insert tables and links and stuff by opening a pop up. They do open but the needed contents doesn't load. This also happens with online game: goalunited (classic version)

Hello briank22,
go to [http://kb.mozillazine.org/About:config about:config], find :
privacy.popups.showBrowserMessage
and
browser.popups.showPopupBlocker
and be sure it is the default TRUE (if it is false, double-click on each one to make it true)
thank you

Similar Messages

  • HT203433 when you buy a CD and some of the songs don't download, how do you solve this?

    when you buy a CD and some of the songs don't download, how do you solve this?

    Did the original songs that do not appear on the car player play in the Music app on the iPod? Sometimes glitches happen and they do not. Also, If y ohave a 5G iPod/iOS 7, purchase songs  will show with an cloud icon by them if they are not downloaded if Shall All is turned on in Settings>iTunes and App Store

  • Documents I forward are not received under the original document name. How do I solve this?

    Documents I forward are not received under the original document name. How do I solve this?

    If you're referring to the name of the attatchment showing when viewing the entire email, that's there's no way to change how it's done.  The title and body of the actual document is unchanged after it's opened. 
    Does this naming of the attachment really confuse the recipient?  If so, put something in the body of the email to make it clear what's attached.

  • I've just installed mountain lion on my macbook pro. I cannot open preview and it is also stalling the log out sequence? How can I solve this

    I've just installed Mountain Lion on my Macbook pro and cannot now open Preview. I've partly solved the reading of PDF documents by installing Adobe Reader, but Preview is also stalling the log out process. Any suggestions how I might solve this annoying trait would be most appreciated. Many thanks.

    vidaiow wrote:
    Have just tried force quiting Preview via the Dock and reopening a file and it worked . Hurrah !. Thanks for your help.
    Just an FYI, normally you give the 'solved' award to the person who gave you the answer, not to yourself.

  • When more tabs open only the new tab content gets desplayed. How can I solve this?

    I am using a macbook pro and a imac. I updated both to Firefox 5 yesterday. The imac is fine but on the macbook pro firefox behaves strange after restart. If I have more than one tab open, I can not go back to a previous tab. The animation shows that the Tab was click and is active but it doesn't change the the web content and displays only the content of the newest tab.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I can't open the iTunes 64bit setup. How do I solve this?

    I have a Compaq Presario CQ57 Notebook PC with Windows 7 SP1 Home Premium 64-bit, an AMD C-50 Processor running at 1GHz, 2GB of ram (1.60GB usable), so this the requirements.
    Here's what the error says: C:\Users\*******\Downloads\iTunes64Setup is not a valid Win32 application.

    So how'd you solve it?

  • Ipa opens up into content viewer...how can i change this?

    hi guys, ive been using dps for a while and ive only just recently come across an issue..
    when i go through the app creation process to create an ipa file in the app builder, i want the app to open straight away instead it goes to what looks like the content viewer library page.
    any clues on how to fix this?
    appreciate any help and guidance
    Cheers. Deep

    ahh i see, thank you for the clarification
    if i was to create it in a single edition would this not happen and instead open the app as a normal app would open? i.e. without the library screen?

  • Hi!!I have some problems with the synchronization of my system, and I don´t know how I can solve this!

    My system consists of differents vi´s.Some of them are used to read analogic inputs and digital inputs, using the serial port.
    The values that I read, go through differents vi to be proccesed, and at the end, these values are written in a file, all the values in the same file.
    My problems of synchronization are:
    1. I have one vi per input, and all of them use the same serial port. How can I synchronize them to avoid serial port conflicts? (using queues??) And how can I do, to get differents number of samples/sg with every vi? I have to introduce them in differents loops?
    2. The other problem is that, for example, I want to read 8 samples/ s but I only want
    to write two samples every second. How can I do to avoid stoping the data flow?
    Maybe, my problem is that I want to see the system like
    one block, and I am ignoring that, although all the system works like a block, every part works using a different "speed". I don´t know how tools can I use to combine two ideas, working like an only system( data dependence, some vis need the data of others vi to be able to work) and working getting differents numbers of samples/s.
    I have seen that there are synchronization vis. I am going to glance at them, maybe I find something interesting but I amsure that your help will be very useful?
    Thanks in advanced!!
    Graci

    I think you are pretty much on the right track with Queues. I have implemented a very similar system myself using queues. I have even different systems connected to the serial interface, but I can synchronise them all easily using the following method:
    1) Make a VI for opening the serial port and reading the data. The data (parsed to extract the numbers required) are then stored in an array (Shift register). If the pre-determined time delay is reached (say 5 seconds) the values are averaged and written to a Queue with a defined data type. Save the VI as a VI template.
    2) Make a VI which starts an instance of this template VI for every channel you require. You can use VI Server to set values on the new front panel before you set it's property to "running". Setting a timer value for all can help ensure that the X-Axis of your timing values (if you require) are synchronised. The clue here is to define and initiate a QUEUE per channel. (RS-232_1, RS-232_2 and so on). The QUEUE name needs to be passed to the VI Template before running so that each VI running in the background has an individual link to the main program.
    The second part of this VI simply uses an array of QUEUES, polling them one after another with a timeout of, say 5 ms. If data is found, append accordingly to an XY-Graph.
    I also add in some "Auto termination" in the VI template (MAx number of values allowed in the QUEUE for example) to allow for the background processes to find out if the front-VI is still running or not. There are many different ways to do this, shoose the best for your application.
    With this approach, it's not even important what instrument is connected as long as data is written in a specified format into a known QUEUE. I have also developed systems where I can transparently (almost) drop in VI Templates for instruments with similar functionality (output data) from different suppliers.
    I would post an example, but the time it would take me to clean it up is too large. Sorry. If you have any further questions, don't hesitate to ask further questions.
    Shane.
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • Why does the content spill over and how do I position this under the menu and title?

    I was following this tutorial on how to add a scrolling image gallery to a Flash website.
    (http://www.republicofcode.com/tutorials/flash/xmlimagegallery/index.php)
    From what I understand from this tutorial, it is just a matter of copying the Actionscript code and pasting it onto the timelines then making modifications on the XML.
    (kindly see a screenshot of timeline layers I made and as to where I put the Actionscript code:
    http://i429.photobucket.com/albums/qq19/tsujzpie/imagegalleryproblem_01.jpg )
    I pasted the code onto the blank keyframe labeled "Gallery"...
    But all I get is this weird effect when I click on the button for the gallery...
    (kindly see a screenshot of it here: http://i429.photobucket.com/albums/qq19/tsujzpie/imagegalleryproblem_02.jpg )
    When you put a blank keyframe on a timeline, any content put in there is supposed to only be contained in that very frame, right? How come then that - whenever the gallery button is clicked on - the content from that section spills out onto the other sections even when I click on other button for the other areas?
    I just really couldn't think why this is happening - any reason why this is so?
    And how do I position the gallery right under the section header and menu bar?
    Here is its AS2 code, by the way:
              import mx.transitions.Tween;
              import mx.transitions.easing.*;
              var myGalleryXML = new XML();
              myGalleryXML.ignoreWhite = true;
              myGalleryXML.load("gallery.xml");
              myGalleryXML.onLoad = function() {
                        _root.gallery_x = myGalleryXML.firstChild.attributes.gallery_x;
                        _root.gallery_y = myGalleryXML.firstChild.attributes.gallery_y;
                        _root.gallery_width = myGalleryXML.firstChild.attributes.gallery_width;
                        _root.gallery_height = myGalleryXML.firstChild.attributes.gallery_height;
                        _root.myImages = myGalleryXML.firstChild.childNodes;
                        _root.myImagesTotal = myImages.length;
                        _root.thumb_height = myGalleryXML.firstChild.attributes.thumb_height;
                        _root.thumb_width = myGalleryXML.firstChild.attributes.thumb_width;
                        _root.full_x = myGalleryXML.firstChild.attributes.full_x;
                        _root.full_y = myGalleryXML.firstChild.attributes.full_y;
                        callThumbs();
                        createMask();
                        scrolling();
              function callThumbs() {
                        _root.createEmptyMovieClip("container_mc",_root.getNextHighestDepth());
                        container_mc._x = _root.gallery_x;
                        container_mc._y = _root.gallery_y;
                        var clipLoader = new MovieClipLoader();
                        var preloader = new Object();
                        clipLoader.addListener(preloader);
                        for (i=0; i<myImagesTotal; i++) {
                                  thumbURL = myImages[i].attributes.thumb_url;
                                  myThumb_mc = container_mc.createEmptyMovieClip(i,           container_mc.getNextHighestDepth());
                                  myThumb_mc._y = _root.thumb_height*i;
                                  clipLoader.loadClip("thumbs/"+thumbURL,myThumb_mc);
                                  preloader.onLoadStart = function(target) {
                                            target.createTextField("my_txt",target.getNextHighestDepth          (),0,0,100,20);
                                            target.my_txt.selectable = false;
                                  preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                                            target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
                                  preloader.onLoadComplete = function(target) {
                                            new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                                            target.my_txt.removeTextField();
                                            target.onRelease = function() {
                                                      callFullImage(this._name);
                                            target.onRollOver = function() {
                                                      this._alpha = 50;
                                            target.onRollOut = function() {
                                                      this._alpha = 100;
              function callFullImage(myNumber) {
                        myURL = myImages[myNumber].attributes.full_url;
                        myTitle = myImages[myNumber].attributes.title;
                        _root.createEmptyMovieClip("fullImage_mc",_root.getNextHighestDepth());
                        fullImage_mc._x = _root.full_x;
                        fullImage_mc._y = _root.full_y;
                        var fullClipLoader = new MovieClipLoader();
                        var fullPreloader = new Object();
                        fullClipLoader.addListener(fullPreloader);
                        fullPreloader.onLoadStart = function(target) {
                                  target.createTextField("my_txt",fullImage_mc.getNextHighestDepth          (),0,0,200,20);
                                  target.my_txt.selectable = false;
                        fullPreloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                                  target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
                        fullPreloader.onLoadComplete = function(target) {
                                  new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                                  target.my_txt.text = myTitle;
                        fullClipLoader.loadClip("full_images/"+myURL,fullImage_mc);
              function createMask() {
                        _root.createEmptyMovieClip("mask_mc",_root.getNextHighestDepth());
                        mask_mc._x = _root.gallery_x;
                        mask_mc._y = _root.gallery_y;
                        mask_mc.beginFill(0x000000,100);
                        mask_mc.lineTo(_root.gallery_width,0);
                        mask_mc.lineTo(_root.gallery_width,_root.gallery_height);
                        mask_mc.lineTo(0,_root.gallery_height);
                        mask_mc.lineTo(0,0);
                        container_mc.setMask(mask_mc);
              function scrolling() {
                        _root.onEnterFrame = function() {
                                  container_mc._y += Math.cos(((mask_mc._ymouse)/mask_mc._height)          *Math.PI)*15;
                                  if (container_mc._y>mask_mc._y) {
                                            container_mc._y = mask_mc._y;
                                  if (container_mc._y<(mask_mc._y-(container_mc._height-mask_mc.          _height))) {
                                            container_mc._y = mask_mc._y-(container_mc._height-          mask_mc._height);

    You should create a manually movieclip symbol with nothing in it and take a copy of it from the library and place it in the frame where you intend for the gallery to display.  Give it an instance name of "container_mc" and remove the following line from your callThumbs function
    _root.createEmptyMovieClip("container_mc",_root.getNextHigh estDepth());
    You probably need to do the same for the mask and the full images since they appear to also be created using dynamic mc's.

  • After I add a watermark to my pdf, most of the content gets deleted. How do I prevent this?

    When I tried adding watermarks for other pdfs it worked fine. Just for this particular pdf, it doesn't work properly.

    I tried adding watermarks to other pdfs and they worked fine but for this particular pdf, the watermarks erase all the content affer I add them.

  • When i click the star icon on the toolbar it does not add the site to my bookmarks,how can i solve this problem

    i dont seem able to add a web site to my bookmarks,i click the star
    icon+the site is not added to my bookmarks how do i do this?

    If you revisit a site that you tried to bookmark, is the star yellow?
    If the star is yellow, the site has been bookmarked. Clicking on the star once saves the bookmark in the "Unsorted bookmarks" folder which is not visible in the bookmarks menu, clicking on the star a second time allows you to edit the bookmark so you can move it to the folder of your choice. See the [[bookmarks]] article for further details.
    If the site is not being bookmarked at all, see the [[bookmarks not saved]] article for details of how to resole this issue.

  • Since I installed IOS7 in my iPad, doesn´t work and in the screen appears the apple logo only. How can I solve this problem? Please, help!!

    Since I updated IOS 7 in my iPad, it doesn´t work and appears the Apple logo in the screen all the time. Any solution?

    1)  Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/ht4097
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup
    http://support.apple.com/kb/ht1766
    NOTE:
    Make sure you have the Latest Version of iTunes Installed on your computer ( v 11.1)
    iTunes free download from www.itunes.com/download

  • HT4059 when I try and open epub books on my ipad it says the format is not recognised how do i solve this

    I have transferred my epub books into the itunes file and synced my ipad but when I click on them I get an rror message that says
    "It is formatted incorrectly, or is not a format that iBooks can open"
    Can anyone help me here?

    You may need to contact iTunes support for this: http://www.apple.com/support/itunes/contact/

  • Despite setting a Home Page Firefox always opens in the last page viewed. How do I solve this?

    I have followed the instructions for setting a Home Page. Firefox always opens in the last page I viewed. Clicking on the Home icon does take me to my Home Page once Firefox has opened.

    You can check if you have an user.js file in the Firefox profile folder that sets the browser.sessionstore.resume_session_once pref to true.
    *http://kb.mozillazine.org/browser.sessionstore.resume_session_once
    Your System Details List shows that you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    you can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    *http://kb.mozillazine.org/Preferences_not_saved

  • When syncing any device, the device screen appears, but there is no text.  How can I fix this?

    When I connect my phone, iTunes shows the device.  When you go to the device screen where you would see the serial number and the check boxes of what you're syncing, there is no text.  The Sync and Apply buttons are there but no wording.  The check boxes are there, but no wording next to it.  So you don't know what you're syncing.  I've tried uninstalling and reinstalling iTunes, but it still doesn't work.  And it happens with all 5 devices that I sync. 

    That generally indicates trouble with the Segoe UI fonts on your system, shannon.
    Unfortunately, it's a bit trickier to deal with on Windows 7 than other Windows operating systems. (The instructions by Vortical that usually fix it on Vista and XP can't be applied on a Windows 7 system.)
    Try having a look through the following (unfortunately rather long) topic for discussions of possible causes of the issue on Windows 7 systems, and possible treatments for the various font-related issues on Windows 7:
    iTunes 10.1 Missing Text

Maybe you are looking for

  • EFI Update Question

    Hey all. I just have a question about the EFI update that i have been promted to install via the update function on my new MBP 2011. But then when i read witch models that are affected, then my model is not amoung the affected models, so why do i nee

  • Mac OS X Lion and Lightroom 3 import issue

    Hi, I upgraded to Lion and migrated my applications and data through the migration assistant. Now I have a problem with importing. I use to import by converting to dng from cr2 (Canon EOS 350D), using a card reader. Nothing changed in my setup from S

  • Is it possible to modify the tag structure tree and the role map via scripting?

    We use unstructured FrameMaker to produce training materials which we distribute as tagged PDF to meet accessibility requirements. When FrameMaker creates a tagged PDF, it does a fairly good job of populating the structure based on the PDF setup info

  • How to change the value in a matrix...

    Hi, I want to update the price field in the Sales Order matrix. This I want to do as soon as the user selects the Item from the choose window. I trapped the ItemEvent of the SAPSBOUIApplication. But after getting the control of the matrix I am unable

  • Reset NOT Working

    For the past month my Time Machine hasn't been able to keep its network up for more than about 5 minutes. Sometimes when I do a hard reset (take out the power and ethernet internet feed cables then re-plug them after a couple minutes) it will come ba