Popup can't be escaped

When data of table is viewed and right click to show pop-up menu on header column is done and accidentally click to filter edit box area occured, the menu is not escaped and is locked.

What release are you on? What platform? If you have clicked and invoked a context menu, just click elsewhere and the menu will go.
Sue

Similar Messages

  • Very strange Popup - can't get rid of it

    I've been getting a very strange popup lately when I go to certain sites and I can't get rid of it. It's an advertising thing that thinks for some reason that I live in Oakland (which i don't but is nearby). I also noticed that on certain websites now autofill puts in Oakland and some sites say i am logging in from Oakland.
    The popup looks like an XP window but is messed up and the text hangs over the edge of the box. It bounces around in the middle of my screen and makes accessing anything under it impossible.
    I have cleared cookies, cache and history. I have pop block on. This happens in Safari and in Firefox. I can send a screen shot but can't seem to paste one here.
    If I have accidentally gotten some adware installed, how can I find and get rid of it???
    Any help would be hugely appreciated!
    Thanks,
    Ed

    Thanks for the quick response. I pretty much always get it at this site:
    http://www.alluc.org/alluc/tv-shows.html?action=getviewcategory&category_uid=822
    A friend just tried the site too and said he gets the same popup but with an advert for Seattle (where he does live), so perhaps this isn't something installed on my computer after all... it is super annoying, though, so i'll give that program a try. do you have any other thoughts?

  • TitleWindow PopUp Can Be Dragged Off Stage!

    I am making a popup window using a custom TitleWindow component which is opened by clicking a "Settings" button using the following method:
    private var titleWindow:TitleWindow;
    private function popUp():void {
        titleWindow = PopUpManager.createPopUp(this, CustomTitleWindow, true) as TitleWindow;
        PopUpManager.centerPopUp(titleWindow);
    Everything is working fine, however, I am able to drag it completely outside the stage!  If the user releases the mouse while the window is off the stage, then there is no way to find/grab it again and bring it back on the stage!  Of course, this situation is not too acceptable for customers.  Is there any way that I can limit the popup window to the boundaries of the stage?
    Also, if the user clicks the "Settings" button multiple times, multiple popup windows will be opened!  I don`t want to make the popup window modal.  Is there any way to limit instances of the popup window to one?
    Thank you in advance for any help anyone can give!
    Matt

    Hi Matt,
    Here's a solution for bounding the moves of a TitleWindow:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" >
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                import spark.components.TitleWindow;
                import spark.events.TitleWindowBoundsEvent;
                private var titleWindow:TitleWindow;
                private function popUp():void
                    titleWindow = PopUpManager.createPopUp(this, TitleWindow, true) as TitleWindow;
                    PopUpManager.centerPopUp(titleWindow);
                    titleWindow.addEventListener(TitleWindowBoundsEvent.WINDOW_MOVING,
                                                 titlewindow1_windowMovingHandler);
                protected function titlewindow1_windowMovingHandler(event:TitleWindowBoundsEvent):void
                    // These are the new bounds when the window is moved.
                    // You can modify them to alter the result of when the TitleWindow moves.
                    var endBounds:Rectangle = event.afterBounds;
                    // left edge of the stage
                    if (endBounds.x < 0)
                        endBounds.x = 0;
                    // right edge of the stage
                    if ((endBounds.x + endBounds.width) > this.width)
                        endBounds.x = this.width - endBounds.width;
                    // top edge of the stage
                    if (endBounds.y < 0)
                        endBounds.y = 0;
                    // bottom edge of the stage
                    if ((endBounds.y + endBounds.height) > this.height)
                        endBounds.y = this.height - endBounds.height;
            ]]>
        </fx:Script>
        <s:Button click="popUp()" />
    </s:Application>
    Basically, I add an event listener for the "windowMove" event on the TitleWindow and limit where it can move around in the application. You can see the ASDoc for TitleWindowBoundsEvent for more information. Hope this helps!
    -Kevin

  • Can't capture escape-key event

    I have made a class which implements KeyListener and have added to a dialog. The keyPressed(KeyEvent e) method is called with common keys but not with the escape-key. How can I make this work with the escape?

    This works for me:
    protected JRootPane createRootPane() {
        ActionListener escLis = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
                dispose();
        JRootPane rootPane = super.createRootPane();
        KeyStroke ks = KeyStroke.getKeyStroke (KeyEvent.VK_ESCAPE, 0);
        rootPane.registerKeyboardAction(escLis, ks, WHEN_IN_FOCUSED_WINDOW);
        return rootPane;
    }I'm pretty sure that registerKeyboardAction() has been deprecated so you'll probably want to replace that portion of the code.
    Col

  • HT4623 How come I can not use WIFI to update the new IOS in my iPhone 5 ? the screen pop up " you no longer connection to Internet " . And I won't be able to download any Apps using Wifi, the screen popup " can not connect to iTunes stores " ..

    I can not use Wifi at home to download Apps . The screen pop up " can not connect to iTunes Store " ?? I am using iPhone 5 . I used to be able to download any Apps before .
    I can not even download the new IOS which Apples sent to my phone to update . ???? Please help !!!
    My husband is using IPhone 5 and his phone is fine , he can use WIFI to download any apps or update any software from apple . Does that mean my phone have problem , not my WIFI right ???
    Now, I have to use my data plan to download any Apps which waste my money :( Thanks a lot !!

    Hello phonphon,
    We've got an article that can help restore your phone's connection to the iTunes Store while on your WiFi network.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    Allen

  • How can I use escaped-characters in an option

    I have the following code that is used to retrieve city-names including parent-child relations from a database and place them in an array:
    <%@ page contentType="application/x-javascript" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
    <sql:setDataSource dataSource="jdbc/KADOS" var="Raak" scope="session" />
    <sql:query var="bewaringSQL" dataSource="${Raak}">
    SELECT bewaringcode, vestigingsplaats FROM BEWARING order by vestigingsplaats
    </sql:query>
    bewaringen = new Array(
    <c:forEach items="${bewaringSQL.rows}" var="plaats" varStatus="s" >
    new Array( "<c:out value="${plaats.BEWARINGCODE}" />",
    "<c:out value="${plaats.VESTIGINGSPLAATS}" />" )
    <c:if test="${not s.last}">,</c:if>
    </c:forEach>
    i=0;
    <c:forEach items="${bewaringSQL.rows}" var="plaats" varStatus="s" >
    <sql:query var="bewaringGemSQL" dataSource="${Raak}" sql="SELECT KADGEMCODE, KGMNAAM FROM KADGEMEENTE where BEWARINGCODE=? order by KGMNAAM">
    <sql:param value="${plaats.BEWARINGCODE}" />
    </sql:query>
    tmp = new Array(
    <c:forEach items="${bewaringGemSQL.rows}" var="gem" varStatus="s" >
    new Array( "<c:out value="${gem.KGMNAAM}" />",
    "<c:out value="${gem.KADGEMCODE}" />" )
    <c:if test="${not s.last}">,</c:if>
    </c:forEach>
    bewaringen[2] = tmp;
    i = i+1;
    </c:forEach>
    function bewaringenList(selectCtrl, itemArray) {
    for (i=0; i<itemArray.length; i++) {
    selectCtrl.options[i] = new Option(itemArray[i][1]);
    selectCtrl.options[i].value = itemArray[i][0];
    function setList(selectCtrl, itemArray) {
    for (i=selectCtrl.options.length; i>=0; i--) {
    selectCtrl.options[i] = null;
    for (i=0; i<itemArray.length; i++) {
    optie = filter(itemArray[i][0]);
    selectCtrl.options[i] = new Option(optie);
    selectCtrl.options[i].value = itemArray[i][1];
    function filter( invoer) {
    retour = invoer;
    retour = retour.replace("'", "\'");
    return retour;
    The function 'bewaringenList' populates a <SELECT> with parent-names and
    "setList(document.VraagForm.gemSelect, bewaringen[this.selectedIndex][2]);" populates the depending <SELECT> with child-names.
    Some names contain single quotes (like "&#039;t Zandt") and are displayd in the select-box as "&#039t Zandt".
    I expected that the quotes could be replaced by escape-characters by 'filter(invoer)' but this does not work.
    Is there a generic way to show these characters?
    Ben

    I don't understand why but this filter solved the problem:
    function filter( invoer) {
    retour = invoer;
    retour = retour.replace("&#039;", "'");
    return retour;

  • ITunes.exe - Entry Point Not Found - QTCF error popup - can't open iTunes

    Hi, whenever I try to open iTunes I also get this message:
    iTunes.exe - Entry Point Not Found
    The procedure entry point QTCF_CFUniCharGetUnicodePropertyDataForPlane could not be located in the dynamic link library QTCF.dll
    I've tried uninstalling iTunes then reisntalling, uninstalling Quicktime, rebooted and I still get the same problem. I also moved QTCF.dll into iTunes. Still get the same error. I also tried a system restore, and I STILL get the same error.
    I tried removing everything and turing off my antivirus and I still get this message and my iTunes does not work. Also when the message comes on it will not go away until I re-start my system. Any help out there on this???
    Thanks.

    *Replying to smyth_m*
    So I followed the instructions and downloaded the newest version of iTunes like it told me, but after I did that, When I would attempt to get on iTunes an iTunes.exe - Entry Point Not found messege would come up. And it says The procedure entry point sqlite3preparev2 could not be located in the dynamic link library SQLite3.dll.
    That's a different one, smyth. At the moment, you could try basiam's workaround from the following post:
    http://discussions.apple.com/thread.jspa?messageID=10444196#10444196
    ... however, this could possibly cause trouble in its own right next time you upgrade iTunes, given that there will be a misplaced, older SQLite3.dll in system32 ... So be sure to remember you've got that dll down there, and if you get an odd message about SQLite3.dll when you try launching iTunes *after your next iTunes upgrade,* delete the old copy of the dll in system32 and see if you get a normal launch without it there.

  • Can not get prompt popup for save password and plugin install

    I am using Firefox 10.0.0.2 on Win7 b4bit os. I found that I can never get prompt popup with any password form submission. Even the plugin install prompt popup can never turn up.. The prompt popup can show in safe mode only.
    I tried to re-install the whole browser and cleared all plugins/extensions. Never worked...PLEASE HELP!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • Can someone help me find some missing features?

    There are quite a few features that I am unable to find in Leopard. Can someone please help figure out where they went or how to work around the following:
    In iCal you can no longer open the Info Drawer to allow you to see the details of your events as you click through them.
    Previously it only required one click to view Event info and 2 clicks to make an edit.
    Now it takes 2 clicks to see info which pops up a window with the details in it.
    Furthermore it takes 4 clicks to make an edit. 2 clicks (double click) to open the popup window, one click on the Edit button then a click on the item you want to edit. Plus one more to get rid of the info window. It only took 2 clicks in the Tiger version.
    Or you can press the Escape key after you make an edit which commits the edit. Doesn't the Escape key usually mean Cancel? It does everywhere else I've ever used it.
    Also:
    Classic
    Dock - position top
    Dock - hierarchical menus for folders
    Finder - draggable window edges
    Finder - collapsible sidebar
    Finder - change permissions of your own files without admin privileges
    Finder - set the current folder as the default search location
    Finder - use "Spacebar" to select the first alphabetical item in any window
    Finder - set the current folder as the default search location
    General - choice of colour for Apple menu icon (useful for flagging "root")
    General - Ctrl-Eject Restart/Sleep/Shutdown dialogue (now only "Sleep" and "Cancel")
    General - default high contrast menubar suitable for visually challenged
    rc.shutdown - though there's probably an equivalent I haven't figured out yet
    Netinfo Manager - There is no equivalent GUI App to perform the tasks that Netinfo Manger used to
    (Some items originally posted by other users. Compiled here for convenience.)

    Josh Hurd wrote:
    Also:
    Classic
    Gone. Mac OS 9 has been dead for quite some time; Apple just got around to burying the corpse. If you need Mac OS 9, use SheepShaver.
    Dock - position top
    Still a hack.
    Dock - hierarchical menus for folders
    Gone, sadly. Hopefully they'll bring this back in a later update.
    Finder - draggable window edges
    The top and bottom bars are still draggable. Left-side and right-side window borders have been removed throughout Mac OS X.
    Finder - collapsible sidebar
    You can click on the little pill in the top-right corner.
    Finder - change permissions of your own files without admin privileges
    Finder - set the current folder as the default search location
    Finder - use "Spacebar" to select the first alphabetical item in any window
    I didn't even know that existed. Regardless, space bar is now bound to Quick Look, so unless you can change it in System Preferences's keyboard section, you might be out of luck.
    Finder - set the current folder as the default search location
    It's in the Search bar, when you start a search. It's displayed in quotes. (This should really be the default, IMO.)
    General - choice of colour for Apple menu icon (useful for flagging "root")
    This has never existed in Mac OS X.
    General - Ctrl-Eject Restart/Sleep/Shutdown dialogue (now only "Sleep" and "Cancel")
    I got all four options when I tried it just now.
    General - default high contrast menubar suitable for visually challenged
    Not sure about this one.
    rc.shutdown - though there's probably an equivalent I haven't figured out yet
    Netinfo Manager - There is no equivalent GUI App to perform the tasks that Netinfo Manger used to
    NetInfo has been removed from 10.5 (probably to achieve the UNIX 03 certification; good riddance, I say). A few features have GUI replacements in Directory Utility, but the rest have been delegated to Directory Services. You'll have to use the Terminal to access most of DS.

  • Lenovo Registration PopUp

    Every time I turn on my T520 I get the Lenovo Registration PopUp request even though I have already registered the laptop. Does anyone know how to disable this request?

    Hi Noel,
    Thanks for the reply.
    That did the trick - it's no longer popping up, thanks!
    Now I just have to solve the "escape key disabled" issue, that I've been researching on the Adobe Forums.
    (when PhotoShop CS2 is running, the escape key is disabled on all other programs.  example: open notepad, choose "file / open" and then if you decide "I'm not going to need notepad after all" you can't hit escape to close the open file dialog - you have to click to close it)
    http://forums.adobe.com/thread/372523  - but that's another topic
    Regarding this topic, I appreciate the quick response that you have provided - it's been very useful.
    David

  • Problem with popup in a page fragment

    JDev 11.1.2.1
    I'm using the code described here to launch popup from a backing bean.
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/oct2010-otn-harvest-183714.pdf
    How-to launch a popup programmatically from Java
    Starting Oracle JDeveloper 11.1.1.3, instance of af:popup can be opened using a Java method on the RichPopup object. The RichPopup class is the bean implementation of the af:popup ADF Faces tag. To launch a popup from a managed bean, you first need to get a hold on to a rich popup instance, which you can do by searching it on the UIViewRoot or by referencing a JSF component binding – which you create using the "binding" property of the af:popup component tag. To open the popup you then call
    RichPopup.PopupHints ph = new RichPopup.PopupHints(); popup.show(ph);
    It works fine except when the popup is inside a page fragment.
    In IE 7 I get the javascript error message
    "this.getDomNode().parentNode' is null or not an object"
    I have also tried the following code; that works fine except when the popup is inside a page fragment.
    FacesContext context = FacesContext.getCurrentInstance();
    String popupId = popup.getClientId(context);
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service =
    Service.getRenderKitService(facesContext,
    ExtendedRenderKitService.class);
    service.addScript(facesContext,
    "AdfPage.PAGE.findComponent('" + popupId + "').show();");
    Any idea how to launch a popup in a page fragment?

    Since this is working for others I'm working on a test case to send to oracle.
    I'll try to give more information.
    Main.jspx
    has a region for Child.jsff using a bounded task flow.
    <af:region value="#{bindings.Child.regionModel}" id="r1"/>
    Child.jsff has a popup bound to backing bean and a button that calls java to open the popup.
    Child.jsff has its own set of bindings. It is not inherting parent bindings.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:resource type="javascript"/>
    <af:group id="g100">
    <af:popup childCreation="deferred" autoCancel="disabled" id="p1" binding="#{TestBacking.testPop}">
    </af:popup>
    <af:commandButton text="testPopup" id="cb1" actionListener="#{TestBacking.test}"/>
    TestBacking.java
    public void setTestPop(RichPopup testPop) {
    this.testPop = testPop;
    public RichPopup getTestPop() {
    return testPop;
         public void test(ActionEvent actionEvent) {
              RichPopup.PopupHints ph = new RichPopup.PopupHints();
              testPop.show(ph);
    Edited by: Phil on Nov 14, 2011 11:53 AM
    Edited by: Phil on Nov 14, 2011 11:58 AM

  • How to display a IE page in a view ,not popup  ?

    Hi! All
    Question 1st:
    I have create a html page by webdynpro,
    I want display this page in a view ,
    but when run this code,
    the IE page popup ,
    can you help me set the IE page in current view ?
    public void wdDoInit()
       //@@begin wdDoInit()
       String text = "<html><head></head><body>this is my test</body><html>";
       try
           IWDCachedWebResource resource = WDWebResource.getWebResource
             text.getBytes("UTF-8"), WDWebResourceType.UNKNOWN
            resource.setResourceName("test.html");
            IWDWindow window =
    wdComponentAPI.getWindowManage().createNonModalExternalWindow(
            resource.getUrl(WDFileDownloadBehaviour.OPEN_INPLACE.ordinal()), 
            resource.getResourceName());
            window.show();
        catch(Exception ex)
            wdComponentAPI.getMessageManager().reportException( new WDNonFatalException(ex), false );
    Question 2nd:
      I have create a value context attribute under context.
      it's  name is "mywindow"
      it's  type is "com.sap.tc.webdynpro.services.session.api.IWDWindow"
      Do you know how to display  "mywindow" in a view ?
      I try to put mywindow in a InputField or a IFrame,
      but all failed !
    Thanks!

    Hi,
    This is the code to open up a window
        IWDWindow win = wdComponentAPI.getWindowManager().createModalWindow(wdThis.wdGetAPI().getComponentInfo().findInWindows(<window_name>));
        wdContext.currentContextElement().set<window_context>(win);
        win.setWindowPosition(WDWindowPos.CENTER);
        win.setWindowSize(250,150);
        win.setTitle("New Window");
        win.show();
    This will open up as a pop-up. If you want to open a html page on the same window then put an iframe in your view and set its source property correspondingly.
    Regards,
    Murtuza

  • XML escaping issue in ABAP during XML file transfer to App. Server.

    Hello Partners:
    I was going through some work of XML integration of SAP with a third-party. But came across an issue:
    The text descriptions we are sending within an XML tag has certain special characters like '&'. But the XML parser is not escaping it. Hence its replacing '&' with "&amp;" in the XML data string. So now I need to understand how can we implement escaping via ABAP for generated XML strings? Can you all please help me to understand which methods to use and how?
    It will be much appreciated.
    Thanks in advance.
    Vivek Singh.

    Hello SAP Friends!
    I'm facing the same problem concerning special chars in XML. I've tried to unescape the '&' sign with methods of if_ixml_ostream
       l_ostream->set_ignore_escaping( ignore_escaping = '&' ).
    the character is set and can be called by
      l_str = l_ostream->get_ignore_escaping( ).
    After the rendering was done and the download has finished the xml document can be loaded in EXCEL but the special characters are replaced by & a m p;
    Has anybody found a method to avoid the behaviour?
    My original problem is, the the data have to be in one cell in excel. I know at present no method to download data (text including line feeds) from SAP to excel into one cell.
    Maybe you have found a way to use  ignore_escaping in correct way!
    Thanks a lot in advance!!!

  • Registration PopUp Window Won't Go Away

    I got no help with this calling support, and no help doing the 'Chat Live', so hopefully there's ppl here who might be able to help.
    I have Photoshop CS2 v9 for Windows.  It used to be on a Windows XP computer, but that computer died a few months ago.  I now have a new computer with Windows 7 Ultimate, 64 bit.
    I installed my Photoshop CS2 v9 on the new computer, and the registration window popped up.  I click 'don't register' because I had already registered it on my old computer.  But every time I opened PS, the Registration window opened.  I finally just decided I would go ahead and go through the registration process again just to get rid of the window.
    Now, every time I open PS, I am still getting the 'Register' window.  I chatted with an online support person who referred me to tech support.  I called tech support and they were no help either.  Tech support said it's not an activate or re-activate situation because the software works fine.
    The online chat guy said there was a file somewhere on the computer I could open in a text editor and change regisration to "never" and it would stop.  But my computer has no such file.
    Is there any way to make the window quit opening?  The software is registered and needs no further activation, so what is the problem?
    Thanks.

    Hi Noel,
    Thanks for the reply.
    That did the trick - it's no longer popping up, thanks!
    Now I just have to solve the "escape key disabled" issue, that I've been researching on the Adobe Forums.
    (when PhotoShop CS2 is running, the escape key is disabled on all other programs.  example: open notepad, choose "file / open" and then if you decide "I'm not going to need notepad after all" you can't hit escape to close the open file dialog - you have to click to close it)
    http://forums.adobe.com/thread/372523  - but that's another topic
    Regarding this topic, I appreciate the quick response that you have provided - it's been very useful.
    David

  • Escape sequence on sender file adapter

    Hello XI experts,
    My scenario is,
       Customer System&#12288;=>  <CSV File> => File Adapter => Integration Engine
    I'm thinking of using Sender File Adapter with File Content Conversion
    and setting "," as  FieldSeparator.
    If there is "," in a text field and I don't want the Adapter to recognize it
    as separator, how can I difine escape sequence?
    For example,
    #default#
    aaa,bbb,ccc,SAP,Oracle....
    ->
    aaa
    bbb
    ccc
    SAP
    Oracle
    #My requirement - define & as escape sequence#
    aaa,bbb,ccc,SAP&,Oracle....
    ->
    aaa
    bbb
    ccc
    SAP,Oracle
    Any infomaton is appreciated.
    Regards,
    Tomoatsu

    Hi,
    You can use the following parmeter: NameA.enclosureSign
    Check here for the same:
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm
    Regards
    Vijaya

Maybe you are looking for

  • Same synced drives, different remaining space - aaarrggghh!

    This may not pertain to Mountain Lion exclusively, in fact i know it doesn't, but nobody (not even the manufaturer can explain this: I have two 2TB Western Digital Caviar Green drives both formatted on my mac pro. I typically use Decimus Synk to sync

  • Audio coming from only one field

    Hello, I just did a mic'ed interview with my little camera. I was wearing headphones and noticed audio coming from only the left side, but there was nothing I could do about it that I was aware of. Anyway, now that this thing is in Final Cut Express,

  • Idoc deletion

    Hi Team,     Please let me know any way to delete Idoc status 51 and 64 in datatbase directly with out archiving Thanks, Thirumoorthy.E

  • What is the little plastic piece that comes with my iPod??

    What is the little plastic piece that comes with my iPod?? It looks like some kind of dock, but it is oddly shaped. There is nothing about it in the user guide. What is it?

  • Satellite L650-1k5 freezing when charger plugged in

    Hi, I just bought a Toshiba L650-1k5 from a Toshiba shop with no OS on it. I put on a bought, legal Windows 7 professional X64 with all of the needed toshiba drivers. It was a week ago. Couple of days ago the notebook started freezing for no reasons