Popup + Singleton = don't work

I have the following situation:
1) Popup opened by a main application;
2) Popup work with singleton: one singleton for a toolbar, other for the data;
3) Popup can be close any time;
The problem: when open by the first time, the popup works with no problem, however when opened by the second time, all references seem to point to the preview popup (already closed)... How can I destroy effectively a popup when it is closed? Is dificult to work with singleton + popup or I am doing something wrong?
Thanks.

If I may not destroy a popup, why there is the PopUpManager.removePopUp method ??
The method PopUpManager.removePopUp exists just to close, remove ("destroy") the popup...
How can I solves this problem reported above? I dont want to hide... I want to close it and open again other undefined time.

Similar Messages

  • Popup New and Edit don't works

    i have a popup window s with adf that edit new record and edit record but when i catch the cancel event with PopupCanceledEvent but the delete don't work please help me

    Hi,
    I have no idea what your question is. "i catch the cancel event with PopupCanceledEvent but the delete don't work". Please take mor etime to formulate a question
    Frank

  • JPopupMenu with JInternalFrame, popup menu doesn't work

    hi, i have this problem, as shown in the sample code at the end of this post.. basically, i have a table, and i added a JPopupMenu onto the table.. the popup menu works well when running the table class, though, when i call the table class in a JInternalFrame environment, the popup menu won't work.. anyone know why?
    ///Basic sample table code, when run this alone, the popup menu will work
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TableBasic extends JPanel
         private JTable table;
         public TableBasic()
              String[] columnNames = { "Date", "String", "Integer", "Boolean" };
              Object[][] data =
                   {  { new Date(), "A", new Integer(1), Boolean.TRUE },
                        { new Date(), "B", new Integer(2), Boolean.FALSE },
                        { new Date(), "C", new Integer(9), Boolean.TRUE },
                        { new Date(), "D", new Integer(4), Boolean.FALSE}
              table = new JTable(data, columnNames)
                   //Returning the Class of each column will allow different
                   //renderers to be used based on Class
                   public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane(table);
              add(scrollPane);
         public void createPopupMenu()
              JMenuItem menuItem;
              //Create the popup menu.
              JPopupMenu popup = new JPopupMenu();
              menuItem = new JMenuItem("A popup menu item");
              //menuItem.addActionListener(this);
              popup.add(menuItem);
              menuItem = new JMenuItem("Another popup menu item");
              //menuItem.addActionListener(this);
              popup.add(menuItem);
              //Add listener to the text area so the popup menu can come up.
              MouseListener popupListener = new PopupListener(popup);
              table.addMouseListener(popupListener);
         public static void main(String[] args)
              JFrame frame = new JFrame();
              TableBasic table = new TableBasic();
              table.createPopupMenu();
              frame.setContentPane(table);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              //frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         class PopupListener extends MouseAdapter
              JPopupMenu popup;
              PopupListener(JPopupMenu popupMenu)
                   popup = popupMenu;
              public void mousePressed(MouseEvent e)
                   maybeShowPopup(e);
              public void mouseReleased(MouseEvent e)
                   maybeShowPopup(e);
              private void maybeShowPopup(MouseEvent e)
                   if (e.isPopupTrigger())
                        popup.show(e.getComponent(), e.getX(), e.getY());
    ///when integrate the previous table into here, popup menu won't work
    import java.awt.*;
    import javax.swing.*;
    public class InternalFrameBasic
         extends JFrame
         //implements ActionListener
         private JDesktopPane desktop;
         private JInternalFrame menuWindow;
         public static final int desktopWidth = 800;
         public static final int desktopHeight = 700;
         public InternalFrameBasic(String title)
              super(title);
              //Set up the GUI.
              desktop = new JDesktopPane();
              desktop.putClientProperty("JDesktopPane.dragMode", "outline");
              //Because we use pack, it's not enough to call setSize.
              //We must set the desktop's preferred size.
              desktop.setPreferredSize(new Dimension(desktopWidth, desktopHeight));
              setContentPane(desktop);
              createMenuWindow();
              desktop.add(menuWindow); //DON'T FORGET THIS!!!
              Dimension displaySize = menuWindow.getSize();
              menuWindow.setSize(desktopWidth, displaySize.height);
         private void createMenuWindow()
              menuWindow =
                             new JInternalFrame("Event Watcher", true, //resizable
                                                                                                   true, //closable
                                                                                                   false, //not maximizable
                                                                                                   true); //iconifiable
              menuWindow.setContentPane(new TableBasic());
              menuWindow.pack();
              menuWindow.setVisible(true);
          * Create the GUI and show it.  For thread safety,
          * this method should be invoked from the
          * event-dispatching thread.
         private static void createAndShowGUI()
              //Make sure we have nice window decorations.
              //JFrame.setDefaultLookAndFeelDecorated(true);
              //Create and set up the window.
              JFrame frame = new InternalFrameBasic("Example Internal Frame");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              //Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args)
              //Schedule a job for the event-dispatching thread:
              //creating and showing this application's GUI.
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        createAndShowGUI();
    }

    table.createPopupMenu();The above line should not be in the main method. It should be in the constructor class of TableBasic.
    You never execute that method in your InternalFrameBasic class to the mouse listener never gets added to the table.

  • Ref cursors don't work in declared procedures?

    It appears that ref cursors in declared procedures don't work.
    For example, the following code runs with no errors, but returns nothing from the ref cursor -
    s = s & "DECLARE" & vbLf
    s = s & " TYPE OutCurType IS REF CURSOR;" & vbLf
    s = s & "PROCEDURE xxxProc(p5 in out OutCurType )" & vbLf
    s = s & " AS" & vbLf
    s = s & "BEGIN" & vbLf
    s = s & " OPEN p5 FOR SELECT * FROM table;" & vbLf
    s = s & "END xxxProc;" & vbLf
    s = s & "BEGIN" & vbLf
    s = s & " xxxProc( :p5 );" & vbLf
    s = s & "END;" & vbLf
    oCmd.CommandText = s
    oCmd.CommandType = CommandType.Text
    oParam6.ParameterName = "p5"
    oParam6.OracleDbType = Oracle.DataAccess.Client.OracleDbType.RefCursor
    oParam6.Direction = ParameterDirection.Output
    oParam6.Value = DBNull.Value
    oCmd.Parameters.Add(oParam6)
    oCmd.ExecuteNonQuery()
    oDR = CType(oCmd.Parameters("p5").Value, Oracle.DataAccess.Types.OracleRefCursor).GetDataReader
    While oDR.Read
    Stop
    End While
    However, a previously created procedure executes fine, in the above code -
    s = "BEGIN" & vbLf
    s = s & " xxxPkg.xxxProc( :p5 );" & vbLf
    s = s & "END;" & vbLf
    Is there a way to get ref cursors to work in declared procedures? Thanks...

    Fixed the grid cell display and popup editor for Ref Cursors.
    -Raghu

  • Code hint don't working

    Friends, please shed some light. I don't understand. Can I use code hint feature on symbols , that I simply drag on stage from the library and instantiate via property panel (not from 'new 'operator). As you guess, when I hit F9 (i.e. invoke Actions window) and write name of the object then put period ('.') code hint window don't popup. There are many topics in this forum dedicated this issue, but all don't work. 
    I have Adobe Flash CC professional and OS - Windows 8.

    kglad wrote:
      var mc:MovieClip;  // where mc is the instance you named in the properties panel.
    Thanks a lot. This right . But , why code hint window don't popup automatically. Edit -> Preferences -> Code editor
    -> Code Hints............. property  is checked. Code hint work only when ctrl + space  is hited.
    P.S.
    I had try this suggestion. Unsuccessfully.
    Hi ,
    After ensuring that the "Code Hints" checkbox in the Actionscript section of the Flash Preferences dialog is turned on , please try resetting your code-hint cache as follows:
    1. Quit Flash
    2. Delete your code-hint cache folder
    Win XP:
    C:\Documents and Settings\<user>\Local Settings\Application Data\Adobe\Flash CS6\<language>\Configuration\CodeModel
    Win Vista/Win7:
    C:\Users\<user>\AppData\Local\Adobe\Flash CS6\<language>\Configuration\CodeModel
    Mac:
    /Users/<user>/Library/Application Support/Adobe/Flash CS6/<language>/Configuration/CodeModel
    3. Re-start Flash and try again.
    Let me know if this helps.
    Thanks and regards,
    Sudeshna Sarkar
    Adobe Flash Professional Team.

  • Popup.hide doesn't work

    Hi,
    i want to run a long-running procedure, showing popup while it's working.
    in my managed bean i invoke code which is called from command button
    private RichPopup p1
    public String cb1_action() {
    RichPopup.PopupHints ph = new RichPopup.PopupHints();
    ph.add(RichPopup.PopupHints.HintTypes.HINT_ALIGN, RichPopup.PopupHints.AlignTypes.ALIGN_AFTER_END);
    p2.show(ph);
    Object result = operationBinding.execute();
    p1.hide();
    So , wierdly, upon button pressed , i see table populating, then popup appears, and that's it, it never closes.
    what's wrong?
    Regards,
    AB

    first of all, the referenced page code is below: (maybe is missed something...)
    upon login, this page is stuck somewhere in the middle, is the status bar there is a message "Done, but with errors"
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document title="title" id="d1">
    <af:messages id="m1"/>
    <af:resource type="javascript">
    function enforcePreventUserInput(evt) {
    var popup = AdfPage.PAGE.findComponentByAbsoluteId('p1');
    if (popup != null) {
    AdfPage.PAGE.addBusyStateListener(popup, handleBusyState);
    evt.preventUserInput();
    function handleBusyState(evt) {
    var popup = AdfPage.PAGE.findComponentByAbsoluteId('p1');
    if (popup != null) {
    if (evt.isBusy()) {
    popup.show();
    else if(popup.isPopupVisible()) {
    popup.hide();
    AdfPage.PAGE.removeBusyStateListener(popup, handleBusyState);
    </af:resource>
    <af:form id="f1" styleClass="OraNav3Selected">
    <af:popup id="p1" binding="#{Report.p1}" contentDelivery="immediate" partialTriggers="t1">
    <af:dialog id="d2" type="none" title="Working ..." closeIconVisible="false">
    <af:panelGroupLayout id="pgl1" layout="vertical" halign="center">
    <af:image source="/images/oralogo_small.gif" id="i1"/>
    <af:image source="/images/animbar.gif" id="i2"/>
    <af:outputText value="... please wait" id="ot11"/>
    </af:panelGroupLayout>
    </af:dialog>
    </af:popup>
    <af:popup binding="#{Report.p2}" contentDelivery="immediate" id="p2">
    <af:outputText value="... please wait" id="ot12"/>
    </af:popup>
    <af:panelGroupLayout layout="scroll" styleClass="AFStretchWidth" id="pgl111">
    <af:panelGroupLayout id="pgl4" layout="horizontal" styleClass="AFStretchWidth">
    <af:image source="logo.png" partialTriggers="banklist" id="i3"/>
    <af:outputFormatted value="Отчет по заявкам" id="of1" inlineStyle="font-size:large;"/>
    </af:panelGroupLayout>
    <af:panelGroupLayout id="pgl3" layout="horizontal" inlineStyle="width:635px;" landmark="banner">
    <af:inputDate value="#{bindings.d1.inputValue}" label="date1"
    required="#{bindings.d1.hints.mandatory}" columns="12"
    shortDesc="#{bindings.d1.hints.tooltip}" id="id1">
    <f:validator binding="#{bindings.d1.validator}"/>
    <af:convertDateTime pattern="#{bindings.d1.format}"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.d2.inputValue}" label="date2"
    required="#{bindings.d2.hints.mandatory}" columns="12"
    shortDesc="#{bindings.d2.hints.tooltip}" id="id2">
    <f:validator binding="#{bindings.d2.validator}"/>
    <af:convertDateTime pattern="#{bindings.d2.format}"/>
    </af:inputDate>
    </af:panelGroupLayout>
    <af:panelBorderLayout id="pbl1" inlineStyle="width:2000px; height:50px;">
    <f:facet name="start">
    <af:group id="g1">
    <af:panelGroupLayout layout="horizontal" id="pgl2">
    <!--af:commandButton text="Run" id="cb1" icon="/execute-2s.png"
    disabled="#{!bindings.executeVO.enabled}"
    actionListener="#{bindings.executeVO.execute}"
    partialTriggers="t1">
    <af:clientListener method="enforcePrevenUserInput" type="click"/>
    </af:commandButton-->
    <af:commandButton text="Export to Excel" id="cb2" icon="/excel-11s.PNG" blocking="true"
    binding="#{Report.cbExcel}" action="#{Report.cbExcel_action}">
    <af:exportCollectionActionListener type="excelHTML" exportedId="t1" filename="export.xls"/>
    </af:commandButton>
    </af:panelGroupLayout>
    <f:verbatim>
    </f:verbatim>
    </af:group>
    </f:facet>
    <f:facet name="bottom">
    <af:statusIndicator id="si23" shortDesc="Busy" binding="#{Report.statusInd3}"
    inlineStyle='background-image:url("/running.PNG");'/>
    </f:facet>
    <f:facet name="end"/>
    <af:commandButton text="Logout" icon="/logout-1s.PNG" id="cb4" action="#{Report.onLogoutButtonPressed}"
    blocking="true"/>
    </af:panelBorderLayout>
    <af:table value="#{bindings.scrOptyVO12.collectionModel}" var="row" rows="#{bindings.scrOptyVO12.rangeSize}"
    emptyText="#{bindings.scrOptyVO12.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.scrOptyVO12.rangeSize}" rowBandingInterval="0"
    filterModel="#{bindings.scrOptyVO11Query.queryDescriptor}"
    queryListener="#{bindings.scrOptyVO11Query.processQuery}" filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.scrOptyVO12.collectionModel.selectedRow}"
    selectionListener="#{bindings.scrOptyVO12.collectionModel.makeCurrent}" rowSelection="single"
    inlineStyle="height:715px;width:1255px" width="1255" columnStretching="multiple" id="t1">
    <af:column sortProperty="#{bindings.scrOptyVO12.hints.ProductName.name}" filterable="true" sortable="true"
    headerText="name" id="c15">
    <af:inputText value="#{row.bindings.ProductName.inputValue}"
    label="#{bindings.scrOptyVO12.hints.ProductName.label}"
    required="#{bindings.scrOptyVO12.hints.ProductName.mandatory}"
    columns="#{bindings.scrOptyVO12.hints.ProductName.displayWidth}"
    maximumLength="#{bindings.scrOptyVO12.hints.ProductName.precision}"
    shortDesc="#{bindings.scrOptyVO12.hints.ProductName.tooltip}" id="it1"/>
    </af:column>
    </af:table>
    </af:panelGroupLayout>
    </af:form>
    </af:document>
    </f:view>
    <!--oracle-jdev-comment:preferred-managed-bean-name:Report-->
    </jsp:root>

  • BEx Analyzer buttons withing planning don't work

    Hello,
    I tried to create a little planning application with BEx Analyzer. For this I tried different ways (my last try using: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0a89464-f697-2910-2ba6-9877e3088954) but my problem is that the created buttons don't work.
    If I enter a value into the key figure field and press "refresh data" or "save data" in both cases the value is set back to 0 and my entered value doesn't appear anywhere.
    I checked the input-ready query by using the Query Designer. Both key figures can be changed by user entry or planning function. 
    Are there any other things I have to check or change?
    Thanks for your help!
    Bettina

    Hi D,
    but if it would be locked it wouldn't be possible to enter a value - would it? I can add a value into the field but afterwards when using the button it disappears and becomes 0 again.
    Here's a more detailed description:
    I created a input-ready query on a aggregation level which contains sales man number, calender year/month, customer number and planned turnover.
    I opened this query with the BEx Analyzer and executed the steps described in the PDF for which I added the link before in my first post in this thread. I implemented this HowTo until the popup messages.
    I did some planning tries before on the planning wizard in the portal . There it was possible to add values (my test data I also created with the planning wizard but without adding a turnover value) and to save them.
    There's no other planning function implemented yet. For the first step I just want to have the possibility to enter turnover values manually by using the workbook with the input-ready query. Nothing more.
    Bettina

  • "Enable Swipe" don't work and Tablet Layout on a Smartphone

    Hi there,
    I have two big problems with my own site www.mhgrafikdesign.de:
    1. I have different slideshows in my tablet version of my site. I created the slideshow before one of the updates with the feature "Enable swipe" came out. However, it worked well on my Samsung Galaxy Tab 10.1n. Now I have a Microsoft Surface and it's not working anymore although "Enable Swipe" is enabled. I don't know if the Microsoft Surface has problems with the slideshow or one of the updates has "damaged" my slideshow. Please help me! Any ideas?
    2. I have a HTC 8S smartphone and if I type www.mhgrafikdesign.de my smartphone always show me the tablet version. Any idea why? P.S. Swiping there is also not possible.
    Many thanks for quick help. My website is my flagship in the web and it's a little bit embarrassing if my slideshow on the tab don't work... = /

    This is now a slideshow created with Muse: Homepage
    The slideshow uses fullscreen mode and was build with the latest version of Muse. On my Win8-Tablet, it is not working. I tested this with the IE11 in desktop- and in modern-ui-mode.
    Next to this problem, I also run into these things:
    1. Using the buttons to go forward and backward in the slideshow will select the text-arrow inside the button when touched.
    2. Clicking the forward- and backward-button behaves different. Windows Desktop -> slideshow does not roll back, so you can click forever in one direction, no feedback that you reached the end. On iOS -> slideshow will be rolled back and you get the visual feedback to start over again.
    3. Zoom into the fullscreen-slideshow will result in strange and not really controllabel behaviour. Zooming in does not allow to pan.
    But I am not talking only about the phones. It is more about windows tablets in general. So, content can be viewed in the InternetExplorer11 in desktop-mode and also in modern-UI-mode (touch does work in both modes). But it is also possible, that people use other browsers like Firefox and Chrome. I think, it would be a quite a good idea to translate the movement of the mousepointer into gestures. This javascript library shows what I think is a good aproach: Hammer.JS - Hammer.js

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • IPod Touch: apps (facebook, twitter, facetime) don't work properly with my wireless internet having worked perfectly before. Help needed!

    I got my iPod Touch 4g for Christmas 2011 and for the first 2 weeks everything worked fine - I could download apps; use apps to their full potential; use FaceTime; use everything.
    But after the two weeks, the iPod decided to no longer work as well as it had promised. First of all, it would take more than 2 hours to download a single app from the app store and then, straight after that, I couldn't connect to FaceTime (it had worked perfectly before). Then, finally, to top it all off - Facebook and Twitter stopped working on occasions. For example, I couldn't post/send messages or photos on Twitter and at the majority of the time, the News Feeds wouldn't load.
    Sometimes everything works but most of the time it doesn't. I've tried my iPod at every time of the day and it makes no difference - nothing still works! Also, I don't think it is the fault of my wireless internet because I've had an iPod touch before and it worked perfectly, and the laptop that I am writing this question on also works perfectly with wifi.
    The weird thing is that I have used my iPod to its full potential (everything worked fine) at my friends hosue on multiple occasions - using his wifi. I am really lost for ideas for what to do - I have uninstalled all the apps that don't work with the internet (facebook, twitter) and have always made sure that I have closed apps after using them, so that my iPod wouldn't run slow.
    My iPod has been like this for over a month now, help would be appreciated

    Do you have a blackberry data plan active. On your account? You need an active blackberry data plan to use the majority of data functions on your phone, even if you are connected to wifi 

  • TV don't work with OSX Server software?

    Everything worked great BEFORE I updated our MacMini Intel to OSX Server software, now iTunes can't find the recent found Apple TV. And therefore the connection is gone and the syncing don't work anymore.
    Any work-around or suggestions on how to solve this?
    Or do I have to revert to previus userversion of OSX to make it work again?
    Is there a limitation built into OSX Server software or is there maybe some kind of firewall / preferences etc that needs to be adjusted? (The built in firewall has been disconnected.)
    FYI:
    All apps are up to date. The Mac Mini + Apple TV is on my local network at home and I'm trying to make it my family's digital hub for all family-related media.
    MacBook Pro CD2 & X-servers Mac OS X (10.4.9)
    MacBook Pro CD2 & X-servers   Mac OS X (10.4.9)  

    1) I've not tried to reset ATV from scratch. But it works fine on other Mac's on the network (sharing).
    2) Security options, yes I belive so to. I've followed all instructions and opened all ports I've seen mentioned i apples Knowledge database / support. Still don't work. Maybe I've missed some ports...
    3) YES! It works fine sharing the MacMinis lib over the network.
    4) Today I also tried to reinstall iTunes. But no luck.
    Any mor suggestions anyone? Thx
    I really wanny solve this, otherwhise my ATV is pretty useless for me...

  • Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Hi there
    I'll pass your details to our Russian team and they'll contact you to assist further.
    Kind regards
    Bev

  • Bookmarks exist but don't work in PDF (exported from InDesign)

    Hi all,
    I had a similar problem a few months ago where SOME cross-references within a document weren't taking you to the right place when exported to PDF although they appeared to work fine in InDesign (the "source" and "destination" arrows took you to the right place). Someone suggested exporting the file to IDML and importing again, which worked fine.
    Now I'm working on the same document (an update) but it's grown a bit and so each chapter is in its own file within a book. Problem is similar but not the same. Some cross-references work fine in the generated PDF, others are recognised as being links (cursor changes) but NO effect when clicking on them... not taking me to the wrong place, nothing is happening at all. ALSO the table of contents AND the bookmarks don't work.
    I've exported each chapter to IDML, recreated the InDesign files and recreated the book, but still no joy. If all else fails, I'll put the book back into a single file but I'd rather not go through this pain each time I have to update the book (especially as this latest change was really tiny).
    Any suggestions? Are cross-references between files in a book known to be problematic? And if they are, has the problem been addressed for CS5.5? (I'm looking to use InDesign for a journal that will contain a lot of links between elements, but the turnaround time is tight and I'm wary of this issue being a problem each month.)
    Currently using CS5 on Windows 7 Professional, and Acrobat 9 Pro Extended was installed as part of the Tech Comm Suite.
    Thanks in advance,
    Alison

    This is so funny...I was just about to close my email and look up the
    Forums to profusely thank the person who posted the solution to a similar
    problem I was having in CS4.  I'd created numerous hyperlinks in Indesign
    documents and sometimes the links worked in a pdf, and sometimes not.  The
    problem solver was talking about a solution in Word, but I found the same
    type of text in the PDF settings box that pops up when you want to save the
    pdf.  There are all kinds of checkboxes and I'd thought I was doing enough
    by checking 'add hyperlinks'...but the advisor said you have to make sure
    'tagged PDF' is CLEAR.   So the same thing will probably work for you with
    your bookmarks!  (...if the settings are similar in CS5 of course, and
    there's no reason they shouldn't be.  I guess.)
    The only thing is, there's a lot of what we call 'ant work' ahead of me.  I
    have to go back to each InDesign doc and retype the text in the home font,
    and create the hyperlinks over again.  Luckily, the hyperlink destinations
    are still there.  It's not enough just to export the document again with
    the Tagged checkbox cleared, and you can't create a new hyperlink over an
    old one; the 'new hyperlink' option isn't available under Interactive. So
    you may have the same problem.
    Let me know if this works!  I'm off to thank the person...
    Susan

  • Some share buttons don't work on my tablet

    I have a Samsung tablet, model GT-P3113 and its Operating System is Android. In some websites when I click share buttons like addthis and sharethis, they don't work and are inactive. I refresh the page and it doesn't help. For example, none of share buttons of http://www.threehosts.com/ratings/comparison-software/wordpress-vs-joomla-vs-drupal.html work on my tablet, but when I go to this page via my Laptop the share buttons work. My laptop OS is Windows 8.
    One of my friends has iPad and I sent this link to him. The share buttons work correctly for her.
    Does my problem come from my Android which doesn't support share plugins perfectly, or it comes from my tablet model?
    Is there anyone with Samsung GT-P3113 on this forum? If so, could you please test the mentioned page and tell if its share buttons are active or not?

    I have the Samsung Galaxy Tab 2,  7", model GT-P3113, wifi only (not on my Verizon plan).  It's currently running Android 4.2.2; the share buttons on the site you listed above seem to work for me...I didn't actually go through and "share" anything, but I did get to this screen and it appears that all I need to do is log in to whatever service I want to  use to share the post :

  • Upgraded to yosemite now my speakers don't work and i can't play videos on Facebook.

    When i play a video on face book I'm told i need to upgrade flashplayer, i wasn't even aware i had it downloaded! I have got rid of flash player (i think ) and now I'm told i need to download FP before i can watch videos. I can't play games on FB either and my speakers don't work.
    I wish i hadn't upgraded to Yosemite to be honest as i prefer the old layout and it seems to have caused me problems. Everything was working fine before the Upgrade to Yosemite.
    Im not good with computer terminology so please reply as simply as possible :-)
    Thank you

    Try un-installing and then re-installing.
    Adobe Flash Uninstaller
    Adobe Flash Player
    Adobe Flash Player updates available for OS X on October 24, 2014
    Sound.
    Sound – can’t hear sound from speaker - Yosemite
    Sound – No Sound After Upgrade (2)
    Sound Levels - Troubleshoot
    Sound – Troubleshooting Internal Speakers

Maybe you are looking for

  • Report for Material Issued against Service Orders But not Billed.

    Hi Experts, For CRM Service Orders Based on the Reservation number generated in CRM we will make the Goods issue document in ECC. My Question In CRM Do we have any standard report to see Material issued against CRM Service orders but not billed. i.e.

  • Performance of minor startroutine

    Hi Guys I have the start routine (BW) shown below. I have problems executing it on our quality system with 2.000.000 records amount, but I dont know whether this problem is due to bad performing code or if it is due to a bad performing qulity system.

  • All purchased films - Removed

    i don't know who decided to start tinkering around with the interface but removing the "all" purchased tab was a terrible idea. The movie layout is already bad but now it's worse. I honestly don't know what movies are supposed to be in what genre. I

  • Workflow Administrator other then SYSADMIN

    We need to have people working in the system as Workflow Admin but not logging in as SYSADMIN. We have placed an "*" in the "Workflow Configuation" -> "Workflow System Administrator" but when someone logs in as a user with "Workflow Administror Web A

  • AAA authentication for networking devices using ACS 4.1 SE

    Hi!!! I want to perform AAA authentication for networking devices using ACS 4.1 SE. I do have Cisco 4500, 6500,2960, 3750, 3560, ASA, CSMARS, routers (2821) etc in my network. I want to have radius based authentication for the same. I want telnet, ss