Attach(ed)movie not receiving "onRelease" first time

Hey folks,
SO, I have a movie clip that I am attaching at runtime. Each
time the user clicks a button, a new moveable piece gets attached
at the mouse position and gets sent a "startDrag". I have an
"onRelease" defined in a custom class that this movieclip is a part
of, but the first time I release my mouse after instantiating the
clip and moving it, it doesn't seem to receive the "onRelease".
When I click it again, it will stop moving. The "startDrag" is
defined in the class as well to happen onLoad. Ideas?

copy and paste the output panel text after inserting the following and running through your test steps.
var mc:MovieClip=_parent.attachMovie("buttonblanklevel", "butt_levelone", 3, {_x: 217, _y: 5});   
    _parent.butt_levelone._alpha = 50;
trace(mc);
_parent.butt_levelone.onRelease = function() {
    trace("r "+_parent);
    _parent.gotoAndStop("BacktoShop");
//In frame "BacktoShop" on parent:
trace("backtoshop");
movieHolder.loadMovie("ToolShopAnim01.swf", "ToolShop");
butt_levelone.removeMovieClip();

Similar Messages

  • HT204370 Downloaded movie not playing after first time

    Purchased and downloaded a movie yesterday (have confirmation email of purchase).  Able to watch movie once.  Tried to watch again, but received message "You do not have permission to access the requested resource".  Why am I getting message if I have proof of purchase?

    Trashed the video file and redownloaded.
    Exact same thing.  Doesn't play for more than a couple seconds. 
    Infuriating, and zero responses yet.  Is there a point to posting on here when 99% of the questions I see are unsolved or completely ignored?

  • I use iPhone, iPad and MacPro, all works fine but the newly purchased iMac does not receive emails on time - always later than other devices. Why and how to fix?

    I use iPhone, iPad and MacPro, all works fine but the newly purchased iMac does not receive emails on time - always later than other devices. Why and how to fix?

    Go to Mail Preferences
    Click on the General tab
    Set  "Check for New Messages:"  to  "Every Minute"
    Hope this helps

  • Delegate not receiving "Proposed New Time" items

    I am looking at a principal who has given delegate access to his admin and configured the delegate to receive all meeting related items. I've verified this in the principal's mailbox. The meeting invitations all are sent from the principal's calendar
    and the delegate sees the requests and all acceptances/declinations; however, the delegate is NOT receiving "Proposed New Time" items. The principal does receive them, thus we know the option to "Allow New Time Proposals" is not
    disabled.
    The one oddity I saw was that the principal had given the delegate "owner" permissions to his calendar, which makes the permissions appear as "Custom" in his Outlook. However, in Office 365, GET-MAILBOXFOLDERPERMISSIONS <ALIAS>:\CALENDAR
    shows that the delegate has Editor permissions. I reset the permissions in the principal's calendar to "Editor" to remove the "custom" setting (once upon a time, custom settings used to cause issues in Outlook). The change, however, had
    no effect.
    Any ideas?

    Hi Taj,
    It’s by design. Decline and Propose New Time is same as decline meeting request. When you decline a meeting, this meeting will be automatically deleted in your calendar.
    If you want to propose new time, you can try another option--- Tentative and Propose New Time. By default, you will tentatively accept the meeting.
    More details about Propose, accept, or decline a new meeting time, for your reference:
    https://support.office.microsoft.com/en-us/article/Propose-accept-or-decline-a-new-meeting-time-6e249871-0755-4171-8250-c5cbac240d33?CorrelationId=f66c9068-6d89-44f9-8286-2b44f9d17b46&ui=en-US&rs=en-US&ad=US
    Best Regards,
    Allen Wang

  • Web graphic is not displayed the first time

    Hi all
    I have a strange issue with some users.  The first time that they run the qry in the web, the chart is not diplayed, only is displayed a big "X" and the error msg is the msg below; but when they refresh, the chart is displayed ok.
    How can I solve it?
    Web application processing terminated
    Diagnosis
    The system had to terminate processing of the Web application.
    The reason could be that the system was no longer able to find the Web application server session.
    System Response
    Processing the navigation step is not possible.
    Procedure
    Call up the Web Application again.
    Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
    Procedure for System Administration
    Notification Number BRAIN 278
    Thanks in advance!

    From HTML pass to jsp with post, then from jsp pass the same data to another jsp with parameter attached to the file URL, so method is "get":
    top.location="../filename.jsp?path="+path;

  • MDB is not receiving message every time

    I am using OJMS for messaging, I created three queues and three MDB's for queuing and dequeuing Some time it will work fine some times it will not receive my message if i check in queue table there is no message for my queue but some message is there for exception queue which is created by default.
    Can any body throw some light on this???

    Could you attach the bean definitions from ejb-jar.xml and orion-ejb-jar.xml?
    Also, the JMS resource entry in the application.xml?
    Are your queues running all the time?
    Have you got listerner-threads configured in your orion-ejb-jar.xml? Remember that for MDBs, OC4J does not recognise max-instances/min-instances setting, you need to use the listener-threads setting

  • ValueChangeListener in Radio Button not acting after first time

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

  • Content not appearing after first time

    I could really do with some help on this one.
    I have a screen (State) in my application that displays some
    custom mxml components using a repeater. The first time I come to
    this screen, all the data appears correctly. However if I navigate
    away from this screen to another screen (State), then return to it,
    all that appears is a scroll bar, with no custom components
    appearing.
    I would appreciate if anyone can take a peek at my code below
    to try and identify the problem. Perhaps this is a problem others
    have experienced?
    The relevant code is as follows:
    <mx:State name="ComponentFolderScreen"
    basedOn="QualificationSummaryScreen">
    <mx:RemoveChild
    target="{qualificationSummaryScreenDG}"/>
    <mx:AddChild relativeTo="{vbox1}"
    position="lastChild">
    <mx:Tile autoLayout="true" width="740" height="230"
    id="tile1" borderStyle="none">
    <mx:Repeater id="productsRepeater"
    dataProvider="{this.category1}" >
    <local:ComFolderItem
    mouseOver="CFSMouseOver_Folder(event)"
    click="CFSClick_Folder(event)"
    studentName='{productsRepeater.currentItem.productName + "(" +
    productsRepeater.currentItem.productPrice + ")"}'
    componentStatus='{productsRepeater.currentItem.componentStatus}'
    >
    </local:ComFolderItem>
    </mx:Repeater>
    </mx:Tile>
    </mx:AddChild>
    </mx:State>
    And here is the code that populates the ArrayCollection that
    is the dataprovider
    var ComponentFolderData:ArrayCollection = new
    ArrayCollection();
    ComponentFolderData =
    _dataManager.returnComponentFolderData(componentCode);
    var howManyObjects:uint = ComponentFolderData.length;
    var objectInstance:Object = new Object();
    category1 = new ArrayCollection();
    for (var objectIndex:uint = 0; objectIndex <
    howManyObjects; objectIndex++) {
    objectInstance.productName =
    ComponentFolderData.getItemAt(objectIndex).productName;
    objectInstance.componentStatus =
    ComponentFolderData.getItemAt(objectIndex).componentStatus;
    category1.addItem(objectInstance);

    Hi there
    600 seconds? Seriously? OMG, that's ten minutes!
    Personally, I would never recommend having a slide longer
    than maybe ten
    seconds. I'm not sure how you even manage a timeline that
    long.
    At any rate, whatever floats your boat I suppose. My guess is
    that you have some object (Click Box, Button or Text Entry Box)
    that is sitting on the timeline and pausing things before the
    button you wish to see has a chance to appear.
    Cheers... Rick

  • Query Region: vo.executeQuery is not using criteria first time.

    Hi,
    Scenario*
    I have a simple QueryRegion with an AdvancedTable. Its construction mode is autoCustomizatioCriteria.
    Also, there is a 'Refresh' button on the page to redirect to same page with a parameter 'refreshStatus' set.
    This button is handled in the processFormRequest as follows
    if (pageContext.getParameter("Refresh") != null) {
    HashMap parameters = new HashMap();
    parameters.put("refreshStatus", "REFRESH");
    pageContext.forwardImmediately("OA.jsp?page=/oracle/apps/ap/payments/psr/webui/PsrSearchPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null, parameters, true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    In the processRequest, the 'refreshStatus' parameter is checked and if it is true, an AM method is invoked which calls a VO method, which ultimately invokes super.executeQuery() which is expected to use previous search criteria.
    Issue*
    I navigate to this page, enter criteria and click 'Go'.
    Expected results are displayed.
    Then I click the Refresh button. The table refreshes without considering the criteria. All results from database table are displayed.
    The criteria entered is still seen in the search fields as the AM is retained during redirect.
    Now I click on 'Go' again keeping the same criteria.
    Expected Results are displayed.
    Then I click the Refresh button. Now the table refreshes with the criteria in action.
    I am not getting the expected Refresh behavior for the first time only. The flow is same both times for Refresh button. Any idea why executeQuery() is not seeing WHERE conditions on the VO for the first time?
    Thanks
    Chinni

    Chinni
    Please post the complete codes .
    boolean isRefreshStatus =pageContext.getParameter("refreshStatus") != null;Here you are taking refereshStatus value in boolean but your value is REFRESH boolean cannot accept string type data.
    I will suggest try using sop() and check whether VO method for executing query is getting called or not and based on what values...
    Moreover while posting your code kindly enclose it in between {noformat}{noformat}
    for e.g
    {noformat} select * from dual
    {noformat}
    This looks like select * from dualThanks
    AJ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Calling a Flash object HTTPS (  only in IE, not loading the first time )

    Hi everyone !
    I'm trying to call a flash object from a bsp page, I've uploaded the flash into the mime repository (via the SE80). It works quiet well in Firefox, but with IE, i need to refresh the page, it won't load the first time i access the page.
    Does anyone has any idea ?? do i have to customize something within the SICF ?
    thx for the help
    merry Xmas
    Quentin

    Solved it, I created a page to call the flex from the MIME
    here it is :
    DATA: w_xstring TYPE xstring.
    DATA: w_mimetype TYPE string.
    * References
    DATA: w_url TYPE string.
    CONCATENATE 'sap/bc/bsp/sap/Z0008/' url  INTO w_url.
    CALL FUNCTION 'Z_FLEX_MIME'
      DESTINATION sy-sysid
      EXPORTING
        url        = w_url
      IMPORTING
        l_xstring  = w_xstring
        l_mimetype = w_mimetype.
    response->set_data( w_xstring ).
    navigation->response_complete( ).
    EventHandler Oninitialization :
    sap/bc/bsp/sap/Z0008/ is the url to my swf file in the SICF
    Module Function  Z_FLEX_MIME
    FUNCTION Z_FLEX_MIME.
    *"*"Interface locale :
    *"  IMPORTING
    *"     VALUE(URL) TYPE  STRING
    *"  EXPORTING
    *"     VALUE(L_XSTRING) TYPE  XSTRING
    *"     VALUE(L_MIMETYPE) TYPE  STRING
    * References
    DATA: lo_mr_api TYPE REF TO if_mr_api.
    * instantiate MIME API class
    CALL METHOD cl_mime_repository_api=>if_mr_api~get_api
      RECEIVING
        r_mr_api = lo_mr_api.
    * Get file from MIME repository
    CALL METHOD lo_mr_api->get
      EXPORTING
       i_url             = url
      IMPORTING
        e_content         = l_xstring
        e_mime_type       = l_mimetype
      EXCEPTIONS
        parameter_missing  = 1
        error_occured      = 2
        not_found          = 3
        permission_failure = 4
        OTHERS             = 5.
    ENDFUNCTION.
    If you have any questions please fell free to ask
    good day
    Quentin
    Edited by: Quentin Dubois on Feb 6, 2008 5:55 PM

  • Airplay sound not mirroring after first time until restart

    Anyone else seeing this issue?
    When we connect either the iMac or the MacBook Pro to our 2nd generation apple tv via airplay the first time, the sound goes to the tv as expected.
    If we try to use airplay a second time, the sound stays on the computer, though the picture shows up on the tv. If we try to change the sound in preferences to the apple tv, the airplay connection is broken. Once we restart the computer, the sound works as expected.
    All of the latest system software updates have been applied.

    That is right - upgrade to Mac as in purchase a Mac which now have Intel processors and the ability to also install and use Windows XP or Vista along with OS X on the same computer.
    I wonder if u have gone thru Apple's OS X license agreement recently?
    I have gone through the Apple website recently but I don't need to. Regardless, the answer remains the same and will not change. If you want to run OS X, you need to purchase a Mac.

  • Bumblebee does not work every first time I start it

    When I ran
    optirun firefox
    it failed and showed
    [ 7661.980841] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) systemd-logind: failed to get session: PID 16651 does not belong to any known session
    [ 7661.980869] [ERROR]Aborting because fallback start is disabled.
    But when I tried running again it worked.
    journalctl:
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929488] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929507] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929519] [ERROR][XORG] (EE) systemd-logind: failed to get session: PID 16651 does not belong to any known session
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929523] [ERROR][XORG] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929527] [WARN][XORG] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929538] [WARN][XORG] (WW) Unresolved symbol: fbGetGCPrivateKey
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929545] [ERROR][XORG] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929548] [ERROR][XORG] (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929551] [ERROR][XORG] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929554] [ERROR][XORG] (EE) NVIDIA(GPU-0): README for additional information.
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929557] [ERROR][XORG] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929560] [ERROR][XORG] (EE) NVIDIA(0): Failing initialization of X screen 0
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929564] [ERROR][XORG] (EE) Screen(s) found, but none have a usable configuration.
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929567] [ERROR][XORG] (EE)
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929570] [ERROR][XORG] (EE) no screens found(EE)
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929573] [ERROR][XORG] (EE)
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929577] [ERROR][XORG] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929580] [ERROR][XORG] (EE)
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929583] [ERROR][XORG] (EE) Server terminated with error (1). Closing log file.
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.980795] [ERROR]X did not start properly
    8月 28 22:12:24 swordfeng-PC kernel: nvidia 0000:01:00.0: irq 50 for MSI/MSI-X
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:24 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069802] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069813] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069828] [ERROR][XORG] (EE) systemd-logind: failed to get session: PID 16943 does not belong to any known session
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069831] [ERROR][XORG] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069833] [WARN][XORG] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069839] [WARN][XORG] (WW) Unresolved symbol: fbGetGCPrivateKey
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069845] [WARN][XORG] (WW) NVIDIA(0): Unable to get display device for DPI computation.
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069849] [ERROR][XORG] (EE) NVIDIA(0): Failed to initiate mode change.
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069851] [ERROR][XORG] (EE) NVIDIA(0): Failed to complete mode change
    8月 28 22:12:25 swordfeng-PC bumblebeed[254]: [ 7831.069859] [ERROR][XORG] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied
    8月 28 22:12:29 swordfeng-PC kernel: [drm] Module unloaded
    8月 28 22:12:29 swordfeng-PC kernel: bbswitch: disabling discrete graphics
    8月 28 22:12:29 swordfeng-PC kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    8月 28 22:12:29 swordfeng-PC kernel: pci 0000:01:00.0: Refused to change power state, currently in D0
    8月 28 22:12:29 swordfeng-PC bumblebeed[254]: [ 7834.886245] [ERROR][XORG] (EE) Server terminated successfully (0). Closing log file.
    22:09 is the first time and 22:12 is the second time.
    I tried what the wiki Troubleshooting section 'systemd-logind: failed to get session: PID XXX does not belong to any known session' said but nothing changed.

    Did you do this:
    8月 28 22:09:36 swordfeng-PC bumblebeed[254]: [ 7661.929577] [ERROR][XORG] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    Any additional info there?
    optirun -vv firefox
    could give some hints too.
    Did it ever work? Or is this your first try with bumblebee on that system?

  • Edge animate animation does not start the first time I load the page. But does the second time.

    Hi all,
    I am having trouble with an edge animation on a web page. It doesn't load the first time the page is loaded, but loads fine the second time or any time after that. To test I am clearing my cache, then reloading the page. It seams to work in IE the first time but not Firefox or chrome.
    I have a temporary copy of the page here ... http://emiwip.com/monique-mathieu/landing-page-wip.html
    Can anyone tell me what is going on?
    Thanks.
    Dan

    I found the answer here ... Publishing no longer works in latest Edge
    It appears that you need to load the latest jQuery in the head of the pag. That fixes it.
    Dan

  • Not receiving emails on time

    ive tried hooking up my email to my curve 8520 and it works, the problem is im not getting my emails on time.. i tried emailing myself to see how long its been almost 2 hours and still i have not received it.. i tried the option to "reconcile now" still nothing.. this is happening both to my work email and my yahoo email..
    Pls help.. thanks

    Hey snoesko, 
    Are you still having this issue? Have you tried removing and reintegrating your email accounts? The max you should be waiting for email would be around 15 minutes. 
    Let us know if you are still having issues and we can go from there.
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Custom url scheme not working (for first time) IOS applicaiton

    i have created one distribution application also register custom URL scheme. First time after I installed application, and try custom URL link, it does not work.
    However if I lunch the application manually it will prompt me below mentioned message
    Are you sure you want to open the application ... from the developer iphone distribution ... ?
    i will click on continue, and after that custom URL link works fine with my application.
    Can Custom url link launch the application directly on installation (without manually launch application and contiue)?
    is there any settings, so we can make the prompt message off. So it will not prompt message.
    also i had tried to create new application from another enterprise account, and deploy on other server; then it do not prompt that message, but unable to figure out the reason .
    Thanks

    Are you exactly following the guidance in the iOS App Programming Guide for Implementing Custom URL Schemes? Do you get the same message the first time, no matter whether app has been loaded or not? Are you really using iOS 4 per your profile?
    "If your app is not running when a URL request arrives, it is launched and moved to the foreground so that it can open the URL. The implementation of your application:didFinishLaunchingWithOptions: method should retrieve the URL from its options dictionary and determine whether the app can open it. If it can, return YES and let your application:openURL:sourceApplication:annotation: (or application:handleOpenURL:) method handle the actual opening of the URL.

Maybe you are looking for

  • ITunes 10.6.1.7

    Using Windows 7 x64 Ultimate edition with iTunes 10.6.1.7 64bit version (since our friendly 32 bit installer won't load). I'm using iTunes Match to host my music in Apple's "cloud"... recently whenever iTunes attempts to push music that I've purchase

  • Upgrade from 11.1.1.3 to 11.1.1.5 - integrated maps don't work

    Hi, I recently uppgraded OBIEE from 11.1.1.3 to 11.1.1.5 and everything went well. My customer have dashboards with integrated maps. These work fine prior to the upgrade. However, after the upgrade I noticed that I could no longer find the maps. In t

  • Hit by the famous "Failure to start JBOSS Service During Conf Management.  Error[ALC-LCM-999-032]"

    Hi Everyone, I m really frustrated with this issue. I am trying to install Adobe LiveCycle ES Update 1 trial version JBOSS turnkey option. It does not work!! The installation goes smoothly. But when I launch the config manager, there is no way I get

  • Hiding shorter duplicated songs in iTunes

    I've cut down multiple songs in my library with the Stop and Start times function, and then created identical copies of those songs which only play that specified time. (i.e. 3:00 song, chose a 1:00 segment and created a 1:00 duplicate) I want to use

  • Old iPhone Vs. New (your thoughts?)

    I have owned the old model for six months and am madly in love. When I saw the new 3G model I was shocked. The sleek smooth design of the first model was changed to a cheep plastic chunky phone that looks like it has a smaller screen. I did not buy t