Packaging of code...

I try so to make an XMLSocket package, but when I move my time line functions to my package, socket listeners cease to operate. Someone at - he ever heard of this before? I'm terrible with classes, so I don't know that it's something stupid that I do...

This can be an integral part of trying to get access to the main timeline which will be included in the package, I had to extend MovieClip and addChild socketUtils on stage to be actually able to reach children on the main timeline.

In my main code, I do:

include NetworkSocketUtils;

socketUtils = new NetworkSocketUtils();
addChild(socketUtils); // only way I could access the main timeline from within the package

// Do stuff with sockets, like on drag, call socketUtils.nwSendUpdate with the object's x, y coords, current frame and visibility.

In the NetworkSocketUtils package, I have something like...

package {
  import flash.events.*;
  import flash.media.*;
  import flash.utils.*;
  import flash.display.*;
  import flash.text.*;
  import flash.net.XMLSocket;

  public class NetworkSocketUtils extends MovieClip {
  //////////// Global Variables /////////////

  // Network definitions
  public var hostName:String = "domain.com";
  public var port:uint = 8080;
  public var socket:XMLSocket;
 
  // The root of the stage we're on
  var stageRoot:MovieClip;
 
  // Init the class
  public function NetworkSocketUtils() {
     //trace("Initing network sockets?");
     this.addEventListener(Event.ADDED_TO_STAGE, stageInitHandler);
  }

  // Initialize a new socket, add the listeners 
  // for it and try to open a connection
  public function stageInitHandler( e:Event ) {
       this.removeEventListener(Event.ADDED_TO_STAGE, stageInitHandler);
       // BE SURE TO addChild(socketUtils) IN YOUR MAIN TIMELINE FOR THIS TO WORK RIGHT!!!)
       stageRoot = MovieClip(root);
       socket = new XMLSocket();
       configureListeners(socket); 
       if (hostName && port) {
            socket.connect(hostName, port);     
            trace( "Socket connected" );
       }
  }
  private function configureListeners(dispatcher:IEventDispatcher):void {
       dispatcher.addEventListener(Event.CLOSE, doSocketEvents);
       dispatcher.addEventListener(Event.CONNECT, doSocketEvents);
       dispatcher.addEventListener(DataEvent.DATA, doSocketEvents);
       dispatcher.addEventListener(IOErrorEvent.IO_ERROR, doSocketEvents);
       dispatcher.addEventListener(ProgressEvent.PROGRESS, doSocketEvents);
       dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, doSocketEvents);
       trace("Added socket listeners");
  }

     private function doSocketEvents(e:Event):void {
       switch( e.type ) {
            case Event.CLOSE:
                 trace("closeHandler: " + e);
            break;
            case Event.CONNECT:
                 trace("connectHandler: " + e);
            break;
            case DataEvent.DATA:
                 trace("dataHandler: " + e);
                 //socketUtils.nwReceiveUpdate( XML(DataEvent(e).data) );
            break;
            case IOErrorEvent.IO_ERROR:
                 trace("ioErrorHandler: " + e);
            break;
            case ProgressEvent.PROGRESS:
                 trace("progressHandler loaded:"+ e);
            break;
            case SecurityErrorEvent.SECURITY_ERROR:
                 trace("securityErrorHandler: " + e);
            break;
       }
    }
} // class
} // pkg

Socket code works as expected, but none of the listeners are activate, so no update happens. (IE never see connectHandler, dataHandler, etc. pop up in the traces, although if an item is selected in the page, it sends a message to the server.

Thanks in advance,

Eric.

use:

  1. private void doSocketEvents(e:Event):void {}
  2. trace ('dosockets', e.type);
  3. Switch (e.type) {}

to see if you connect again.

Tags: Adobe Animate

Similar Questions

  • Package call Code bad schema

    People

    I have a weird problem that has started to happen last week.

    There is a package in the scheme A, B and C with identical specifications, but a different code in the body - allows you to call this P1 package

    In Figure A, there are various pieces of code in several packages that call procedures in package P1.

    Schema B, there are also several pieces of code that calls its own version of the package P1

    In diagram C, there are also several pieces of code that calls its own version of the package P1

    However, last week, code in diagrams B and C started calling package P1 in the scheme A (rather than code in the scheme call B B schema have P1 and code in call scheme C P1 of the own C).

    Scheme A, B and C have access to all of each and other objects for various other reasons, and I'm not able to rename the package P1 have a unique name in each of the schemas without open heart surgery serious over large parts of the system.

    I checked the evidence that there is no public or private synonyms anywhere in the instance for package P1

    The system is open to several development teams and it is not entirely impossible that someone has made a change with this unintended consequence.

    Can someone suggest something else to check?

    Alan

    > 10.2.0.3 was released well before 11.2.0.3, it is highly unlikely that this specific metalink note is applicable.

    Yes, I quite agree with your reasoning, however very similar bugs exist in versions 10g to 11g, there are a number of remarks on the subject, where my comment "you can find more if you look for them.

    See for example 10165083, 13080778 bugs, the latter always seems to affect some 11.2.0.3 patchsets.

  • App packaging and Code-signing (Flash Builder Burrito)

    Hi guys,.

    I would like to know if the function "export version Release" (the tab Flash Builder project in the top menu) does not work correctly or if I should use the command line for the packaging. I see that my .bar includes the META-INF / "MANIFEST. MF' it's supposed to get generated only after the signature of the app.

    Thank you

    Hi daniel,.

    Yes, you should always use the tools of command line to package and sign your applications. There is a bug in the IDE that prevents it to properly sign the app here is a thread that can help you with the signature of the command line:

    http://supportforums.BlackBerry.com/T5/Tablet-OS-SDK-for-Adobe-Air/useful-tip-package-images-via-com...

    Good luck!

  • Package Exchange code not valid?

    I just bought Adobe Acrobat Standard XI 30 minutes ago and I am trying to enter code redemption on the adobe Web site.  I between it and the site indicates that it is not valid.  What should I do now?

    You must contact Adobe Support by chat or phone when you have the serial number and activation problems.

    Here are some links to help get in touch:

    http://www.Adobe.com/support/chat/ivrchat.html

    http://www.Adobe.com/support/download-install/supportinfo/

    If your identity name has something to do with the code you speak you should change it immediately.  Anyone could consider and make their.

  • String panipulation - rename the package name in the source code.

    I want to do the replacement string as below:
    select 'CREATE OR REPLACE PACKAGE CollectStats IS
      PROCEDURE save_log(p_logrec IN LiveStatsLog%ROWTYPE);
      PROCEDURE UpdateLiveGamesHourlyStats;
      PROCEDURE UpdateSideGamesHourlyStats;
      PROCEDURE UpdateConcurrentPlayerStats;
      PROCEDURE CollectStats;
    END CollectStats;' from dual;
    
    -->
    
    select 'CREATE OR REPLACE PACKAGE CollectStats_20100810 IS
      PROCEDURE save_log(p_logrec IN LiveStatsLog%ROWTYPE);
      PROCEDURE UpdateLiveGamesHourlyStats;
      PROCEDURE UpdateSideGamesHourlyStats;
      PROCEDURE UpdateConcurrentPlayerStats;
      PROCEDURE CollectStats;
    END CollectStats_20100810;' from dual;
    The point is to rename the name of the package in the Package source code, in the first and the last line of the source code.
    This is only an example package. The query must sort the replacement of the chain so that the result would be, as shown in a package with a different name.
    Note that name of the package, and a procedure within the source code of the package are the same - see "PROCÉDURE CollectStats;".

    Somehow the replacement of the regular expression should be used.

    Published by: CharlesRoos on August 11, 2010 03:31

    Try this:

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 'CREATE OR REPLACE PACKAGE BODY "XXX"."COLLECTSTATS" IS....
      2  PROCEDURE CollectStats IS
      3    BEGIN
      4      UpdateLiveGamesHourlyStats;
      5     UpdateSideGamesHourlyStats;
      6      UpdateConcurrentPlayerStats;
      7    END CollectStats;
      8  END CollectStats;
      9  /' body from dual)
     10  SELECT REPLACE(REPLACE(body,'BODY "XXX"."COLLECTSTATS"','BODY "XXX"."COLLECTSTATS_20100811"'),
     11         'END CollectStats;'||CHR(10)||'/','END CollectStats_20100811;'||CHR(10)||'/') body
     12* from t
    SQL> /
    
    BODY
    ----------------------------------------------------------------------------------------------------
    CREATE OR REPLACE PACKAGE BODY "XXX"."COLLECTSTATS_20100811" IS....
    PROCEDURE CollectStats IS
      BEGIN
        UpdateLiveGamesHourlyStats;
            UpdateSideGamesHourlyStats;
        UpdateConcurrentPlayerStats;
      END CollectStats;
    END CollectStats_20100811;
    /
    
    SQL> 
    
  • Error code 0 x 80091007, I can't download updates

    I've been dealing with not being able to download the updates for a long time, have tried to use troubleshooting etc. without help.

    Update Software Installation fails with error 0 x 80091007

    Before a Configuration Manager 2007 client can install software updates, it checks the hash of the content that contains the software update. If the hash does not match, the client is unable to install the updated software and set error 0 x 80091007 to the updatesdeployment.log on the client. The error is also sent to the management point and is visible in the reports in respect of the software - updated e. troubleshootingcategory.

    This issue is often caused by the presence of the wrong version of the package on the distribution point. Often, this problem occurs when the content has not been replicated to a child site or the version of the package has changed, but the client has not yet received new policy.

    Possible solution

    In the Configuration Manager 2007 console, navigate to System Center Configuration Manager / Site database / computer management / software updates / deployment Packages / / status / package status / <> code > and look at the source code for the package version. Ensure that all distribution points use the same version of the source, including on the child site distribution points. You can also check distmgr.log for all errors that refer to the ID of the package.

    MCSE, MCSA, MCDST [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

  • Error msi solution Center #2732 for Windows Installation Package

    I get a window with the Solution Center msi above error message.  I have a Dell w/Microsoft Windows XP computer.  How can I get rid of him?  This happened for weeks & I'd like to fix or disable it.  I went into the center of Solution & tried to remove this package to install a windows but the computer will not let me.  He said that it is a read only file on a CD.  I don't know what he's talking about.

    Thank you

    http://www.JustAnswer.com/computer/2tma4-Solution-Center-installer-problem-package-error-code.html

    I searched on Bing for your error msg. Maybe the link above will help you.

  • Windows 8024402F Windows Update error code encountered an unknown error

    original title: Windows Update always in error Code 8024402F Windows Update encountered an unknown error even after freshly installed (Win7 Professional x 32 and x 64)

    Hello

    I recently installed Windows 7 (new installation). Previously, I was using Windows Vista and everything worked OK.

    I've upgraded to Windows 7 Pro 32 bit x (using the downloadable version), installed various software and every time I tried to update via Windows update, I get the error Windows could not search for new updates: an error occurred when the new updates for your computer. Error (s) found: Code 8024402F Windows Update encountered an unknown error.

    I clicked on "Get help with this error" and used the Troubleshoot Utility "Windows Update", but could not find the error.

    A week later, the problem still persisted and decided to re-download the whole windows 7 but this time by downloading the ISO version and installing the x 64 one. As soon as he performed the installation (no other software installed same antivirus), I immediately tried run Windows Update. I had the same error message. Tried to do the 'Windows Update troubleshooting"without success.

    It also could be related. In both facilities, I tried to configure Windows Media Center. When he tried to install PlayReady, it gave me the error: an error occurred when downloading the installation package (error code: 0 x 80240022). When I ignore that, the next step (downloading TV setup data) stops with a a small point in the progress bar - even after half an hour.

    Yet once, I used to use Windows Vista and it updated fine without any problem. In my installation of Windows 7, I am able to connect to the network, surf the internet, download files and use various software (for example, Yahoo Messenger, Skype, Kaspersky Antivirus that updates very well).

    Hope you can help.

    Thank you!

    Kind regards
    Jay

    @Uma R - technical support from Microsoft.

    Thank you for your information.

    In fact, I was about to inform of a work around that worked for me, all that was necessary was to disable the Windows Firewall.

    Of course that's not a definitive solution because it is obviously not a good idea to disable the firewall when downloading, also after I turn it back on I guess that automatic updates will be blocked again. A message indicating that the automatic updates were blocked was what first caught my attention on the problem.

    I would say that someone on this forum who is in contact with the appropriate Microsoft group must pass this correction to be organized information. Now that I can download updates, I should be able to install it.  :-)

    Concerning

    Ken

  • upgrade license CS6 codes.

    Hello

    I would like to know if a upgrade license code is different from the full package license code?

    Basically, I initially had photoshop 7, then upgraded to cs3, and then upgraded to cs6. I get a new machine and would like to know if I need to go through the installation process 7, cs3 and cs6 upgrades using disks, or I can just downlaod cs6 and use my code to upgrade license cs6?

    I hope that makes sense.

    Thank you.

    j

    When you activate CS6 with an upgrade serial number, it will ask for previous qualifying serial number, you must enter regardless of the fact that it is installed in the machine or not.

    Error: "this serial number is not for a product calling it" | CS6, CS5.5, CS5

    Find the serial number of your Adobe product quickly

    Concerning

  • Availability of packaged Applications Oracle Apex

    Nobody knows when the packaged Applications Oracle Apex will be available again to the page dedicated to the
    http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/packaged-apps-090453.html says simply:
    "Previous applications packaged and code examples have been removed and new applications are being developed."

    I could really do with a copy of the application to the time sheet to use as a base, still an old version of it and not really care too much about all the bugs reported in it.
    If anyone knows where I can get a copy, I'd appreciate it.

    Why was it necessary to remove the old packaged Applications, why not let them available until new ones have been developed.

    MILIN
    Send your email address in texas. Apex. Developer @ gmail. com and I can send along a copy of the application to the timesheet...

    Thank you

    Tony Miller
    Webster, TX

    Time passes fast like the wind, but the flies from fruits such as bananas.

    If you answer this question, please mark the thread as closed and give points where won...

  • Problem with the packages

    Hello friends

    I am facing a problem with the creation of Packages.
    I am running Oracle 10 g on my side.

    I have an alias defined in my system which is having two accounts, lets say it is A and the other is B.

    I have two packages running on a single account. Now what I did, I tried to reproduce the two packages on the other account that is B I have functions defined in both packages.

    What I see, it's one of the packages is now properly respected (Spec & body). But I am facing the problem with the other.

    The problem is

    "PLS-00302 of the body: component 'get_segment' must be declared '.

    Here's a function "get_segment".

    If someone see what would attribute the possible with these packages, maybe I missed something.

    Thanks in advance :)

    user12280955 wrote:
    No, I am what you say...

    in fact, I just copied the source of the original schema packets and executed in the second diagram.

    Actually I m using Toad who had perfect where I can replicate packages from a pattern of other schemes. I used.

    I don't use Toad, so can't help you there...

    Apart from that, I have a dump (.dmp) for the two schemas. I'd get a decrypted version of the package source code from there.

    No, you can't.

    If not where can I get a simplified version of the package source code?

    If you do not have it in a separate file, so you do not have it. Ask the creator of the package to give you no packaged version.

  • Use screws of no class within the class

    I guess that it is a theory of the question of the OBJECT-oriented programming.

    Say that I have 2 classes, 1 is used to adjust the tension on a diet and another is used to update a user interface.  They are not really related to all that there is no common parent class and there is essentially no relationship between them.

    Now I write a Subvi, which is a kind of random number generator specialist.  What happens if I want to use this VI in a method of each of the two classes above, I created.  Where this Subvi belongs?

    I see the following options, but I don't know who should be.  I'd really like to hear your suggestions because it was bugs me for some time:

    (1) create a method in each class that has the functionality of random number generator.  I don't like this idea because I'll be duplicating code.

    (2) simply choose store the VI as part of my project and does not include it in classes.  I don't like this, it's that if I decide to reuse my code/class in another project, I need copy screws that are not part of my class with her.

    (3) create a kind of "utility" class which should contain all these various screws and then use the methods of this class.  I could pass an object of that class of utilities in each class so I would have access to methods.  But this seems to be quite complicated.

    So that is the dilemma.  I wonder how you chose to resolve this problem.  Thank you!

    Create a library for reuse.  I recommend looking in the VI package manager.  You can create "packages" of code reuse and 'install' in each version of LabVIEW.  Then everyone can use them since they are in a nice place.

  • SQL Server 2005 unattended install using the script fails on Windows 2003 Cluster

    We strive to perform the installation without SQL Server 2005 via the script assistance, but the installation fails on Windows 2003 Cluster, we use Windows 2008 with HyperV running a DC with two nodes (all Win 2003). Script is...

    Start/wait setup.exe/qb VS = INSTALLVS SQLTEST = SQL_Engine INSTANCENAME = SQL123 ADDLOCAL = SQL_Engine ADDNODE = sqlnode-1, sqlnode-2 GROUP = SQL1 IP = 192.168.1.85, SQLNetwork ADMINPASSWORD = Windows8! SAPWD = Windows8! INSTALLSQLDIR=%ProgramFiles%\Microsoft SQL Server\ INSTALLSQLDATADIR = G:\SQLDATADIR\ SQLACCOUNT = SQLPASSWORD lab\sql_svc = Windows8! AGTACCOUNT = lab\sql_svc = Windows8 AGTPASSWORD! SQLBROWSERACCOUNT = SQLBROWSERPASSWORD = Windows8 lab\sql_svc! SQLCLUSTERGROUP = "lab\sql_grp" AGTCLUSTERGROUP = "lab\sql_grp" FTSCLUSTERGROUP = "lab\sql_grp" ERRORREPORTING = 1 SQMREPORTING = 1 SQLCOLLATION = SQL_Latin1_General_CP1_CI_AS

    Errors on the nodes:

    SQLSetup0008_SQLNODE1_Core (Local)

     Running: InstallSqlAction to the: 4/14/2012 22:56:39

    Installation: sql on target: SQLNODE1

    Waiting for remote setup (s) to prepare

    Remote Setup (s) is ready

    Problem of determining the State of the virtual server for the package: '1' because of the exception of data store:

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: CachedPropertyCollection::findProperty

    The source line number: 63

    ----------------------------------------------------------

    Could not find the property 'VsDataPath' {'PackageIdStateScope', ' ', '1'} in the cache.

    Source the name of the file: datastore\packageidstatescopecollector.cpp

    Compiler timestamp: Wed Aug 24 13:40:04 2005

    Function name: PackageIdStateScopeCollector::collectProperty

    The source line number: 115

    ----------------------------------------------------------

    dataPathValue is empty

    Cluster functionality detected: SQL_Engine

    Loaded DLL:C:\Program SQL Server\90\Setup Bootstrap\sqlsval.dll Version: 2005.90.1399.0

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: CachedPropertyCollection::findProperty

    The source line number: 130

    ----------------------------------------------------------

    Unable to find property 'IPResources' {"VirtualServerInfo", "", "SQLTEST"} in the cache

    Source the name of the file: datastore\cachedpropertycollection.cpp

    Compiler timestamp: Fri 29 Jul 01:13:49 2005

    Function name: VirtualServerInfo.IPResources

    The source line number: 113

    ----------------------------------------------------------

    Could not collect the property 'IPResources' {"VirtualServerInfo", "", "SQLTEST"}

    Transact package threw an exception.

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\highlyavailablepackage.cpp

    Compiler timestamp: Mon Aug 29 01:18:42 2005

    Function name: sqls::HighlyAvailablePackage:manageVsResources

    The source line number: 490

    ---- Context -----------------------------------------------

    SQLs::HighlyAvailablePackage:preInstall

    SQLs::HighlyAvailablePackage:manageVsResources

    m_dataDirPath is empty

    Cluster API threw an exception during operations of virtualization.

    Package first notify: 13

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\highlyavailablepackage.cpp

    Compiler timestamp: Mon Aug 29 01:18:42 2005

    Function name: sqls::HighlyAvailablePackage:manageVsResources

    The source line number: 490

    ---- Context -----------------------------------------------

    SQLs::HighlyAvailablePackage:preInstall

    SQLs::HighlyAvailablePackage:manageVsResources

    m_dataDirPath is empty

    Cluster API threw an exception during operations of virtualization.

    SQLSetup0008_SQLNODE2_Core (Local)

     

    Local configuration can complement

    Running: InstallSqlAction at: 4/2012/14 23:23:57

    Installation: sql on target: SQLNODE2

    Informs the package is ready to start: 0

    Waiting for notification start installation

    Local configuration can begin installation

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: remotepackageengine\remotepackageinstallersynch.cpp

    Compiler timestamp: Wed Aug 24 13:40:17 2005

    Function name: sqls::RemotePackageInstallerSynch:preInstall

    The source line number: 128

    ---- Context -----------------------------------------------

    SQLs::InstallPackageAction: perform

    SQLs::RemotePackageInstallerSynch:preInstall

    Abandonment of the package: "sql", due to an error from the configuration of the host: 13

    Notify all ready to commit: 13

    Notify all ready to put end to: 13

    Waiting for notification complete installation

    Local configuration can complement

    Packaging return code: 13

    Complete: InstallSqlAction at: 4/2012/14 23:23:59, returned false

    Error: The 'InstallSqlAction' Action failed during execution.  Error during execution information:

    Target collection includes the local machine.

    -----------------------------------------------

    Error: The 'UninstallForRS2000Action' Action failed during execution.  Error during execution information:

    Action: "UninstallForRS2000Action" will be marked as failed due to the following condition:

    The condition 'rs has been correctly upgraded level.' returned false.

    Package installation: 'patchRS2000' failed due to a precondition.

    Running: ReportChainingResults at: 4/2012/14 23:24:1

    Error: Action "ReportChainingResults" threw an exception during execution.

    One or more packages could not be installed. See logs for details of the error. : 13

    Error code: 0x8007000d (13)

    Windows error text: these data are incorrect.

    Source the name of the file: sqlchaining\sqlchainingactions.cpp

    Compiler timestamp: 1 Thu Sep 22:23:05 2005

    Name of the function: sqls::ReportChainingResults: perform

    The source line number: 3097

    Please notify.

    Assani

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums. You can follow the link to your question:

    http://TechNet.Microsoft.com/en-us/WindowsServer/bb512923

    Hope this information helps.

  • Project Explorer fails with vi (displayed as file folder)

    Hi people of LabVIEW,.

    I have a behavior very strang of the Project Explorer. (LV 8.5.1f4)

    He has a problem with one of my voluntary initiatives.

    I stripped the VI downwards until it is now empty, but the problem persists.

    (I have several projects, I use the original file, so my problem multiplies )

    When I add this VI to an empty project, one of my folders (Entwicklung) does not appear as a folder anymore but as a VI (file).

    This seems to happen in the fourth folder above the file.

    In addition: if I copy this file in a directory with less then 3 files and try to add it to a LabVIEW project crashes.

    If it's in the third case, the driverletter is Eurorest as a file.

    The software works well even in application, but this effect results, that I cannot save a project to a new location! (Even the recommended method to save it in an earlier version, and then select 8.5 as version does not work)

    I need to create a package source code for a customer the first time now, and I am unable to do so.

    (I've always said that they will be open pandoras box if they provide code source for a client, but who care about what is in my opinion I'm just a stupid engineer)

    Please someone would be so kind and try to understand what is the problem with this VI?

    I tried already and suggests it has to do with its relative path, but I do not see a possibility to access directly.

    Thanks in advance,

    Best regards

    Rainer


  • DVD - RW won't read disk 2 of the installation of the game AION (all no longer then my drive auto ejects cd)

    Hello people, I thank you advance for reading and considering my problem.
    My problem is trying to install the AION game.
    Installing the game is separated into two discs. Disk 1 installs perfectly, when you are prompted to enter the disk 2, I go into the drive, then my DVD - RW (AD - 7203A) behaves as if the bed, she starts a loop a sound treatment, all at the same time everything is unresponsive.
    I tried to install other games and they install fine, and I JUST bought this bloody game, not visible scratches or anything.
    I tried to go in my computer and my drive D:\ to explore and perhaps to copy the contents of the CD to the hard drive, right click and yet still once the GAL from the computer for a good 20-30 seconds, unresponsive, then when its over with non-response, if I try to open explore or basically do anything with the D drive (this is my dvd - rw) it automatically ejects the CD. Any thoughts? Download the game takes 7 to 9 hours, and I wanted to play as I bought earlier today... sigh help! Laughing out loud

    Hey Manoka:

    Do not know if you purchased a boxed product or digital download of Aion; in both cases, I would give the same answer.  Unfortunately, I think you have a faulty drive.  If you bought a physical copy, it could be a bad pressing or even a certain flaw surface, that you can not see.  If you burned the disc and they tried to install (don't think you would have to do what any downloaded game should install directly from your hard drive), then it could be any number of defects.

    For physical purchase: I would return the disc instead of purchase.  Most places have no problem taking software back (usually within 7 to 30 days), even if open for disk defects.  I expect that they would simply replace your copy of the product by a new one.  WARNING: most of the time, you will need to return not only the drive defective, but full product: all disks, packaging, promo codes, etc...  Be prepared to do WHAT you've got, reception included, when you try a return.

    For digital download: three options really.  (1) If you have saved on your hard disk, try to install directly from where you saved the file. (2) If you have to burn a disc, use a new blank disc and make sure that you choose the option "error checking" then the engraving; or (2) re - download it from your drive hard/burn provider and reattempt digital process.

    I did a search in the official technical support forums Aion and did not see someone else pointing out faulty disk problems.  I always recommend you take advantage of all the Aion community, as it was pretty impressive.  Here is the link: http://na.aiononline.com/forums/

    If these steps do not resolve the problem, please do not hesitate to reply to my post.

    Good luck with Aion - seems to be a very promising MMO.

    Justin

Maybe you are looking for