Quicktime window within an iframe in IE7 doesn't always go away

I have a quicktime player running in a webpage which is inside an iframe. When a new page is targeted on that iframe, the quicktime player remains there even though the new page loads and displays in the background. This doesn't always happen but say 90% of the time and only on IE (not FF or safari). The qt controls are still functional. It goes away when that new page (or some other page) is re-targeted to the iframe.
The player is called from a javascript function and uses embed tag (not object).
Please help!

To update, my connection is SBC (not Comcast) and the error message that sometimes pops up is "No PPPoE server has been found for the specified service. Please delete the service name option and try again." I followed those instructions and deleted the service name option, but the error message still pops up when I the internet doesn't connect.
Any help please! Thanks.

Similar Messages

  • QuickTime on Windows Mac PICT File Text display doesn't work

    There is a problem in QuickTime for Windows, which was there with version 6, and still exists in version 7. I have a Macintosh format PICT file, generated in Illustrator, that contains text and graphics. The text is in Arial font of a particular size. Viewing this PICT file on Windows within the QuickTime Player AND the QuickTime PictViewer, the font is scaled far larger than it is in the Mac version, to the point of going way outside a rectangle drawn around the text.
    When this same PICT file is imported into Excel or Word on Windows, the text aligns and displays correctly, and at the correct size.
    I am a software developer, and I have run PICTS through Quicktime programmatically, and there seems to be a real problem with text handling.
    Anyone else seen this? Any ideas?

    Let me also clarify this by saying that the font I am using exists both on Windows and Mac platforms.

  • Javascript within an iframe is not rendering

    We have an iframe on a page within our Portal that does not render completely. We are attempting to render SocialText.net within an iframe and it seems that Firefox is blocking the javascript that is attempting to run on the page. The page loads successfully in Safari, Chrome and even IE, but Firefox appears to dislike something about the page.
    When I open the error console and look at the error I see one: Error: Permission denied to access property 'st'
    Source File: https://map-socialtext.net/js/5.0.5.13/socialtext-starfish.jgz
    Line: 23
    I've ensured that the domain is correct for the iframe: https://map.socialtext.net, so this should not be a xss issue.
    The page loads successfully for the most part, but the dashboard page of SocialText attempts to run several widgets, that are run with javascript. As I said, other browsers are loading this page successfully without issue. It is only Firefox that is exhibiting this behavior. I've cleared the cache, cleared all cookies, cleared offline storage, tried private browsing and nothing appears to resolve the issue. I've also restarted Firefox in Safe-mode, to disable all plugins and still no help.
    Any help would greatly be appreciated.

    ''If I click on the error I get a window that opens displaying the javascript''
    It's hard to tell where the error is when they remove all the line breaks. If "Line 23" isn't highlighted when it opens, it's very had to know which statement is causing the error. Even then, it might be impossible to figure out without actually logging in to the system.
    ''their stance is something along the lines of: It works in other browsers and it works in Firefox without an iframe''
    If SocialText doesn't support use in an frame, I agree it will be hard to get them to solve the problem. Perhaps another customer has a workaround? You could try the SocialDev list or the general mailing list [http://lists.socialtext.net/listinfo/socialtext-user socialtext-user].

  • Lightbox within an iFrame?

    I'm organizing a gallery menu within a iFrame with the use of the typical Lightbox widget. The Lightbox works but its pop-up is confided within the tiny iFrame.
    Can I somehow force the Lightbox popup to load over the entire page? Apparently it is possible and I have the options of using a different Lightbox copy such as Colorbox, absolute linking the Lightbox, or somehow manipulating the parent window. Unfortunately no one seems to have actually laid out any of these procedures online in detail, so I'm still having trouble figuring this out.

    dianekim34 wrote:
    To be honest, I'm such a novice at dreamweaver that with just the demo files and no instructions, I'm not sure how use implement the process myself.
    I'm not sure what it is you are trying to do.
    Move the htmlframepage.html plus the css and scripts folder that are in the demo folder to your site folder.
    I would think all you would need to do is place your code into the iframepage.html page  and change the link to the page in your site folder that you want to open. As long as the link has the class="colorbox" your page should open in the iframe.
    <a href="http://bbc.co.uk" class="colorbox">This link</a>

  • Intrapage anchor tags not working within an iFrame

    Intrapage anchor tags are no longer within an iFrame in Firefox 4.0. It works on all the other major browsers. Is there a workaround for this bug?

    See:
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=638598 Bug 638598] - Iframe parent window page does not scroll to # anchor by user interaction
    ''(please do not comment in bug reports; you can vote instead)''

  • Switch windows within program in text edit in yosemite

    When I started using Mac (back with 10.4 or someting) you could switch windows within programs using cmd+< or cmd+shift+< (cmd+>). This worked for every program, and I see it as an essential core to how OSX handles it's programs windows. And it's a really feature, IMO.
    However, some versions back (I don't remember if it was 10.7, 10.8 or 10.9) someone changed this in Mail. When writing an email, the shortcut cmd+< changes the indent level. cmd+shift+< still changes the window. This is VERY frustrating. When I noticed this, I thought "alright, whoever came up with this idea should get fired!" Well guess what? He or she wasn't. This person still works at Apple and has now got his or her hands on Text Edit. In Text Edit in Yosemite, these shortcuts zooms in and out! And there is no longer any shortcut to change the windows within Text Edit. I'll say it again: Please fire this person before he or she destroys more! And make sure to change back so that cmd+< works for all programs.

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback

  • Creating another class window within one class

    Ok I have a main window class, at some point if you click some button I want it to make the first window invisible and have this other, second class, appear, and further on, for both to talk to eachother. These are applets, and I have tried having one applet launch using applet.init() and hoping it would launch but it doesn't work that easy.

    so it has to create a new window within the first class? I cannot use two classes? here:
       import java.awt.*;
       import java.awt.event.*;
       import javax.swing.*;
       import javax.swing.JOptionPane;
        public class Darkness extends JApplet implements ItemListener, ActionListener
              private int intBold = Font.BOLD;
              private int intItalic = Font.PLAIN;
          private Color currentColor = Color.blue;
              private Color dateColor = Color.red;
              private Color regColor = Color.black;
              private JComboBox Years;
          private JRadioButton Sword, Bow, Flame, Ice;
          private JButton Walk[] = new JButton[6];
          private int x, y;
            private ButtonGroup Months;
              private int MO;
          private String[] buttonnames = {"Walk", "Town"};
              private String[] section = {"Forest","Mountains"};
              private String SECTION;
    public void init()
                   SECTION = section[0];
                   Image image = getImage(getCodeBase(), "Background.jpg");
                   Container content = new Work(new ImageIcon(image).getImage());
                   setContentPane(content);
                   Years = new JComboBox(section);
                   Years.setMaximumRowCount(3);
                   Years.setSize(80,30);
                   Years.setLocation(260,450);
             Container c = getContentPane();
             c.setLayout(null);
                   c.add(Years);
             Sword = new JRadioButton("Sword");
             Bow = new JRadioButton("Bow");
             Flame = new JRadioButton("Flame");
             Ice = new JRadioButton("Ice");
             Sword.setLocation(50, 400);
             Bow.setLocation(175, 400);
             Flame.setLocation(300, 400);
             Ice.setLocation(425, 400);
                   Sword.setBackground(currentColor);
                   Bow.setBackground(currentColor);
                   Flame.setBackground(currentColor);
                   Ice.setBackground(currentColor);
             Sword.setSize(100,30);
             Flame.setSize(100,30);
             Ice.setSize(100,30);
             Bow.setSize(100,30);
             Sword.addItemListener(this);
             Flame.addItemListener(this);
             Ice.addItemListener(this);
             Bow.addItemListener(this);
             c.add(Sword);
             c.add(Ice);
             c.add(Flame);
             c.add(Bow);
             Months = new ButtonGroup();
             Months.add(Sword);
             Months.add(Ice);
             Months.add(Flame);
             Months.add(Bow);
    int b = 200; //for button placement
         for(int i = 0; i < 2; i++)
                        Walk[i] = new JButton(buttonnames);
                        Walk[i].setSize(80, 40);          
                        Walk[i].addActionListener(this);
                        Walk[i].setVisible(true);
                        Walk[i].setLocation(b, 500);
                        c.add(Walk[i]);
                        b = b + 100;
    public void itemStateChanged(ItemEvent e)
    Container d = getContentPane();
    d.setLayout(null);
    int y = 200;
              if(e.getSource() == Years)
         SECTION = section[Years.getSelectedIndex()];
         repaint();
    }//end
    public void paint(Graphics g)
    super.paint(g);
    g.setColor(Color.red);
    g.drawRoundRect(0,0,600,600,10,10);
    g.setColor(Color.red);
                   g.setFont(new Font("Courier", intBold + intItalic, 30));
    g.drawString("Darkness",250,50);
    g.setFont(new Font("Courier", intBold + intItalic, 12));
    g.drawString("Monster", 150,175);
    g.drawString("Monster Health", 250,175);
                   g.drawString("Pick an area", 260,445);
    public void actionPerformed(ActionEvent e)
    int Randomizer;
    java.util.Random r = new java.util.Random();
    Randomizer = r.nextInt(10)+1;
         if(e.getSource() == Walk[0] & SECTION == "Forest")
              JOptionPane.showMessageDialog(null, "" + Randomizer, "Damage!", JOptionPane.INFORMATION_MESSAGE);     
         if(e.getSource() == Walk[1])
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
    //**********************HERE IS WHERE I WANT TO CALL THE OTHER APPLET*************
              JOptionPane.showMessageDialog(null, "Returning to Town", "Info", JOptionPane.INFORMATION_MESSAGE);
    //THE FIRST CLASS SHOULD CALL THIS CLASS::::Completely different file not same .java
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    //********************************************************************************8
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JOptionPane;
    public class Town extends JApplet implements ActionListener
                   private int intBold = Font.BOLD;
              private int intItalic = Font.PLAIN;
    private JButton Buy[] = new JButton[6];
    private String[] ButtonNames = {"Walk", "Town"};
    public void init()
              Image image = getImage(getCodeBase(), "Town.jpg");
              Container content = new Work(new ImageIcon(image).getImage());
              setContentPane(content);
    Container c = getContentPane();
    c.setLayout(null);
    Buy[0] = new JButton(ButtonNames[0]);
    Buy[0].setSize(80, 40);          
                        Buy[0].addActionListener(this);
                        Buy[0].setLocation(400, 300);
                        c.add(Buy[0]);
         public void paint(Graphics g)
    super.paint(g);
    g.setColor(Color.yellow);
    g.drawRoundRect(0,0,600,600,10,10);
    g.setColor(Color.red);
    g.setFont(new Font("Courier", intBold + intItalic, 30));
    g.drawString("Town",110,150);
    g.setFont(new Font("Courier", intBold + intItalic, 12));
    g.drawString("Sunday", 25,175);
    g.drawString("Monday", 100,175);
    g.drawString("Tuesday", 175,175);
    g.drawString("Wednesday", 250,175);
    g.drawString("Thursday", 325,175);
    g.drawString("Friday", 400,175);
    g.drawString("Saturday", 475,175);
                   g.drawString("", 260,445);
    public void actionPerformed(ActionEvent e)
    if(e.getSource() == Buy[0])
    JOptionPane.showMessageDialog(null, "" , "Info", JOptionPane.INFORMATION_MESSAGE);     
              public static int Money()
    int t = 3;
    return t;

  • My MacBook Pro spits out a CD within 30 seconds.  It doesn't show up anywhere.  Help please.

    My MacBook Pro spits out a CD within 30 seconds.  It doesn't show up anywhere.  Help please.

    You can try a commercial lens cleaner.  They are sold everywhere for little expense.
    http://www.walmart.com/ip/Memorex-32020022912/15120287

  • How to get rid of title bar of a quicktime window?

    The main problem:
    I want to display the title info etc about each track as they play in iTunes. How can I do that on an otherwise black screen (desktop) (I don't want to use the visualizer with its psychedelic patterns).
    Background:
    I want to play music from iTunes (many pieces in a row - for like a full day). While this is happening I want the title etc of the tune to be displayed on the screen, like white smallish text against a black background in the lower right hand corner. At the same time I want slides to be displayed on the screen.
    So, with iPhoto I can run a slide show but only while one piece of music is playing.
    Instead I can have the desktop slowly change (from system preferences) with images from a folder every 5 seconds. That's not too bad. Looks good, actually, except for that annoying menu bar at the top! Well, black tape can hide that one (or a second display and move it over there). Now iTunes can play away all day.
    As to how to get the title etc of the song playing displayed I was thinking about somehow extracting it from iTunes with applescript, then paste it into the text track of a quicktime movie, and display that little movie in a small window. I have figured out how to get rid of the controller from the window. But, I can not figure out how to get the title bar of the quicktime window to go away - that is I want a window with nothing around it, neither controllers nor title bar nor anything. How do I create such a window. Any good ideas out there?
    Or is there a totally different way of obtaining the same effect?
    Thanks.
    G4   Mac OS X (10.4.8)  

    Hi,
    You could try posting at the QuickTime discussion area. There might be an iTunes visualizer that allows you to make a slideshow with track info. It has been a while since I tried making a SMIL file, but I think you could do what you want with that. Not sure how you create a streaming text of track information. I would have to do some reviewing.
    gl,

  • I recently installed WIndows 8 and now my scanner doesn't work. I have an HP M175nw printer/scanner

    I recently installed Windows 8 and now my scanner doesn't work. I have an HP M175nw printer/scanner

    update your scanner's driver.  ie, see if hp has a win 8 driver for that model.

  • Hi everyone i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!?

    i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!? any ideas?

    iv solved it now

  • Web page within a IFrame

    Hi all,
    I want to open a web page within a IFrame of Web Dynpro.
    How can I do it? Could any body give me the code and suggestion?
    Thanks & Regards
    sudip

    Hi Sudip,
    There is UI element called IFrame (see http://help.sap.com/saphelp_nw04/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm).
    Best regards, Maksim Rashchynski.

  • Cannot view quicktime window normal size and still see controls!

    Help!
    I cannot view quicktime window normal size and still see control butttons (pause, play etc.)
    I search this forum and found another previous similar question, but the answer. (To use control+0, which would make it half-size.), is not what I need.
    What I need is to have a nice fuller size view, (not the narrow little half-size), but any way i find of doing that hides the controls below the bottom of my screen!
    I cannot resize it from any side, except the bottom r. corner, which is hidden with these desireable fuller options.

    Update: this was my mistake - I had neglected to configure all the view containers in the WebDynproCO window, which was generated by adding the GP interface to the component.  All is well.

  • Open mpegs in a new quicktime windows instead of browser

    I want to click on a video link on a web page, and have the video open in a new quicktime window and start playing right away. I have Flip4mac that does exctly this with wmv files, and i want the same for mpegs, mp4s ect. anyone know how? thanks

    The author of the Web page gets to decide how the
    file is displayed and they could use
    target="quicktimeplayer" in their code to open the
    file in QuickTime Player.
    http://homepage.mac.com/kkirkster/03war/
    One of my pages that "calls" QuickTime Player and
    this also allows some of the "Presentation"
    properties of the file to be used.
    http://www.vanwilligen.nl/mac/applescripts.html
    AppleScript is another way to view QT files outside
    the confines of a browser window.
    Thanks for your reply.
    I tried using the quicktime applescript you recommended, but with it you have to click the video first, wait for it to start loading, then activate the script. A quicktime window opens, and starts loading all over again. I love Flip4mac cause it opens large video windows as soon as you click the vid link. Any suggestions??

  • Multiple forms in multiple windows within application

    hi,
    our user wants to be able to open more than one form in multiple windows within the application and have them within the application window at the same time. we are planning to use open_form instead of call_form to do this. however open_form does not let me specify the query mode, so i guess will have to do that manually? what does Oracle recommend as a best practice for applications - to support mutliple windows or not? if yes, as call_form or open_form?
    thanks.

    Yes using open form you will have to manually (in code) switch into Query Mode.
    We recommend Open Form over call form as it is more memory efficient, of course there are situations when the behaviour of Call Form is useful but generally I'd encorage the use of open.

Maybe you are looking for