Preloader errors

I'm really new at this.
I'm getting 4 errors in my preloader script.
Ive created a bar with bytes loaded and bytes total and a
percentage.
No text comes up in the dynamic fields and the bar does not
progress.
But when I test the movie with "simulate download" it seems
that some preloading happens but I don't think its working at all
really.
1120: Access of undefined property loaderinfo.
var toLoad:Number = loaderinfo.bytesTotal;
1120: Access of undefined property loaderinfo.
var loaded:Number = loaderinfo.bytesLoaded;
1067: Implicit coercion of a value of type Class to an
unrelated type String.
addEventListener(Event,ENTER_FRAME,loaderF);
1120: Access of undefined property ENTER_FRAME.
addEventListener(Event,ENTER_FRAME,loaderF);
Below is Entire script - on frame 1 of my timeline - the
timeline is a total of 390 frames:
stop();
addEventListener(Event,ENTER_FRAME,loaderF);
function loaderF(e:Event):void{
var toLoad:Number = loaderinfo.bytesTotal;
var loaded:Number = loaderinfo.bytesLoaded;
var total:Number = loaded/toLoad;
if(loaded == toLoad){
removeEventListener(Event.ENTER_FRAME,loaderF);
gotoAndStop(390);
} else {
preloader_mc.preloaderFill_mc.scaleX = total;
preloader_mc.percent_txt.text = Math.floor(total*100) + "%";
preloader_mc.ofBytes_txt.text = loaded + "bytes";
preloader_mc.totalBytes_txt.text = toLoad + "bytes";
any ideas?

If you substitute "Event,ENTER_FRAME" with
"Event.ENTER_FRAME" and "loaderinfo" with "loaderInfo", it will be
a giant step forward ;-)

Similar Messages

  • Captivate 5 and preloader: Error #1065: Variable CPPreloader is not defined.

    Hi,
    If I add a preloader swf (any of those which ship with Captivate 5 - in \Gallery\Preloaders\AS3) - then when I publish the movie - the flash player throws an error:
    ReferenceError: Error #1065: Variable CPPreloader is not defined.
    Then (mostly) crashes the plugin (firefox) else carries on with the captivate movie.
    If I remove the preloader - all is fine again. I've tried every preloader swf, pretty much every option I can think of in publish settings.
    Windows 7 64, I've got Flash 10.2.153.1 (debug). It looks to me like an error in the code written by Captivate, but if that were the case, I'm sure I would find some mention of the problem or the var CPPreloader elsewhere!
    Anyone else seen this? Know how to make it go away??
    Cheers

    Are you adding preloaders from these locations?:
    C:\Program Files\Adobe\Adobe Captivate 5\en_GB\Gallery\Preloaders in 32bit systems
    or
    C:\Program Files (x86)\Adobe\Adobe Captivate 5\en_GB\Gallery\Preloaders  in 64bit systems
    You mention you're using the debug versiion of Flash Player.  Have you tested the published output on a system that IS NOT using the debug Flash player, just a normal Flash Player version?

  • Preloader :Error #1009: Cannot access a property or method of a null object reference.

    Hi,
    I'm having a lot of trouble getting a preloader to work on my Flash website. I'm new to actionscript, the site works fine but when I place the preloader in frame 1, I get.
    Error#1009: Cannot access a property or method of a null object reference.
    Then it lists three areas. The buttons on the site don't work anymore.
    I've followed the Lynda com tutorials so don't know what is causing this error.
    Included is the word.doc with the error code, preloader code, the main flash frame 2 code and the debug information.
    Any help would be great.
    Thanks!

    You need to make sure 'cards' is named properly and is present when that line of code executes.  If it is somewhere down a timeline, it is not present.
    As far as your preloader code goes, what is infoLoader.  I have to assume it's some form of component since you don't have any code to instantiate it.

  • Preloader error

    I have a preloader that will externally load my swf however when I run it it is producing this error VerifyError: Error #1014: Class flash.text.engine::FontDescription could not be found. My preloader code works on another swf but not on this one. My code is below. Any help would be apeciated.
    package {
        import flash.display.MovieClip;
        import flash.display.Loader;
        import flash.net.URLRequest;
        import flash.events.Event;
        public class preloader extends MovieClip {
            private var myLoader:Loader;
            private var myRequest:URLRequest;
            public function preloader() {
                myLoader = new Loader();
                myLoader.load(new URLRequest("portfolio.swf"));
                myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,showLoadResult);
            function showLoadResult(evt:Event):void {
                this.addChild(myLoader);

    I saved it on a different pc and now it works woo hoo !!!!! No idea of the problem..

  • How Do I Fix This Runtime Shared Library Preloading Error?

    Hello,
    I just finished up my site, and this is the only thing holding me back from publishing it. Whenever I "Test" my site, I get this error: " Your content will not stream. Runtime Shared Library (RSL) preloading will require all of your content to download before the first frame will play.
    To prevent this you can change the Runtime Shared Library Library Settings, in the Advanced ActionScript 3.0 Settings dialog which can be raised from the Publish Settings dialog.
    The Runtime Shared Libraries being preloaded are:
    textlayout_1.0.0.595.swz for TLF Text"
    Does anyone know how to correct this error? If you do, could you please walk me through it step-by-step. I am still very new to "Flash Professional (CS5)" & "ActionScript (3.0)"

    Reference error is because the default linkage for textLayout.swc is Runtime Shared Library (RSL) with preload swf option so the reference will always be “RSLPreloader” if TLF is used.
    There are 2 options that we can avoid the reference error:
    1. Change default linkage to “Merged to code” which will add around 150KB to child swf file size.
    2. Change preloader method to “Custom preloader loop”, move all contents and scripts to frame 2. And finally, in the Advance ActionScript 3.0 Settings, export classes in frame to 2.

  • Preloader not going to frame 2 after 100% loaded

    Hello.
    I recently got help concerning a preloader error.
    Happy to say the error message got resolved here on the forum.
    However I now have new problem.
    After site is loaded a 100% it is stuck on the preloader image in frame one instead of going to frame to of my project.
    Can anyone help me with this please. I suppose further information about my project is needed so just say what to post and I´ll post it.
    Sincerely
    Ronny

    This resulted in a window opening with this filling it:
    2 2
    loaded
    2 2
    loaded
    2 2
    loaded
    2 2
    loaded
    2 2
    loaded
    2 2
    loaded.....
    Seamably infinate..
    And the swf is still stuck on frame 1...
    Now this is what I´ve got:
    Frame 1 of the preloader movieclip:
    var amountLoaded:Number = this.framesLoaded/this.totalFrames;
    loadText.text = Math.round(amountLoaded * 100).toString() + "%";
    Frame 2 of the preloader movieclip:
    trace(this.framesLoaded,this.totalFrames);
    if(this.framesLoaded == this.totalFrames) {
    trace("loaded");
    this.gotoAndPlay(3);
    else {
    this.gotoAndPlay(1);
    Frame 3 of scene one (the main timeline):
    trace("goto",this.currentFrame)
    (Below this there is a lot more actionscripting relating to some buttons).
    Preloder on frame 1 and rest of the content on frame 3 (scene 1).
    Is this about right?

  • Error #1009 Help!

    Dear All,
    I hope you can help me with what is probably a very simple problem yet seems to affect most people! However, I've spent all day researching it and trying all sorts of codes to resolve the error!
    I am in the process of building a new website using Flash CS5 and I am very new to whole scripting business (as3).  Having finished the main content of the website, I created an external preloader so it can load the main SWF file. However, when I debug or test the scene I get this error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
       at Index_fla::MainTimeline/frame1()[Index_fla.MainTimeline::frame1:11]
    After many hours, I find the publish settings, publish debugging which actually tells me what line/frame is causing the problem! If I go to my main file (labelled as Index.Fla) and look at Frame 1, Line 11 it indicates:
    var buttonsArray:Array = [works_btn,about_btn,contact_btn];
    ... which sounds about right, considering when the preloader has finished the main flash file navigation buttons (work/about/contact) appear to not work quite right. They still function taking you to the right pages (or frames) but the mouse over, mouse click functions do not work.
    Now I'm not really sure how to deal with this, because All the buttons (which are Movie clips) are located on Frame one and have the right instance names and PLUS when I debug the Index.Fla file, everything works as normal.
    Should I assume there is something wrong with my preloader file?
    Below is the script for the preloader and frame one fo the index file. Hope you can help me! Thanks!
    PRELOADER:
    var l:Loader = new Loader();
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
    l.load(new URLRequest("Index.swf"));
    function loop(e:ProgressEvent):void
       var perc:Number = e.bytesLoaded / e.bytesTotal;
       percent.text = Math.ceil(perc*100).toString() + "% Complete";
    function done(e:Event):void
       removeChildAt(0);
       removeChild(preloader)
       percent = null;
       addChild(l);
       l.contentLoaderInfo.removeEventListener( ProgressEvent.PROGRESS, loop);
       l.contentLoaderInfo.removeEventListener(Event.COMPLETE, done);
    INDEX (MAIN FILE - FRAME ONE)
    stop();
    works_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    about_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    contact_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    stage.frameRate = 30;
    var buttonsArray:Array = [works_btn,about_btn,contact_btn];
       function setButtons():void
       { for (var i:int=0; i<buttonsArray.length; i++)
          {   buttonsArray[i].id = i;  
             buttonsArray[i].buttonMode = true;  
             buttonsArray[i].mouseChildren = false;  
             buttonsArray[i].mouseEnabled = true;  
             buttonsArray[i].addEventListener(MouseEvent.ROLL_OVER,playOver);  
             buttonsArray[i].addEventListener(MouseEvent.ROLL_OUT,playOut);  
             buttonsArray[i].addEventListener(MouseEvent.CLICK,doClick);  
    function playOver(event:MouseEvent):void
       {   event.currentTarget.gotoAndPlay("over");
    function playOut(event:MouseEvent):void
       {   event.currentTarget.gotoAndPlay("out");
    function doClick(event:MouseEvent):void{
       var currentBtn:int = event.currentTarget.id;  
       setSelectedBtn(currentBtn);
    function setSelectedBtn(id:int):void{  
       for (var i:int=0; i< buttonsArray.length; i++) {  
          if (id == i) {  
             buttonsArray[i].gotoAndStop("down");  
             buttonsArray[i].buttonMode = false;  
             buttonsArray[i].mouseEnabled = false; 
             buttonsArray[i].removeEventListener(MouseEvent.ROLL_OVER,playOver);  
             buttonsArray[i].removeEventListener(MouseEvent.ROLL_OUT,playOut); 
             buttonsArray[i].removeEventListener(MouseEvent.CLICK,doClick);
             } else {  
                if(buttonsArray[i].currentLabel =="down"){
                   buttonsArray[i].gotoAndPlay("out");  
                   buttonsArray[i].buttonMode = true;  
                   buttonsArray[i].mouseEnabled = true;  
                   buttonsArray[i].addEventListener(MouseEvent.ROLL_OVER,playOver);  
                   buttonsArray[i].addEventListener(MouseEvent.ROLL_OUT,playOut);  
                   buttonsArray[i].addEventListener(MouseEvent.CLICK,doClick);
    setButtons();
    function navigationClicked(Event:MouseEvent):void
       var frmLabel:String = '';
        switch (Event.target)
          case works_btn :
                frmLabel = "Portfolio_frm";
                break;
            case about_btn :
                frmLabel = "About_frm";
                break;
            case contact_btn :
                frmLabel = "Contact_frm";
                break;
       if (currentFrame != frmGoto)
          var frmPortfolio:Number = this.getFrame("Portfolio_frm");
          gotoAndPlay(frmGoto);
    function getFrame(frameName:String):Number
        var frame:Number = 1;
           for (var i = 0; i < currentLabels.length; i++)
            if (currentLabels[i].name == frameName)
                frame = currentLabels[i].frame;
                break;
        return frame;

    Ok, so you're saying Flash has indicated the wrong Line Number that is causing the problem? It's funny because if I hadn't ticked publish debugging in the properties, the error would just say:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
       at Index_fla::MainTimeline/frame1()
    with no indication as to which line or frame is causing the problem.
    Anyway, I've inputted a code that deliberately causes an error and the line numbers match up (correct). I did this until Line 10 and the preloader error still indicates Frame 1, Line 11 (which is the var buttonsArray function). I did it after line 11 (line 12) and the error was identified as Line 12.
    any ideas?

  • Share how you keep Skype running

    I thought that it would be helpful for a lot of people if there was a thread written with the sole purpose of depicting ways to address Skype run-time issues, like how to keep Skype running despite its tendency to crash without having to manually restart it. 
    So, for the most part, try to only post comments--by comments I mean posts, I just didn't want to be redundant and say 'post posts'--that address some specific thing that you were trying to get Skype to do like
    Webcam support
    Sound Server support
    or V4Linux support (if that's not exactly the same thing as webcam support)
    and how you were able to get Skype to do it.  Please, do not post answers to unresolved, or otherwise partially fixed support, problems.  This is a place to share helpful, useful, and (at least mostly) automatic scripted workarounds.  The scripts can be in any programming language, not just scripting ones, although scripting ones are best suited for this kind of thing. 
    As to what I mean by 'partially fixed problems': I'm talking about problems that still require user intervention in order to keep the problem-fixing-script going.  Like, every time the script finishes running, you have to manually restart it.  This is different from a mostly automatic script that has to be started by the user (as opposed to being started by the system at start-up or when X is initiated), but that once started continues to run until the user forcibly terminates it.  Like 'killall -s KILL myscript.sh', for example. 
    I'll start off by posting a script that I use to handle a webcam support problem that I have with Skype.
    (Note, this is my first attempt at a really big thread/post, so I'm just keeping my fingers crossed because doing something like this is rather intimidating for me, a forum-newbie.  )
    Last edited by lspci (2012-07-03 19:39:49)

    I'm still using the beta version of Skype, that is version 2.2.0.35; it crashes every now and again because I have to run it with a v4l preload--its crashes seem to have a domino effect on itself, in that if it crashes once then it's twice as likely to immediately crash again.  So here's my little workaround that keeps Skype going; I hope that somebody will find it useful or will have some suggestions for how I can make it run better. 
    ## ensur.sh -- ENsure Skype continUes Running ##
    ## an answer to the continual crashes brought on by loading skype as 'LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype &' ##
    ## Coded by DeFfunc't95 ##
    #clear
    echo
    echo
    echo "IS SKYPE RUNNING"
    if top -n2 | grep "skype" ; then
    echo "";
    echo " [T]";
    echo "EXITING NOW...";
    echo ;
    echo ;
    exit ;
    else echo ;
    echo " [F]";
    echo ;
    echo "STARTING UP SKYPE WITH PRELOAD" ; # the preload is necessary in order
    ## for webcam support to be enabled, or so it seems.
    echo ;
    echo ;
    LD_PRELOAD=/usr/lib34/libv4l/v4l1compat.so skype ;
    # This mapping will need to be changed according to where ensur.sh
    #>> actually is.
    sh ~/:B/ensur.sh ; # the mapping
    fi
    My script works extremely well, most of the time.  Whenever Skype crashes because of a preload error, it just starts Skype right back up again.    However, it isn't so great at being able to tell the difference between when Skype is actually running and when it isn't.  In fact, 9 times out of 10, if Skype is already running and I start up my little 'ensur-skype' script: my script will start Skype up anyhow regardless of whether Skype is already running or not.  And I think it's because of my usage of
    if top -n2 | grep "Skype" ; then ...
      When I actually just run 'top -n2 | grep "skype"' in the terminal, it rarely actually manages to grep Skype from top, but I really don't know of any other way to determine whether Skype is already running.  Any suggestions as to how to check for a Skype run-time without risking the possibility of starting two instances of Skype in the process?
    Last edited by lspci (2012-07-03 19:36:46)

  • /usr/bin/ld: cannot find -lgomp

    Trying to compile wine-multimedia-git from AUR with a few custom flags.
    ld insists it cannot find -lgomp, although it's never complained about that while compiling any other packages.
    libgomp is installed and available at /usr/lib/libgomp.so, /usr/lib32/libgomp.so, and /usr/lib64/libgomp.so
    How can I convince ld that it is wrong?

    quequotion wrote:First there were the memset errors, so I asked google what they mean; after comparing various results it seemed to tell me this has something to do with openmp, and that the errors go away when linking with -lgomp.
    And now that I consult google again, I find nothing at all like the search results I found before. In fact, where hours and hours of searching previously yielded nothing similar to my problem, I now find dozens of reports of this issue (with llvm and gcc 4.8, neither of which I am using) and a possible workaround (-fno-builtins, but wine should specify that for itself).
    WTF?
    ::EDIT::
    hrm... not working... back to square one, without -lgomp:
    preloader.o: In function `map_so_lib':
    preloader.c:(.text+0xf64): undefined reference to `memset'
    preloader.c:(.text+0x1239): undefined reference to `memset'
    preloader.o: In function `wld_start':
    preloader.c:(.text+0x26df): undefined reference to `memset'
    collect2: error: ld returned 1 exit status
    Makefile:174: recipe for target 'wine64-preloader' failed
    make[1]: *** [wine64-preloader] Error 1
    Makefile:17605: recipe for target 'loader' failed
    make: *** [loader] Error 2
    make: *** Waiting for unfinished jobs....
    ../../../wine-multimedia/tools/wrc/parser.y: warning: 5 shift/reduce conflicts [-Wconflicts-sr]
    ../../../wine-multimedia/tools/wrc/parser.y: warning: 5 shift/reduce conflicts [-Wconflicts-sr]
    change.o: In function `req_read_directory_changes._loopfn.0':
    change.c:(.text+0x2c1a): undefined reference to `omp_get_num_threads'
    change.c:(.text+0x2c21): undefined reference to `omp_get_thread_num'
    change.o: In function `req_read_directory_changes._loopfn.1':
    change.c:(.text+0x2e2a): undefined reference to `omp_get_num_threads'
    change.c:(.text+0x2e31): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output':
    console.c:(.text+0x43e0): undefined reference to `GOMP_parallel'
    console.c:(.text+0x4483): undefined reference to `GOMP_parallel'
    console.c:(.text+0x4520): undefined reference to `GOMP_parallel'
    console.o: In function `req_fill_console_output':
    console.c:(.text+0x57b8): undefined reference to `GOMP_parallel'
    console.c:(.text+0x588e): undefined reference to `GOMP_parallel'
    console.o:console.c:(.text+0x590a): more undefined references to `GOMP_parallel' follow
    console.o: In function `req_read_console_output._loopfn.0':
    console.c:(.text+0x69ec): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x69f8): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output._loopfn.1':
    console.c:(.text+0x6ebc): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x6ec8): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output._loopfn.2':
    console.c:(.text+0x73be): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x73ca): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.3':
    console.c:(.text+0x753e): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x754a): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.4':
    console.c:(.text+0x767e): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x768b): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.5':
    console.c:(.text+0x77be): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x77cb): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.6':
    console.c:(.text+0x78fe): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x790b): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.7':
    console.c:(.text+0x7a3c): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x7a49): undefined reference to `omp_get_thread_num'
    hook.o: In function `req_set_hook._loopfn.0':
    hook.c:(.text+0x1dd2): undefined reference to `omp_get_num_threads'
    hook.c:(.text+0x1dd9): undefined reference to `omp_get_thread_num'
    thread.o: In function `create_thread._loopfn.0':
    thread.c:(.text+0x569a): undefined reference to `omp_get_num_threads'
    thread.c:(.text+0x56a1): undefined reference to `omp_get_thread_num'
    collect2: error: ld returned 1 exit status
    Makefile:203: recipe for target 'wineserver' failed
    make[1]: *** [wineserver] Error 1
    make[1]: *** Waiting for unfinished jobs....
    change.o: In function `req_read_directory_changes._loopfn.0':
    change.c:(.text+0x2c1a): undefined reference to `omp_get_num_threads'
    change.c:(.text+0x2c21): undefined reference to `omp_get_thread_num'
    change.o: In function `req_read_directory_changes._loopfn.1':
    change.c:(.text+0x2e2a): undefined reference to `omp_get_num_threads'
    change.c:(.text+0x2e31): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output':
    console.c:(.text+0x43e0): undefined reference to `GOMP_parallel'
    console.c:(.text+0x4483): undefined reference to `GOMP_parallel'
    console.c:(.text+0x4520): undefined reference to `GOMP_parallel'
    console.o: In function `req_fill_console_output':
    console.c:(.text+0x57b8): undefined reference to `GOMP_parallel'
    console.c:(.text+0x588e): undefined reference to `GOMP_parallel'
    console.o:console.c:(.text+0x590a): more undefined references to `GOMP_parallel' follow
    console.o: In function `req_read_console_output._loopfn.0':
    console.c:(.text+0x69ec): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x69f8): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output._loopfn.1':
    console.c:(.text+0x6ebc): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x6ec8): undefined reference to `omp_get_thread_num'
    console.o: In function `req_read_console_output._loopfn.2':
    console.c:(.text+0x73be): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x73ca): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.3':
    console.c:(.text+0x753e): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x754a): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.4':
    console.c:(.text+0x767e): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x768b): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.5':
    console.c:(.text+0x77be): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x77cb): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.6':
    console.c:(.text+0x78fe): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x790b): undefined reference to `omp_get_thread_num'
    console.o: In function `req_fill_console_output._loopfn.7':
    console.c:(.text+0x7a3c): undefined reference to `omp_get_num_threads'
    console.c:(.text+0x7a49): undefined reference to `omp_get_thread_num'
    hook.o: In function `req_set_hook._loopfn.0':
    hook.c:(.text+0x1dd2): undefined reference to `omp_get_num_threads'
    hook.c:(.text+0x1dd9): undefined reference to `omp_get_thread_num'
    thread.o: In function `create_thread._loopfn.0':
    thread.c:(.text+0x569a): undefined reference to `omp_get_num_threads'
    thread.c:(.text+0x56a1): undefined reference to `omp_get_thread_num'
    collect2: error: ld returned 1 exit status
    ::UPDATE::
    Wine does compile now, but I never found a solution to this problem. My theories at the moment are either that an undeclared lib32- dependency is now satisfied (a side benefit of mmug-qq), wine itself was updated to fix the problem (haven't checked the rather extensive git commit log), or some configuration file somewhere has been updated into a working state...
    Last edited by quequotion (2014-09-07 14:02:32)

  • Patch 4198954  compat-libcwait-2.1-1 RedHat R4

    Hi,
    I am having a problem with installing this patch 4198954. When I install the rpm compat-libcwait-2.1-1.i386.rpm I am getthing the following error:
    ERROR: ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.
    This system is "Red Hat Enterprise Linux AS release 4 (Nahant Update 1)"
    I checked the location and everything appears to be fine.
    [root@alvlabl23 tmp]# rpm -ihv compat-libcwait-2.1-1.i386.rpm
    Preparing... ########################################### [100%]
    cat: /etc/ld.so.preload: No such file or directory
    1:compat-libcwait ########################################### [100%]
    ERROR: ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.
    [root@alvlabl23 tmp]# cat /etc/ld.so.preload
    ERROR: ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.
    /lib/libcwait.so
    [root@alvlabl23 tmp]# ls -l /lib/libcwait.so
    ERROR: ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.
    -rwxr-xr-x 1 root root 2784 Nov 3 12:13 /lib/libcwait.so
    Any help would be great

    I’m not completely sure, this is my first time installing on a Linux system. However, I was able to run the installer and complete the install. The problem I have now is figuring out why I continue to get the error patch 4198954 says it fixes “ERROR: ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.”. I think this could be because one of two things.
    1)     My system is a Solaris x86 x64 box and the rpm is for i386 (Both version of compat-libcwait)
    2)     The versions of compat-libcwait were not the version the install document said needed to be on the system. You would think that because the version have a higher number that they also would work… apparently not.
    As for the problem you are having running the installer I can offer the steps I did to get it to run. But for the most part it was this document. http://www.puschitz.com/InstallingOracle9i.shtml
    Create Oracle user:
    Download Oracle9i for Linux from the following web site:
    3) Stage Oracle Media
    zcat amd64_db_9204_Disk1.cpio.gz | cpio -idmv
    zcat amd64_db_9204_Disk2.cpio.gz | cpio -idmv
    zcat amd64_db_9204_Disk3.cpio.gz | cpio –idmv
    4) Create Mount Points
    /app
    /u01
    /u02
    5) # Setup Oracle environment variables
    export ORACLE_BASE=/app/oracle
    export ORACLE_HOME=/app/oracle/product/ora920
    export ORAENV_ASK=NO
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export PATH=$ORACLE_HOME/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/dt/lib:/usr/openwin/lib
    6) export DISPLAY
    I was using a reflectionX telnet session. So I directed the display back to my system.
    export DISPLAY=<My PC IPaddress>:0.0
    I had to do this in order to get past 17%. Once the install completed I replaced my SAVED copy.
    For RHEL4 Only: The Oracle Universal Installer will check the operating system release to
    verify that it is a supported release. As of Oracle Database 10g 10.1.0.3, the installer
    does not recognize RHEL4 as a supported release. The workaround is to follow the steps
    below prior to running runInstaller.
    su -
    cp /etc/redhat-release /etc/redhat-release.orig
    cat > /etc/redhat-release << EOF
    Red Hat Enterprise Linux AS release 3 (Taroon)
    EOF
    I had to set my Kernel version to this, even though my version is higher.
    $ su - oracle
    $ echo $LD_ASSUME_KERNEL
    2.4.19
    run the installer
    ./runInstaller

  • CS3, MFC70.dll is missing JS Error - AQW.js, TypeError:AdvancedQueryWizard.preload is not a function

    Hi guys,
    BE SURE TO READ THE UPDATE BELOW....
    I have searched both Google and the Forums, but cannot find anything on this one.  Here is the history and both errors:
    Recently upgraded to new machines with an upgrade to Windows 7 from XP prof.  I personally installed the CS3 (web premium, upgraded from previous version) and all went well.  The only change was that I did not install all of the previous versions of Dreamweaver, like I had on my old PC.  I opened DW, pulled in all of my websites from the backup (work as a web developer/graphics designer) and all worked fine.
    I left for Christmas vacation, remoted in a few times, so I know my laptop was fine, never lost power, etc., but never did have to open DW during that time.
    Got back this week, had to make a change to a page that contains the XMLFlashSlideshow (v3).  Opened Dreamweaver and got the first of two errors: "MFC70.DLL is Missing"  The message indicated a reinstall would take care of the problem.  I clicked ok, and then I got this error message:
    While executing onLoad in AQWLoad.htm, the following JavaScript error(s) occured:
    At line 60 of file "C:/Program Files (x86)\Adobe\Adobe Dreamweaver CS3\Configuration\Startup\..\Shared\AQW\AQW.js": TypeError:AdvancedQueryWizard.preload is not a function
    When I clicked OK, the message appeared again immediately.  I clicked ok again, and Dreamweaver began to open.
    I figured I could make the change and troubleshoot after, but when I went in, I could not longer see the box I normally see to click on to edit for the slideshow.  These error messages occur every time I open Dreamweaver, even after a reinstall.  I did not have this page, nor even this site as the default when first opening DW when the errors first occurred.
    UPDATE:  These errors do not seem to occur the first time Dreamweaver is run, be do occur each time afterwards.
    I have also noticed that I cannot print from Word 2007 to the Adobe printer driver as I always have.  Not sure if that is related or not.
    Any ideas, anyone else run into this?
    Thanks for anything help you can send my way.
    Thanks,
    Suzanne

    For the JS error: http://kb2.adobe.com/cps/405/kb405604.html
    If mfc70.dll is really missing, that is a core Windows file.  If you need to fix that you need to have your Windows 7 disc ready and run "sfc /scannow" in the command prompt.  You may need your Windows 7 if the file cannot be repaired and has to be restored.  This can affect all aspects of your system and not just Dreamweaver if there is really a problem there. 
    The Word -> Adobe Printer is another issue.  You may want to post that in the Acrobat forums along with the version of Acrobat Professional you are using.

  • 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/

  • Captivate CS6 Preloader (SWF) Error

    So - I changed the Captivate preloader value to 20%.  Now, I get an error when runnig the SWF with the Flash Debugger -
    ReferenceError: Error #1065: Variable CPPreloader is not defined.
    Huh??

    I believe there is a bug with the preloader that results, as you have found, in fail. Hopefully that will be fixed soon.
    Here's how I understand the HTML 5 output from Captivate and how you can use it in Dreamweaver.
    Basically it is HTML 5 ... so it's a bunch of text files like any HTML, so you can open it in Dreamweaver and edit it to suit your needs, drop it into pages/sites of your own, etc - >cough< with the caveat that if yuo are not sure what youa re doing, you could break something.
    But you didn't really explain what kind of integration you are looking for.
    e.g. If you publish as HTML 5 from Captivate, then edit it in Dreamweaver, can you then further edit it in Captivate ... NO you cannot. There is no round tripping between Captivate and Dreamweaver.
    Did you want, instead, to achieve something different?
    Steve

  • Error 1009 for preloader and fullscreen method

    hi all..
    ı am working on a web site project and there is a problem.. I use flash cs4. I tried to use a fullscreen method, which is I learned at internet, and make a preloader. I can't explain this problem because of my english but ı attach the fla file ( www.simgeyazilim.com/index3_4.rar ). This is a very simple fla but ı failed. anybody help me to fix this problem?
    Thanks...

    the problem is on the second scene where you add the eventlistener to but1.
    if you remove that then the error doesn't appear anymore.

  • Preloader Code: Error 1061

    I bought a preloader on Flashden.com and it didn't come with much instruction.
    Here is what I have done:
    My index file has my timeline with actions, preloader, and then my movie clips for my opening page. I have placed my preloader movieclip in frame 1 and it ends on frame 2. In frame one on the actions layer I have stop();
    I then have all of my movie clips on frame 3 with my actions for my movieclips on frame three. I added a name to frame 3 named index
    My preloader movieclip has this code:
    stop();
    this.addEventListener(Event.ENTER_FRAME, loading);
    function loading(evt:Event):void
        var percentageLoaded:Number = Math.round(this.stage.loaderInfo.bytesLoaded/ this.stage.loaderInfo.bytesTotal*100);
         this.loaderInformation.loadingtxt.text = "Loading "+percentageLoaded+"%";
        if(percentageLoaded>=100)
            this.removeEventListener(Event.ENTER_FRAME, loading);
            this.parent.gotoAndPlay("index");
    When I test the file I get a 1061 Error saying Call to a possibly undefined method gotoAndPlay through a refernece with static type flash.disply:DisplayObjectContainer.
    Any ideas on what I can do to correct this? I contacted the person I purchased it from but have not heard back yet.
    Thank you!
    Mariah Danielsen

    Try casting the parent as a MovieClip...
           MovieClip(this.parent).gotoAndPlay("index");

Maybe you are looking for

  • Cancellation of Goods Receipt with Credit Memo Transaction Issue

    Dear SAP Expert and Guru, Normally cancellation of goods receipt cannot be done when invoice has been issued. Cancellation of Goods receipt can only be done when there is the credit memo being issued in MIRO. The problem now is that is there any tabl

  • GridBagLayout Messing Up

    here is my GUI import java.awt.*; import javax.swing.*; import java.util.*; public class Update      ImageIcon logoimg;      JLabel logo;      JButton check;      JButton launch;      public static void main(String[] args)           new Update();    

  • Netflix won't stream video

    I just set up a new Apple TV unit and can't get netflix to stream. My account is active and I can sign in and see up to date viewing history. It just won't stream when I press play, it will just show the circular shape made up of radial lines moving

  • How to Perform In-Place Upgrade of Windows Vista Home Professional amd64

    I'm trying to perform an in-place upgrade of Windows Vista Home Professional amd64 but the setup process fails stating that I need to remove Windows PowerShell prior to the upgrade.  I didn't have http://support.microsoft.com/kb/928439 installed so I

  • Mac os x

    i am trying to compile dbi::dbd. Perl works, but the make command seems to have disappeared. It doesn't ecognize the command make. I have used solaris, linux and unix and it always had the compiler! What gives? macbook pro   Mac OS X (10.4.7)