Preloader  #1009 error

Halo. I've been trying to load external swf  ("index.swf") with the following code in AS3:
//it's a simple preloader with one dynamic text field: "percent"
//the "index.swf" is suppose to stop at 689 frame after being loaded (this part works fine)
stop();
import flash.display.*;
import flash.net.URLRequest;
import flash.events.Event;
var l:Loader = new Loader();
l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
l.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
l.load(new URLRequest("index.swf"));
function onProgress(event:ProgressEvent):void{
   var perc:Number = event.bytesLoaded / event.bytesTotal;
   percent.text = Math.ceil(perc*100).toString();
function onComplete(event:Event):void{
   var container:MovieClip = MovieClip(l.content);
   removeChild(percent);
   percent = null;
   addChild(container);
   container.gotoAndStop(689);
Of course I receive the #1009 error : Cannot access a property or method of a null object reference. I guess it is some "stage issue" but I'm not familiar enought with AS3 to avoid the problem by my own.
Could you please help me with the code.

You were right. My idea about "stage issue" also was confirmed.
The problem was in part of the code on the first frame of the "index.swf" (file that I was trying to load):
stage.align="T";
I think that this part of the code is being executed before the "index.swf" is loaded.
Thanks for replies "kglad" and "Ned Murphy"
Regards

Similar Messages

  • XSL-1009: (Error) Attribute 'version' not found in 'HTML'

    Hi,
    I've got the following problem: oracle.xml.parserv2.XSLException
    <Line 1, Column 7>: XSL-1009: (Error) Attribute '{http://www.w3.org/1999/XSL/Transform}:version' not found in 'HTML'.
    and I wanted to know what are its origins and what to do to go around, knowing that:
    - we run a java application on an oracle 9iAS and it works fine !
    - we run the same application on an oracle web-to-go server and it gives this message on the client when trying to put
    - the mobile server 'java environment' is a little bit never (version) than the online environment, both servers (9ias an mobile) run on the same machine (mobile is never -> impact on client environment? Installs run under jre 1.3.01)
    - we have an xml document (DOM) and an .fo stylesheet (file/url), so no html for output! Where comes it from? The <xsl:output method="html"> has even been removed and tried with method="application/pdf", no change.
    - the function XSLProcessor.newXSLStylesheet raises this exception; to make it at least run on online environment, we used the .jar file from JDevelopper 9.0.2.822 (this .jar is used in JDev, on 9ias and mobile client)
    - the output file (via apache's fop) shows correctly in the online version, but fails the create/use of the stylesheet (tried stylesheet with xml data for output and a generique 'Hello World' .fo for pdf output, both fail)
    - the .fo starts with <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
    - we even tried xsl:version="1.0" and no version at all
    - the same XML parsed with an .xsl for html output works fine, in mobile, the attribute "http://www.w3.org/1999/XSL/Transform" does not show up as an error
    I guess we have a version or configuration conflict, but what exactly could it be? If you need some more version numbers, just let me know.
    Thanx very much for any help!

    Hi,
    as I wrote in the inital message, we even left out the output method or used "application/pdf". The result is unfortunately always the same. And I still claim this is not a problem with the stylesheet itself, it has to do something with the mobile's environment.
    Something I didn't tell: we have 2 servlets in our application, 1 responsible for output in html and 1 in pdf. The .fo stylesheet passed to the 'html servlet' is parsed correctly (and shows the source code, because it does not know about fo and conversion to pdf), the .xsl stylesheet passed to the 'pdf servlet' raises same exception/same line. You might tell us that there is a problem with the 'pdf servlet', but once again: why in online it is working?
    Greetings and thanx very much for your precious time!

  • XSL-1009 error

    Ok, I'm driving myself nuts with this and hoping someone can help! I've reviewed the other posts and re-checked things but it still doesn't work. Here's a simple test case:
    I have two tables. One of them is the SCOTT.EMP table. The other table is one I created; very simple two column table as follows (also in the scott schema):
    CREATE TABLE sjh_test
    sales_brand_bsnss_id VARCHAR2(10),
    xml_doc XMLTYPE
    In the xml_doc column I've stored an XSL style sheet. Here's the insert statement used, with the actual style sheet:
    insert into scott.sjh_test
    VALUES(100, sys.XMLType.createXML
    ('<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
    <html>
    <body>
    Hello there.
    <xsl:for-each select="ROWSET">
    <table border="1" cellspacing="0">
    <xsl:for-each select="ROW">
    <tr>
    <td><xsl:value-of select="EMPNO"/></td>
    <td><xsl:value-of select="ENAME"/></td>
    </tr>
    </xsl:for-each>
    </table>
    </xsl:for-each>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>'))
    All I want to do I create a simple proof of concept which grabs some data from the EMP table as an XML document, then apply the XSL style sheet and get a result--the HTML output. Here is my code. The line of code "dbms_xmlquery.setXSLT(queryCtx, theStyleSheet);" throws the XSL-1009 error. The actual error text is "ORA-29532: Java call terminated by uncaught Java exception: oracle.xml.sql.OracleXMLSQLException: XSL-1009: Attribute 'xsl:version' not found in 'ROWSET'."
    declare
    queryCtx dbms_xmlquery.ctxType;
    queryCtx2 dbms_xmlquery.ctxType;
    result clob;
    theStyleSheet clob;
    errorNum NUMBER;
    errorMsg VARCHAR2(200);
    v_more BOOLEAN := TRUE;
    begin
    queryCtx := dbms_xmlquery.newContext('SELECT empno, ename, deptno FROM emp WHERE deptno = 7369');
    queryCtx2 := dbms_xmlquery.newContext('select s.xml_doc.getClobVal() as stylesheet from scott.sjh_test s');
    theStyleSheet := dbms_xmlquery.getXML(queryCtx2);
    dbms_xmlquery.closeContext(queryCtx2);
    dbms_xmlquery.setXSLT(queryCtx, theStyleSheet); -- ERROR HAPPENS HERE!
    result := dbms_xmlquery.getXML(queryCtx);
    dbms_xmlquery.closeContext(queryCtx);
    WHILE v_more LOOP
    DBMS_OUTPUT.PUT_LINE(Substr(theStyleSheet, 1, 255));
    IF Length(theStyleSheet) > 32767 THEN
    theStyleSheet := Substr(theStyleSheet, 32768);
    ELSE
    v_more := FALSE;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(Substr(SQLERRM,1,255));
    end;
    Any ideas??
    Thanks very much, in advance.
    Scott

    Thanks for the suggestion. That gets me past that problem. It is now throwing a NullPointerException on this line:
    result := dbms_xmlquery.getXML(queryCtx);
    Here's the full code:
    begin
    queryCtx := dbms_xmlquery.newContext('SELECT empno, ename, deptno FROM emp WHERE deptno = 7369');
    select s.xml_doc.getClobVal() into theStylesheet from scott.sjh_test s;
    dbms_xmlquery.setXSLT(queryCtx, theStyleSheet);
    result := dbms_xmlquery.getXML(queryCtx); -- *** NullPointerException occurs here ***
    dbms_xmlquery.closeContext(queryCtx);
    WHILE v_more LOOP
    DBMS_OUTPUT.PUT_LINE(Substr(theStyleSheet, 1, 255));
    IF Length(theStyleSheet) > 32767 THEN
    theStyleSheet := Substr(theStyleSheet, 32768);
    ELSE
    v_more := FALSE;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(Substr(SQLERRM,1,255));
    end;
    Thanks again for the suggestion. It looks like I'm close now.
    Scott

  • 1009 Error Video in Firefox, but not IE

    Ok, I am trying to load a video and I get the 1009 error in Firefox, but not in Internet Explorer. I am wondering what is wrong with my code. Please see below. I even tried code from books and get the same error. I have to admit that I am disappointed with the latest version of Flash video.
    var myVideo:NetConnection = new NetConnection();
    myVideo.connect(null);
    var newStream:NetStream = new NetStream(myVideo);
    var videoHolder:Video = new Video(720, 480);
    stage.addChild(videoHolder);
    videoHolder.attachNetStream(newStream);
    videoHolder.x = 32;
    videoHolder.y = 60;
    videoHolder.alpha = 0;
    newStream.play("intro.flv");
    function fclickV(myevent:MouseEvent):void{
        gotoAndStop(forwardFrame);   
        stage.removeChild(videoHolder);
        my_ns.close()
    function bclickV(myevent:MouseEvent):void{
        gotoAndStop(backFrame);   
        stage.removeChild(videoHolder);
        my_ns.close()
    forwardV_btn.addEventListener(MouseEvent.CLICK,fclickV);
    forwardV_btn.addEventListener(MouseEvent.CLICK,stopSS);
    backV_btn.addEventListener(MouseEvent.CLICK,stopSS);
    backV_btn.addEventListener(MouseEvent.CLICK,bclickV);

    OK, here is the error and here is the correct code. The Error only occurs in Firefox for me, not IE.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at tutorial_fla::MainTimeline/frame4()
    Updated code
    var myVideo:NetConnection = new NetConnection();
    myVideo.connect(null);
    var newStream:NetStream = new NetStream(myVideo);
    var videoHolder:Video = new Video(720, 480);
    stage.addChild(videoHolder);
    videoHolder.attachNetStream(newStream);
    videoHolder.x = 32;
    videoHolder.y = 60;
    newStream.play("intro.flv");
    function fclickV(myevent:MouseEvent):void{
        gotoAndStop(forwardFrame);   
        stage.removeChild(videoHolder);
        newStream.close()
    function bclickV(myevent:MouseEvent):void{
        gotoAndStop(backFrame);   
        stage.removeChild(videoHolder);
        newStream.close()
    forwardV_btn.addEventListener(MouseEvent.CLICK,fclickV);
    backV_btn.addEventListener(MouseEvent.CLICK,stopSS);

  • D4o-1009 error

    I have a user who has created a workbook using Discoverer Plus, saved it and then when he tries to open the saved item gets the D4O-1009 error. He and I have created other workbooks that open fine.
    I'm would appreciate any suggestions on how to help him. We are running OracleBI Discoverer Plus Version 10.1.2.48.18.
    There is mention in the error message of editing the workbook manually. I'm a newbe to Discoverer and he is the expert and he had no idea to what they were referring. Again suggestions or pointers would be appreciated.
    Thanks, Jim Steelman

    Hello
    I've done some research on MetaLink and no references to D40-1009 show up.
    You might have encountered a known issue with regards to using an older catalog with a newer Discoverer for OLAP.
    This thread therefore might help: Re: Discoverer Catalog Error in D4OLAP
    Other than this, I suggest contacting Oracle support.
    Best wishes
    Michael

  • 1009 error, Mac Safari, CS4

    Just installed CD4 Design Premium on my Mac a couple of days
    ago. And since then every time I try to load a web page in Safari
    that has Flash content I get an pop-up Flash Player 10 #1009 error
    (see example below) and then I dismiss or cancel and the page loads
    as it should. I never had this problem with the previous version of
    the Flash Player. I also never had the Flash software installed on
    this machine before. I can't figure out how to fix this. I'm
    guessing that the Flash software has installed some debugging mode,
    but I'm only guessing and I can't figure out how to turn it off. It
    is really annoying and I want it to stop. Any help would be
    gratefully appreciated.
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at
    cityblock.flash.flash9::GooglePanorama_F9/getTranslatedMessages()
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at flash.external::ExternalInterface$/_callIn()
    at <anonymous>()
    at flash.external::ExternalInterface$/_evalJS()
    at flash.external::ExternalInterface$/call()
    at cityblock.flash.flash9::GooglePanorama_F9()

    I am not sure why you have these two lines...
    var FishingSub_mc:MovieClip = FishingSub_mc;
    var Fishing_btn:SimpleButton = Fishing_btn;
    If those two objects are items on your stage, then you should not need those lines of code at all. The important thing is to be sure that you have the instance names assigned to the objects.  Whichever object is being targeted on line 12 is out of scope when that code executes.
    Some of the possible reasons...
    - the object doesn't have the instance name assigned to it
    - the object animates into the movie and does not have that instance name assigned at each keyframe
    - the object is somewhere down a timeline when that code executes

  • #1009 Error

    All buttons are defined and it's giving me this error:
    All my other buttons are coded exactly the same and they work but for some reason it's giving me the error below, and it's doing it for all the buttons in frame 90.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
      at UnofficialKCChiefTrivav1000_fla::MainTimeline/frame92()[UnofficialKCChiefTrivav1000_fla.M ainTimeline::frame92:3]
      at flash.display::MovieClip/gotoAndStop()
      at UnofficialKCChiefTrivav1000_fla::MainTimeline/CBulls()[UnofficialKCChiefTrivav1000_fla.Ma inTimeline::frame90:26]

    The error is being encountered at frame 92 line 3.  Whichever object you are trying to target in that line of code does not exist as far as the processor sees it.
    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is declared but not instantiated
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).

  • 1009 error in my iphone5 ?

    Hello, Could you tell me What is the 1009 error in my iphone?
    I can't Update any thing :-( plz help me.

    Where are you located? The 1009 error is normally associated with a blocked country. There are a list of countries that Apple is not allowed to sell their software to due to US restrictions. Iran and Syria come to find but I believe there are about a dozen.

  • 1009 error in my ipad

    1009 error in my ipad. Why?

    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    If you can’t update or restore your iOS device
    http://support.apple.com/kb/ht1808
     Cheers, Tom

  • 1009 error for null object reference-how to fix/workaround?

    Hi,
    A while ago, with help on the forum, worked out a script (AS3) for a tween animation to demonstrate breathing in and out for an eLearning lesson exercise. There are buttons to pause and unpause/resume the animation.
    These pause and unpause/resume functions throw a 1009 error if the pause button is clicked at the moment that the tween is changing from expanding to contracting. So, most of the time, no error. But every so often, if clicked at the turning point, the 1009 error displays in debugging.
    The error points to the line:  _paused == null ? pauseAnimation():unpauseAnimation(); which is part of one of the pause functions. And the error also points to a conditional in a second pause function which is probably the beginning attemp to execute the script in it: if (_tX.isPlaying) {
    I have tried different ways of changing the script but cannot prevent the error. Any help would be appreciated.
    I've included the full pause function script below:
    // pause/unpause
    function pauseButtonClick2(e:MouseEvent):void {
        _paused == null ? pauseAnimation():unpauseAnimation(); error 1009
    // pause
    function pauseAnimation():void {
        // if Tween _tX is running
        if (_inhale) { //error 1009
            // stop the Tween       
            _tX.stop();
            _soundChannel.stop(); //soundChannel playing inhale sound mp3
             _exitButton.visible = false
            indexBtn2.visible = false;
            // record what is paused
            _paused = "tween";
        } if (!_inhale) {       
            _tX.stop();
            _soundChannel.stop(); //soundChannel playing exhale sound mp3
            _exitButton.visible = false
            indexBtn2.visible = false;
            // record what is paused
            _paused = "tween2";       
            else{
            // timer is running
            // stop the timer
            _timer.stop();
            exitButton.visible = false
            indexBtn2.visible = false;
            // record what is stopped
            _paused = "timer";
        _pauseButton2.visible = false
        _exitButton.visible = true;
        _exitButton.alpha = .5;
        indexBtn2.visible = true;
        //indexBtn2.alpha = .5;
        _resumeButton2.visible = true;
        //_resumeButton2.alpha = .5;
    // unpause
    function unpauseAnimation():void {
        // unpause accordingly
        switch (_paused) {
            case "tween" :
                _tX.resume();
                _soundChannel = _inhaleSound.play()
                break;
            case "tween2" :
                _tX.resume();
                _soundChannel = _exhaleSound.play()
                break;
            case "timer" :
                _timer.start();
                break;
        // reset what was paused
        _paused = null;
        _pauseButton2.visible = true;
        //_pauseButton2.alpha = .5;
        _exitButton.visible = false;
        indexBtn2.visible = false;
        _resumeButton2.visible = false;
    Error 1009:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at FLNav9exp_fla::MainTimeline/pauseAnimation()[FLNav9exp_fla.MainTimeline::frame6:305]
        at FLNav9exp_fla::MainTimeline/pauseButtonClick2()[FLNav9exp_fla.MainTimeline::frame6:300]

    I've been trying to fix, still unsuccessfully, so hopefully I've restored script to above (simply cut and pasted it from above) before adding your script.
    Got the following, which differs from original error locations:
    Attempting to launch and connect to Player using URL C:/Users/Stephen/Desktop/bejeweled(1)/flashinglights/latestfiles/exp/FLNav9exp-app.xml
    [SWF] FLNav9exp.swf - 1687237 bytes after decompression
    10 10
    BPM input: 10
    Minute: 1, BPM: 10
    Inhale/exhale cycle: 1
    a
    false
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at FLNav9exp_fla::MainTimeline/pauseAnimation()[FLNav9exp_fla.MainTimeline::frame6:317]
        at FLNav9exp_fla::MainTimeline/pauseButtonClick2()[FLNav9exp_fla.MainTimeline::frame6:300]
    However, each time I run and get an error, there is a different error line. But, one error line remains consistent:
    function pauseButtonClick2(e:MouseEvent):void {
        _paused == null ? pauseAnimation():unpauseAnimation(); error 1009: this line

  • Help understanding the nature of this 1006 and 1009 errors?

    Hi,
    I am working in Flash Professional CC, testing an old game with two levels and a win and lose screen. The game works until you get to the second level scene.  Once you're there, the 1006 output errors appear.
    TypeError: Error #1006: removeChild is not a function.
        at final_project_2_fla::golem_22/onHealth()[final_project_2_fla.golem_22::frame1:6]
    removeChild( ) is only used in the golem health function which it is referencing., so I know the problem's probably there. Thing is, I don't know why Flash is telling me I'm using removeChild as a function or why a sixth frame is being reference. Unless that's a code line references?
    Here's the code from the enemy I was talking about.
    var health:int=4;
    this.addEventListener(Event.ENTER_FRAME,onHealth);
    function onHealth(evt:Event):void{
        if(health==0){
            this.removeEventListener(Event.ENTER_FRAME,onHealth);
            Object(parent).removeChild(this);
    Also, when you beat the game you get this error
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at final_project_2_fla::MainTimeline/onLoop2()[final_project_2_fla.MainTimeline::frame4:27]
    I read up on the 1006 error because it's really common. I know the steps begin with tracing something, but I'm not sure what to begin tracing because it's referencing the function, but I think it's refencing the 27th line of a fourth frame? Which doesn't make sense because I don't have a fourth frame there.
    Here's the onLoop2 function, if it will help out
    function onLoop2(evt:Event):void {
        charMove();
        if(char.hitTestObject(bgr.page1)){
            bgr.page1.visible=false;
            uipage1.visible=true;
            removeListeners2();
            echannel=ff.play(0,1);
            gotoAndStop(1, "win");
        ///collision with golem 1
        if(char.hitTestObject(bgr.golem)){
            trace(attack);
            if(attack){
                bgr.golem.x+=50;
                bgr.golem.health--;
                attack=false;
            }else{
                if(bgr.golem.arms.currentFrameLabel=="idle"){
                    bgr.golem.arms.gotoAndPlay("attack");
                health-=5;
                bgr.x+=10;
            if(health<75){
                    hp4.visible=false;
                if(health<50){
                    hp3.visible=false;
                if(health<25){
                    hp2.visible=false;
                if(health<1){
                    hp1.visible=false;
                    removeListeners2();
                    gotoAndStop(1, "lose");
        Thank you for your time and effort.

    When you read errors, the references to find the code are frame:line as you thought it might be.  The 1006 error is occuring at frame 1 line 6.  The 1009 error is occuring at frame 4 line 27.
    For the 1006 error, what you could do is trace the the parent object to see what it is.  The problem might be as simple as you trying to cast it as an Object, when you might need to be casting it as a DisplayObjectContainer or some other type that has the removeChild function in its arsenal.
    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is declared but not instantiated
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).

  • My custom component works great in cs5 but cast a #1009 error in cs5.5!

    Hello,
    some time ago i made a very useful component in flash cs5 called TimelineLoading:
    you can drag it from the library to the stage and set some properties in the inspector (CIRCLE or BAR loading, color, size, etc...).
    It does the loading of your timeline, showing the progress in a very nice way, and then goes to frame 2 when loading ends.
    It has always worked perfectly, but now, when i try to use the exact same component in Flash CS5.5 it throws a 1009 error, even before starting anything.
    here is the error: Error #1009: at MainTimeline/__setProp___id0__Scene1_Layer1_0()
    you can find the component here:
    http://code.google.com/p/riccardosallusti/downloads/detail?name=TimelineLoading_1_2.mxp&ca n=2&q=#makechanges
    install it with the Extension manager, then drag it to the stage on frame 1, place a big image in flame 2 with a stop(), change the loading type to BAR in the inspector, and then publish.
    note: leaving the default loading type to CIRCLE, does not throw any error but the loading doesn't work.
    If you try it in cs5 everything works fine.
    Thanks
    P.S. tried on Windows 7 and MAC osx 10.6.8

    I tried that but I keep getting this error message:
    VerifyError: Error #1053: Illegal override of createGeometry in flashx.textLayout.elements.FlowGroupElement.
    ReferenceError: Error #1065: Variable _11f1d66f38eb234da07a684678bb07c1e6cff9d15441f91af33073b7534701e8_flash_display_Sprite is not defined.

  • Help with simple Preloader. Error#1009  :-(

    Hello !
    I have a very simple preloader file which loads a "main.swf" file. I put on stage
    a LogoCompany (MovieClip), a Mask (MovieClip) and a Text (Dynamic).
    As the percentage of bytes from the .swf file increases, the Mask.x position is increased so the LogoCompany appears.
    Here is the code:
    // Simple Preloader
    var maskStart:Number = 116;
    var maskEnd:Number = 377;
    var maskMove:Number = maskEnd - maskStart;
    var myLoader:Loader = new Loader();
    // URL to swf.
    myLoader.load( new URLRequest("main.swf") );
    // Create event
    myLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, myLoop);
    function myLoop(e:ProgressEvent):void
        var perc:Number = Math.round( (e.bytesLoaded / e.bytesTotal) * 100);
        trace ("perc == " + perc);
        txtMessage.text = "Loading... " + perc.toString() + "%";
        trace ("txtMessage.text == " + txtMessage.text);
        maskLogo_mc.x = maskStart + maskMove * perc / 100;
        trace ("maskLogo_mc.x == " + maskLogo_mc.x);
        if(e.bytesLoaded == e.bytesTotal)
            removeChild(maskLogo_mc);
            removeChild(logoCompany_mc);
            removeChild(txtMessage);
            txtMessage = null;
            addChild(myLoader);
    The animation is actually going till the end (100%).  But in the middle I always get this error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at main_fla::MainTimeline/main_fla::frame13()
    I really don't know what is going on.
    Can anyone help me with this ?
    Thanks in Advance.
    H

    Hello Ned.
    Thank you for your prompt reply.
    Unfortunately I got the same error after I followed your suggestions:
    - Moving the .load() function after everything.
    - Marking "Permit Debugging" on Publish Settings under Flash tab. (CS3 version here)
    Any more suggestions?
    Thanks in advance.
    H

  • XSL-1009 error in XML to XML using XSL

    I'm using XSL to transform one XML format to another using and XSL transform file. I'm initiating this with ORAXSL in.xml transform.xsl out.xml. The XSL file has in it:
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.oracle.com/XSL/Transform/Java" version="1.0">
    <xsl:import href="../generic/parsePOHeader.xsl"/>
    <xsl:import href="../generic/parsePOLine.xsl"/>
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
    ORAXSL gives an error of XSL-1009: Attribute xsl:version not found in XSL:Stylesheet.
    Putting an XSL: prefix on the version doesn't help. A search for help on this site had a solution for XSL that create HTML.
    Has anyone else solved this problem?

    Thanks everyone for th ereply. Yes, I tested the mapping in integration bulider and it works fine. Even the file conversion works fine intermittantly! Sometimes it converts successfully and wrties file to target location and sometimes I get this error. I checkd in sxi_cache and I see the mapping xsl files there. I jus had basis reboot PI server and run some cache commands but still same problem! Also, when I have to files in source directory sometimes it converts both, sometimes one and sometimes both fails! I haveno clue what els to try.
    What are adapter nodes and wher can I check for that?
    Thanks.
    Mithun

  • Preloader actionscript error

    have a simple preloader I'm using to go to a url
    I keep getting 1087: Syntax error: extra characters found
    after end of program.

    >>ifFrameLoaded("end") {
    You might want to read up on the if statement. ifFrameLoaded
    has been
    deprecated for 4 player releases. You want something like:
    if(this._framesloaded ...){
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

Maybe you are looking for

  • How do i use IPAD wifi when travelling

    I have been extensively using IPAD 2 . I recently decided to upgrade mine to IPAD3 . I bought one at the grove apple store and before that asked the salesman the difference in the IPAD 2 AND IPAD 3. He said the resolution of camera and picture was go

  • Error while running RSA3

    Hi Friends, I ran a load yesterday for Datasource 0HR_PT_3, it went fine, today i wanted to load for specific time, so i wanted to check how many records would i get. In rsa3 i am trying to run for that period, strangely i am getting an error "Infoty

  • Deploying Forms and Reports 6i runtime with my application

    I'm trying (for a year or two) to find out Oracle's recommended and proven method of packaging Forms and Reports 6i runtime components with my application. I've tried the 6.0 File Packager, the Project Builder Delivery Wizard, and the Oracle Software

  • PhpMyAdmin Google reCAPTCHA v2 plugin not working

    I secure my phpMyAdmin login page using Google reCAPTCHA. Until recently, phpMyAdmin used the old v1 API of reCAPTCHA, but now uses the newer v2 API as of version 4.40. For some reason, I cannot get the new reCAPTCHA v2 API to accept my credentials t

  • Custom Mail Forms in CRMD_EMAIL

    Hi Guys, Does any know how to (or is it even possible ) include custom coding for mail forms ? The fields provided in the standard structure does not contain the fields that i need to be displayed on the form output. Thanks, Chun Wei