[svn:fx-3.x] 10418: ScrollBar was not resetting the timer correctly

Revision: 10418
Author:   [email protected]
Date:     2009-09-18 15:36:11 -0700 (Fri, 18 Sep 2009)
Log Message:
ScrollBar was not resetting the timer correctly
QE Notes: None
Doc Notes: None
Bugs: SDK-21968
Reviewer: Corey
API Change: No
Is noteworthy for integration: No
tests: checkintests mustella/browser/DataGrid
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-21968
Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/scrollClasses/ScrollB ar.as

Yes my particular issue is not like yours. However, there have been many other laptop users experiencing similar problem to yours after 3.10 kernel. Mostly it seems to be bumblebee users that experience your problem with the blank screen. We do know that nvidia have yet to make their official drivers work with kernel 3.10 and up. The drivers in the Arch repository have been patched to work with 3.10. From what I have seen, this also only seem to be affecting laptops with newer nvidia gpu's. I fear there is not much to do with this problem until nvidia give official 3.10 kernel support.
My suggestion would be to stick with 3.9.9 kernel and the drivers that work with it, and don't upgrade those packages until nvidia has addressed these issues. If you have a look at the nvidia forums you will see quite a number of topics mentioning black screen when starting x on 3.10 kernel, and also a thread for the system dying. Reading some of the threads there may help you keep up to date on whether or not the issue seem to be solved.
https://devtalk.nvidia.com/default/board/98/

Similar Messages

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • ORA-12504 tns listener was not given the SERVICE_NAME in CONNECT-DATA

    Hi
    i installed a fresh oracle linux and installes 11.2.0 database server. the server works fine but i have a proplem to connect to the database from a windows 2008 r2
    client. For the client connection i installed the oracle instantclient on the windows system. Now i want to configure the system dsn to connect to the oracle
    server like this
    data source description: vSphere 64
    description: ----
    TNS Service Name: VCDB
    user id: system
    then i go to TEST connection
    Service Name: VCDB
    user name: system
    Password: mypassword
    so i copied the tnsnames.ora from the server to the client
    then i get
    ora-12504 tns listener was not given the SERVICE_NAME in CONNECT-DATA
    here´s my tnsnames.ora from the client
    VCDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.31.98.173)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = vcdb.vmware)
    i tested serveral config´s but nothing works. I can ping the server and also i cn telnet the server on port 1521. The listener on the server works fine
    lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 20-SEP-2010 20:48:52
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=vc-db1.mydomain)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 20-SEP-2010 20:47:45
    Uptime 0 days 0 hr. 1 min. 7 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/diag/tnslsnr/vc-db1/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vc-db1mydomain)(PORT=1521)))
    Services Summary...
    Service "vcdb.vmware" has 1 instance(s).
    Instance "vcdb", status READY, has 1 handler(s) for this service...
    Service "vcdbXDB.vmware" has 1 instance(s).
    Instance "vcdb", status READY, has 1 handler(s) for this service...
    The command completed successfully
    but it´s not possible to create a connection to the server. My enviroment variables are this
    ORACLE_BASE=/u01/app/oracle
    ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORACLE_HOSTNAME=vc-db1.mydomain
    ORACLE_SID=vcdb
    ORACLE_TERM=xterm
    so i think on the server site everything is correct. How could i establish a connection from the windows client
    to the linux database server. Or is ODBC the wrong method for this?
    Kind regards
    ACID25

    Hi,
    Check the listener log and see if the connection information is logged (in this case with error)
    If logged, then we are reaching the correct listener.
    Then check tnsping VCDB works fine along with sqlplus connection through listener using VCDB as connect string.
    If above both works, then issue can be isolated to ODBC configuration or setup issue.
    In case even if the tnsping / sqlplus is failing to connect with VCDB, then worth taking a client sqlent trace at level 16 and listener trace at level 16 to analyse the issue further.
    Thanks,
    Sathya

  • I was on an online course website, logged in and working on an assignment. Suddenly the page disappeared and was not on the tabs either. I went to the home page and tried to log back in and it said I was already logged in on another browser window

    Question
    I was on an online course website, logged in and working on an assignment. Suddenly the page disappeared and was not on the tabs either. I went to the home page and tried to log back in and it said I was already logged in on another browser window and if I proceeded to log in again the assignment I was working on would be ended and I would receive a zero. I can't locate the browser window that I was signed in on. Help...I don't want to get a zero, but don't know how to get back into the website under my original log in & get back to my half completed assignment.

    Hi,
    Please try this: In Firefox '''History''' ('''Alt''' + '''S''') and check if it is listed in either '''Recently Closed Tabs''' or '''Recently Closed Windows''' or in the list below. If you cannot find it click '''Show All History''', on the left of the window click '''Today''' below '''History''' and on the right look for the site entry corresponding closely to the time when you lost it. If you cannot see the column heading named '''Visit Date''', you may have to enable it by right-clicking on the column header strip.
    Also please note that the online course site may have redirected you to another site for the test, so it is also a good idea to look into site entries that may match the time.

  • Hello. After updating to version 7.0.2 was not on the phone face time application why?

    Hello. After updating to version 7.0.2 was not on the phone face time application why?

    If your phone was originally sold in KSA or UAE, facetime is permanently removed from it. If you are in one of those countries, and your friends have facetime on their phones, then they were originally sold in a different country.

  • Again: ORA-12504: TNS:listener was not given the SERVICE_NAME...

    Hi Guys,
    I got this already discussed error and I am sorry, to start a new topic, but I just have no idea what to do else.
    I have oracle11g - 32 bit running on my Windows 7 64 bit machine.
    The database-server is running fine according to the Database-Control Webinterface.
    Connecting with SQLPlus also works
    Now my application tries to connect to
    Server: localhost
    Database: orcl
    User: System
    PW: myPw
    I get: ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA
    I was reading many threads here and so I tried to configure the standard-listener using the netmanager with an additional SID named "orcl" which results in this listener.ora:
    Line: -----
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = E:\app\Andinger\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:E:\app\Andinger\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    (SID_DESC =
    (GLOBAL_DBNAME = Oracle8)
    (SID_NAME = ORCL)
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Andband)(PORT = 1521))
    ADR_BASE_LISTENER = E:\app\Andinger
    Line: -----
    This is my tnsnames.ora
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Andband)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    Line: -----
    What else could I check? What else could be the reason, that it doesn't work.
    I appreciate any help, suggestins, hints... :)
    Thanks
    Andy
    Edited by: 943829 on 01.07.2012 04:56
    Edited by: 943829 on 01.07.2012 04:57

    Thanks for your fast reply!
    Attached all the stuff you asked for:
    First the result of tnsping:
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-JUL-2
    012 19:19:33
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Parameterdateien benutzt:
    E:\app\Andinger\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Adapter EZCONNECT zur Aufl÷sung des Alias benutzt
    Verbindungsversuch mit (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROT
    OCOL=TCP)(HOST=fe80::341a:eb0:3f57:ff6d%13)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(H
    OST=192.168.0.146)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=2001:0:5ef5:79fb:341a
    :eb0:3f57:ff6d)(PORT=1521)))
    OK (20 ms)
    This is the content of sqlnet.ora
    # sqlnet.ora Network Configuration File: E:\app\Andinger\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    The status of the Listener:
    C:\Users\Andinger>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-JUL-2012 19:23
    :25
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Anmeldung bei (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Andband)(PORT=1521)))
    STATUS des LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Startdatum 01-JUL-2012 13:07:18
    Uptime 0 Tage 6 Std. 16 Min. 7 Sek.
    Trace-Ebene off
    Sicherheit ON: Local OS Authentication
    SNMP OFF
    Parameterdatei des Listener E:\app\Andinger\product\11.2.0\dbhome_1\network\admi
    n\listener.ora
    Log-Datei des Listener e:\app\andinger\diag\tnslsnr\Andband\listener\alert\lo
    g.xml
    Zusammenfassung Listening-Endpunkte...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Andband)(PORT=1521)))
    Services ▄bersicht...
    Dienst "CLRExtProc" hat 1 Instanzen.
    Instanz "CLRExtProc", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
    Dienst "Oracle8" hat 1 Instanzen.
    Instanz "ORCL", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
    Dienst "orcl" hat 1 Instanzen.
    Instanz "orcl", Status READY, hat 1 Handler f³r diesen Dienst...
    Dienst "orclXDB" hat 1 Instanzen.
    Instanz "orcl", Status READY, hat 1 Handler f³r diesen Dienst...
    Der Befehl wurde erfolgreich ausgef³hrt.
    And the Listener Service information:
    C:\Users\Andinger>lsnrctl service
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-JUL-2012 19:24
    :37
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Anmeldung bei (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Andband)(PORT=1521)))
    Services ▄bersicht...
    Dienst "CLRExtProc" hat 1 Instanzen.
    Instanz "CLRExtProc", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
    Handler:
    "DEDICATED" eingerichtet:0 abgewiesen:0
    LOCAL SERVER
    Dienst "Oracle8" hat 1 Instanzen.
    Instanz "ORCL", Status UNKNOWN, hat 1 Handler f³r diesen Dienst...
    Handler:
    "DEDICATED" eingerichtet:12 abgewiesen:0
    LOCAL SERVER
    Dienst "orcl" hat 1 Instanzen.
    Instanz "orcl", Status READY, hat 1 Handler f³r diesen Dienst...
    Handler:
    "DEDICATED" festgelegt:371 abgelehnt:0 Status:ready
    LOCAL SERVER
    Dienst "orclXDB" hat 1 Instanzen.
    Instanz "orcl", Status READY, hat 1 Handler f³r diesen Dienst...
    Handler:
    "D000" eingerichtet:0 abgewiesen:0 aktuell:0 max:1022 Status:ready
    DISPATCHER <machine: ANDBAND, pid: 3980>
    (ADDRESS=(PROTOCOL=tcp)(HOST=Andband)(PORT=49189))
    Der Befehl wurde erfolgreich ausgef³hrt.
    I hope that you understand it. I installed a german version. If it is a problem, I can install the english version.

  • LR3 error - "a response was not received in time"

    I have been using LR for a couple of years now and have uploaded many web galleries to my website.  Recently, however, it is just not happening for me.
    I have been trying for 3 weeks to upload 3 web galleries in LR3 - they range in size from 200 - 300 pics per gallery.
    The error message I get is "a response was not received in time".
    I was using the trial version of LR3 before buying but was told they could not help me unless I'd bought the software.  VERY helpful and not exactly great PR!!  As I was desperate with waiting clients I bought the upgrade anyway.  That was a week ago.
    I have spent 1.5 hours on the phone to the US LR support and as long with UK support (US was way better).
    I have had return calls from LR and a promise to hear back from the engineers as the problem was escalated.  That was nearly a week ago and I've not heard a word.
    I am using a brand new iMac bought on 22 July and haven't done anything other than try to process and upload these 3 galleries so have huge amounts of memory available.
    I have unlimited web space.
    I have uninstalled and reinstalled LR twice.
    My 8 year old pc can upload the galleries fine (although soooo slowly as it is inadequate for this type of work), so there is no connection problem.
    As a work around I exported the galleries to the desktop and uploaded using 5 different FTP programmes.  Filezilla seems to work best, but although the gallery uploads, not all the pictures appear properly - normally 10 - 20 pics are a problem.  Even though they appear to have uploaded, only the thumbnail shows, not the large image.  It is not the pics as if I reload a gallery it will be different pics that fail to show correctly each time - totally random.
    I have been able to upload a gallery through LR of between 1 and 5 pics, but no more than 5 (proving the settings are fine), until today.
    Today I managed to upload over 400 pics using an html gallery. 
    Next I tried uploading 50 in a flash gallery and this also worked, so I tried to upload 1 of my 3 complete galleries.
    The first attempt resulted in an "unknown error message" - believe it or not I was quite hopeful as at least it was a different error message.
    The second attempt resulting in "a file was truncated during upload"  Never seen that one before.
    The third attempt resulted in my now familiar error message of "a response was not received in time"
    Desperate for help please.

    JaneNeedsHelp7 wrote:
    I don't understand why it works fine with a PC - have tested with 3, 2 of which are seriously old - but not with my brand new iMac.  I thought that getting whiz bang machine I'd have fewer hassles. 
    In my experience, it is the wizz bang machines which always seem to have the problems! I must admit to sticking with my desktop (a Windows machine) rather than my Laptop (a MAC) when doing FTP transfers using LR as certainly with LR 2 the FTP in LR on the MAC did seem to have some hiccups. Perhaps using a separate FTP to upload the site is the best solution for the time being although the other problems you report don't seem to directly relate to the FTP. There were some more detailed postings in the past from MAC users on this issue and some about the BIN file problem on windows servers, so a search may help.

  • Illustrator Launch Error: Windows registry was not in the expected state.

    Hi All,
    I just upgraded to CS3 Design Premium, and I'm I'm getting the following error when I launch Illustrator:
    "The Windows registry was not in the expected state. PLease run the Illustrator installer to correct this problem. Illustrator will continue to run, but may not operate properly."
    I'm running Vista Ultimate x64 on a dual Xeon workstation with 4GB of RAM. I found the following article in the knowledgebase, but it did not solve the problem:
    http://www.adobe.com/go/kb401602
    I have also uninstalled CS2, reinstalled CS3 and reinstalled CS3 *again*.
    Illustrator does run, but it's slow and unstable. Any thoughts on what's going on and what I can do to fix it? Many thanks!
    --Jim.

    Hello, any solution on this problem? I've got the problem with Illustrator CS3, XP where I get the registry error at startup and I can't open any .ai files on my computer from explorer. I can open the files by opening from Illustrator. Here's my registry entry:
    Registry key not found: .ai
    Expected string: Adobe.Illustrator.13
    Registry key not found: .eps
    Expected string: Adobe.Illustrator.EPS
    Registry key not found: .hyp
    Expected string: Adobe.Illustrator.Hyphen
    Registry key not found: Adobe.Illustrator.Hyphen
    Expected string: Adobe Illustrator Hyphenation Dictionary
    Registry key not found: Adobe.Illustrator.Hyphen\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,4
    Registry key not found: .aip
    Expected string: Adobe.Illustrator.Plugin
    Registry key not found: Adobe.Illustrator.Plugin
    Expected string: Adobe Illustrator Plugin
    Registry key not found: Adobe.Illustrator.Plugin\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,5
    Registry key not found: .flt
    Expected string: Adobe.Illustrator.Filter
    Registry key not found: Adobe.Illustrator.Filter
    Expected string: Adobe Illustrator Filter
    Registry key not found: Adobe.Illustrator.Filter\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,6
    Registry key not found: .dct
    Expected string: Adobe.Illustrator.Dictionary
    Registry key not found: Adobe.Illustrator.Dictionary
    Expected string: Adobe Illustrator Spelling Dictionary
    Registry key not found: Adobe.Illustrator.Dictionary\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,7
    Registry key not found: .sbx
    Expected string: Adobe.Illustrator.Tsume
    Registry key not found: Adobe.Illustrator.Tsume
    Expected string: Adobe Illustrator Tsume File
    Registry key not found: Adobe.Illustrator.Tsume\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,8
    Registry key not found: .aia
    Expected string: Adobe.Illustrator.Action
    Registry key not found: Adobe.Illustrator.Action
    Expected string: Adobe Illustrator Action File
    Registry key not found: Adobe.Illustrator.Action\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,10
    Registry key validated: .ase
    Registry key validated: Adobe.Illustrator.SwatchExchange
    Registry key validated: Adobe.Illustrator.SwatchExchange\DefaultIcon
    Registry key validated: .acb
    Registry key validated: .acbl
    Registry key validated: Adobe.Illustrator.ColorBook
    Registry key validated: Adobe.Illustrator.ColorBook\DefaultIcon
    Registry key validated: .8bf
    Registry key validated: .8bi
    Registry key validated: Adobe.Photoshop.Plugin
    Registry key validated: Adobe.Photoshop.Plugin\DefaultIcon
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\ProgID
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\VersionIndependentProgID
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\LocalServer32
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\InProcHandler
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\InProcHandler32
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\verb
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\verb\-3
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\verb\-2
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\verb\-1
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\verb\0
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\AuxUserType
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\AuxUserType\2
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\AuxUserType\3
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\MiscStatus
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\MiscStatus\4
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\Insertable
    Registry key validated: CLSID\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\
    Registry key validated: Adobe.Illustrator.13\CLSID
    Registry key validated: Adobe.Illustrator.13\Insertable
    Registry key validated: Adobe.Illustrator.13\.ai\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.eps\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.prf\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.hyp\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.aip\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.flt\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.dct\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.sbx\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.8bf\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.8bi\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.aia\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\.ase\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\DefaultIcon
    Registry key validated: Adobe.Illustrator.13\shell
    Registry key validated: Adobe.Illustrator.13\shell\open
    Registry key validated: Adobe.Illustrator.13\shell\open\command
    Registry key validated: Adobe.Illustrator.13\shell\print\command
    Registry key validated: Adobe.Illustrator.13\shell\edit\command
    Registry key validated: Adobe.Illustrator.13\shell\edit
    Registry key not found: Adobe.Illustrator.EPS\
    Expected string: Encapsulated PostScript
    Registry key not found: Adobe.Illustrator.EPS\CLSID
    Expected string: {CFE97CDD-836F-4c78-B6B7-A36DD433892E}
    Registry key not found: Adobe.Illustrator.EPS\Insertable
    Expected string:
    Registry key not found: Adobe.Illustrator.EPS\DefaultIcon
    Expected string: C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe,2
    Registry key not found: Adobe.Illustrator.EPS\shell
    Expected string:
    Registry key not found: Adobe.Illustrator.EPS\shell\open
    Expected string:
    Registry key not found: Adobe.Illustrator.EPS\shell\open\command
    Expected string: "C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe" "%1"
    Registry key not found: Adobe.Illustrator.EPS\shell\print\command
    Expected string: "C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Contents\Windows\Illustrator.exe" /p "%1"
    Registry key validated: Adobe.Illustrator.EPS\shell\edit\command
    Registry key validated: Adobe.Illustrator.EPS\shell\edit
    Registry key not found: Adobe.Illustrator\
    Expected string: Adobe Illustrator Artwork 13.0
    Registry key not found: Adobe.Illustrator\CLSID
    Expected string: {CFE97CDD-836F-4c78-B6B7-A36DD433892E}
    Registry key not found: Adobe.Illustrator\CurVer
    Expected string: Adobe.Illustrator.13
    Registry key validated: Adobe.Illustrator.13\protocol
    Registry key validated: Adobe.Illustrator.13\protocol\StdFileEditing
    Registry key validated: Adobe.Illustrator.13\protocol\StdFileEditing\server
    Registry key not found: Illustrator.Artwork\NotInsertable
    Expected string:
    Registry key validated: FileType\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}
    Registry key validated: FileType\{CFE97CDD-836F-4c78-B6B7-A36DD433892E}\0
    OK: Key not found as expected: Adobe.Illustrator.7\shellex\IconHandler
    OK: Key not found as expected: Adobe.Illustrator.7\shellex\PropertySheetHandlers\AIPage
    OK: Key not found as expected: Adobe.Illustrator.7\shellex\PropertySheetHandlers
    OK: Key not found as expected: Adobe.Illustrator.7\shellex
    OK: Key not found as expected: CLSID\{697EE7C0-334C-11D0-B826-0020AF

  • Trouble adding a web url link to an existing file: 1046: Type was not found or was not a compile-time constant:

    Hi There,
    We're trying to add a simple link to an existing Flash file. There looks to be at least 7 separate .as files and a separate swf that loads the main swf which all seems overly complex for what is essentially a page with six buttons on it.
    However, we need to add a URL to some of the text. So we converted the text to a button, added an instance name of <ssbpurchasetickets_btn> then added the following Actionscript into the actions layer on the frame the text/button appears:
    ssbpurchasetickets_btn.addEventListener(MouseEvent.CLICK, ssbButtonPurchase);
    function ssbButtonPurchase(event:MouseEvent):void
    navigateToURL(new URLRequest("http://www.url.com/tickets.html"));
    When we publish the file we get the following error which seems to cascade into a whole bunch more errors:
    Description: 1046: Type was not found or was not a compile-time constant: MouseEvent.
    Source: function ssbButtonPurchase(event:MouseEvent):void
    We added "ssb" onto the button and functions to ensure there were no conflicts but the same thing occurred. If we copy the button into a new file everything works so it must be conflicting with something in the main files.
    Any help would be MUCH appreciated!!!!
    Cheers

    Thanks for the reply Ned,
    The file is set to use AS3 and I'm pretty sure the original should be set to AS3 as the .as files look like AS3 syntax to me - here's a sample:
    protected function handleWwrdButtonClick(e:ButtonEvent):void {
    Browser.open(globalVar.xml.wwrd.item[0].@url, globalVar.xml.wwrd.item[0].@target);
    OmnitureTracker.trackFeaturedContentClick('http://www.url.com/movies/international', 'wwrd_button');
    timer.stop();
    timer.removeEventListener(TimerEvent.TIMER, onTimer);
    I'm wondering if all the Actionscript has be placed into one of the .as files as there isn't any Actionscript in the Flash project - a part from the odd stop()
    Really stuck on this one (I'm not an expert at all) so any help in deciphering the project would be much appreciated.
    Cheers

  • 1046: Type was not found or was not a compile-time constant: Event.

    I am more than a little frustrated.  I'm using Flash Professional CS5.5, attempting to publish ActionScript 3.0 for FlashPlayer 10.2
    My code begins with:
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.KeyboardEvent;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    Then much later I have:
    teamFourCar_mc.addEventListener(Event.ENTER_FRAME, trackPosition);
    function trackPosition (event:Event)
    and I keep getting a compiler error:
    Scene 1, Layer 'actions', Frame 1, Line 434
    1046: Type was not found or was not a compile-time constant: Event.
    I have imported the class "Events".  I have successfully used the same construction in other scripts... in fact, virtually the same construction is included in Code Snippets as Fade In and Fade Out.  Adding ":void" after (event:Event) makes no difference.  I have Googled - to no avail - and spent the better part of a day reading through the on-line help files, but the solution is still eluding me.
    It's probably so simple I'm going to smack myself in the forehead and mutter "Duh!" when I find a solution...
    If you can do anything to hasten that event (no pun intended) I (with the possible exception of my forehead) will be very grateful.
    TIA
    Terry

    Sinious:
    The entire code of the main movie clip is at http://pastebin.com/JYfLUhh1
    A sample of one of the four "problem" movie clips is at http://pastebin.com/gQGDyngx
    There is nothing wrong with the "problem" clip.  The problems are in the main movie clip:
    Scene 1, Layer 'actions', Frame 1, Line 427
    1046: Type was not found or was not a compile-time constant: Event.
    Scene 1, Layer 'actions', Frame 1, Line 612
    1046: Type was not found or was not a compile-time constant: Event.
    Scene 1, Layer 'actions', Frame 1, Line 1819
    1046: Type was not found or was not a compile-time constant: Event.
    There are the only three occurrences of a function with (event:Event).  Two are ENTER_FRAME (427 & 1819) The other is COMPLETE from Loader.info
    Auto format reported a syntax error "near 'if(movingCar.currentFrame == (dieRoll * 24) + movingCarPosition)' " but I can't detect what, if anything, is wrong with it.
    I'm not an experienced developer... in fact, the last programming I did before taking up Flash three months ago was with QuickBasic under DOS 6.2... therefore, please try not to roll your eyes too much when you see how inelegant the code is.
    I have a working version, but it's over 7,000 lines and a memory hog.  I'm trying to make it more elegant and more efficient.  BTW, the three (event:Event) functions are in the working version in more or less the same places, with the same calling code.
    I hope you can figure it out.
    Thank you in advance

  • I was not given the option to purchase applecare + with iPhone 5.I tried calling Apple customer service, the automated process took my info but then came back and said too busy to help you now. How can I buy it now?

    I was not given the option to purchase applecare + with iPhone 5.I tried calling Apple customer service, the automated process took my info but then came back and said too busy to help you now. How can I buy it now?

    You should call Apple but you should get an email from Apple. I got one a few minutes ago and this is what they said about AppleCare+ :
    Thank you for your recent iPhone 5 purchase at the Apple Store.
    We would like to let you know that every iPhone comes with one year of hardware repair coverage through its limited warranty and up to 90 days of complimentary support. AppleCare+ for iPhone extends your coverage to two years from the original purchase date of your iPhone and adds up to two incidents of accidental damage coverage, each subject to a $49 service fee.
    We noticed you weren't given the opportunity to add AppleCare+ to your iPhone. If you would like to extend your coverage for only $99, please reply to this email by September 21st.
    After that date, if you would still like to purchase AppleCare+ within the first thirty days of receiving your iPhone, you can call AppleCare at 800-MY-IPHONE or visit an Apple Retail Store.
    Thank you for shopping with Apple.
    Sincerely,
    Apple Online Store Team

  • I have mi new ipad screen broken in one corner, I was really disappointed because it was drop from about 30 cm so I was not expecting the screen to be broken, well I went to apple store in regents street in London  and I was told that I have to pay 250 po

    I have mi new ipad screen broken in one corner, I was really disappointed because it was drop from about 30 cm so I was not expecting the screen to be broken, well I went to apple store in regents street in London  and I was told that I have to pay 250 pounds for the screen replacement, it was a rip off and after many years using apple products I have expend thousands of pounds on them, I just think is  a rip off price. It will be difficult but I won't be buying any apple products anymore, I really feel like I was abuse that was half of the price of a new iPad. I have never complain in my life but this time I think apple is abusing me as a costumer.
    I'm really upset, I'm furious that apple uses his dominance in the market to Rip off costumers like me.

    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications.
    You can get the glass replaced at 3rd party repair sources for less $, however, the Apple warranty will be voided.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    Don't know if there are any 3rd party repair places in the UK.
     Cheers, Tom

  • If a trackpad replacement is about $100, why am I forced to buy an entire board?  I was not told the entire board was a single unit when I bought it.

    If a trackpad replacement is about $100, why am I forced to buy an entire board?  I was not told the entire board was a single unit when I bought it.

    rob10010 wrote:
    Hi Clinton,
    I'm aware its one unit and needs to all be replaced, but my issue is that I didnt know the computer would be similar to the macair late 2010 where an entire board needed replacing.  I never would have bought it.
    Never would have bought what? The Mac when it was new?
    rob10010 wrote:
    I just think its bad business to sell me a care policy.
    What care policy are you referring to? AppleCare?  Also, how did the trackpad get damaged?

  • HT1414 Hello, I have had to restore my iphone 4 to its factory setting as I had missed a number of updates and my computer was not recognising the device. I have now lost my contacts icon on the iphone and cannot find it even after syncing to my computer.

    Hello, I have had to restore my iphone 4 to its factory setting as I had missed a number of updates and my computer was not recognising the device. I have now lost my contacts icon on the iphone and cannot find it even after syncing to my computer.
    Would you know how to resolve this issue?
    Many thanks.
    Nilou

    I have now lost my contacts icon on the iphone and cannot find it even after syncing to my computer.
    Would you know how to resolve this issue?
    It's a pre-installed app and therefore cannot be deleted so you may have inadvertently moved it onto a screen or into a folder, check the utilities folder as this is a common one for it to disappear into.  Check all screens and folders and do a search in Spotlight, it will tell you if the app it still on your iPhone but unfortunately not where it is. If you find it on one or your screens or in a folder, press the icon until it wiggles and then drag it back to where you want it.  Alternatively you can reset your home screen in Settings>General>Reset>Reset Home Screen Layout.

  • Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    And Apple won't tell you. All they will tell you is what countries are supported for LTE right now. You can express your interest to Apple via their feedback pages, if you wish:
    http://www.apple.com/feedback/iphone.html
    but you will not receive a reply. It may be waiting on Telcel to approve. They may not feel that their LTE network is robust enough to handle that much load yet. But I'm just guessing. We'll just have to wait and see what develops.
    Regads.

Maybe you are looking for

  • Unable to remove a video

    I am unable to remove a video from my iPhone when I sync it using iTunes.  The video is unchecked in iTunes and I have even gone so far as to delete it from my iTunes library.

  • Bulk Load option doesn't work

    Hi Experts, I am trying to load data to HFM using Bulk load option but it doesnt work. When I Change the option to SQL insert, the loading is successful. The logs say that the temp file is missing. But when I go to the lspecified location , I see the

  • Suddenly ipad not recognised on windows xp

    weird, been using IPAD, IPOD and Iphone connected to my laptop (windows XP) and now itunes doe snot recognise them at all. been through usual checks and Itunes is working fine in all things apart from external device recognition!!!

  • Suspicious Activity?

    I was checking my Yahoo mail (On the website) for the first time in like forever and it said i had an email from Facebook saying "antonio, you have notifications" or something like that... but the thing is i don't have a Facebook nor is my name anton

  • Operator IN and variable string

    Hello, I have this sentence sql (it is a example): select p.pa_cod_proyecto, p.pa_tit_proyecto from spa_pa.pa_proyecto p, spa_pa.pa_rel_proyecto_persona rel and rel.pa_cod_proyecto (+)= p.pa_cod_proyecto and (rel.pa_prlogin in (:p21_participantes)) w