External preloader script problem

hi, i'm try to create an external preloader, i've made three layers (the script, one for a funky design of my logo and keep things simple i've also embedded the preloader text in this layer and finally the preloader bar beneath. i've created two frames for each layer, the script has two keyframes, the other layers only have a keyframe first then a standard frame. i can't get it work though, please help. here's the script i'm using on the second keyframe.
var loader:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip("Empty_movieclip",1);
loader.loadClip("Creative-Outrage.swf",Empty_movieclip);
var preload:Object = new Object();
loader.addListener(preload);
preload.onLoadProgress = function (target, loadedBytes, totalBytes){
if (_root.getBytesTotal() != _root.getBytesLoaded()){
gotoAndPlay(1);
else (loadMovie("Creative-Outrage.swf",Empty_movieclip));
removeMovieClip("Preloader_movieclip");
Bar_movieclip._xscale=(_root.getBytesLoaded()/_root.getBytesTotal())*100;
Preloader_movieclip.Loader_text.text=Math.round((_root.getBytesLoaded()/_root.getBytesTota l())*100)+"% Complete";

try: 
var loader:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip("Empty_movieclip",1);
// move the next line to the end of your code
loader.loadClip("Creative-Outrage.swf",Empty_movieclip);
var preload:Object = new Object();
loader.addListener(preload);
// the next two lines should be in preload.onLoadProgress
//Preloader_movieclip.Bar_movieclip._xscale=(loadedBytes/totalBytes)*100;
//Preloader_movieclip.Loader_text=Math.round((loadedBytes/totalBytes)*100)+"% Complete";
preload.onLoadProgress = function (target,loadedBytes,totalBytes){
if (loadedBytes = totalBytes){
// (loadMovie("Creative-Outrage.swf",Empty_movieclip));  <-- comment out or remove this line
removeMovieClip("Preloader_movieclip");
else {
gotoAndPlay(1);
it's still not displaying any gradual progress, it just displays the full progress bar immediately even when i simulate a download and it's not loading the external file either.

Similar Messages

  • Preloader Script Problem

    Hi;
    Please advise on this error:
    Scene 1, Layer 'PreLoader', Frame 1, Line 1
    1087: Syntax Error: extra characters found after end of program
    onClipEvent (enterFrame) {
            loading = _parent.getBytesLoaded();
            total = _parent.getBytesTotal();
        if (percent == undefined) percent = 0;
            percent -= (percent-((loading/total)*100))*.25;
            per = int(percent);
            percentage = per+"%";
            loadBar._width = per;
            if (percent>99) {
                    _parent.gotoAndStop(2);
    TIA,
    beno

    that's as2 and in as2 that code would have to be attached to a movieclip, not a timeline.
    in as3, no code can be attached to an object.  as3 does have an enterframe event.
    attached to your main timeline:
    this.addEventListener(Event.ENTER_FRAME,f);
    var percent:Number=0
    function f(e:Event){
        var loading:uint = loaderInfo.bytesLoaded;
            var total:uint = loaderInfo.bytesTotal;
            percent -= (percent-((loading/total)*100))*.25;
            loadBar.width = percent;
            if (percent>99) {
           gotoAndStop(2);

  • Logical Arrangement of Preloader Script

    Hi,
    I have created one swf which does following two things;
    1. Once it gets loaded in HTML on server it will pass Flashvar to HTML. if flash var from swf and HTML both will match then only swf should play.
    2. It will also have Preloader
    independently both the scripts work perfectly. But when i compile both in one file then it dosent work in following cases;
    Case 1- preloader script first and then flashvar:= this preloads file perfectly but dosent pass flashvar
    Case 2- flashvar first and then Preloader:= this works perfectly when i test my file Locally but once i upload it to server then it dosent work for Preloader
    what should be my logical sequence or options in this?
    I am using "Event.ENTER_FRAME" for Preloder and "Event.COMPLETE" for flashvar...is there any mistake?
    //////////////PRELOADER//////////////////
    stop();
    this.addEventListener(Event.ENTER_FRAME, myMovieLoading);
    function myMovieLoading(e:Event):void {
        var total:Number = this.stage.loaderInfo.bytesTotal;
        var loaded:Number = this.stage.loaderInfo.bytesLoaded;
        preloader_mc.bar_mc.scaleX = loaded/total;
        loadInfoText.text = Math.floor((loaded/total)*100)+ "%";
        if (total == loaded) {
            play();
            this.removeEventListener(Event.ENTER_FRAME, myMovieLoading);
    ////////////INITIALISING MOVIE///////////////
    var keyLoader:URLLoader = new URLLoader();
    keyLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    keyLoader.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    keyLoader.addEventListener(Event.COMPLETE, loading);
    keyLoader.load(new URLRequest("C:/keytext.txt"));
    function onLoadError(evt:IOErrorEvent):void
        loadmyHTML();
    var myFlashVar:String;
    var ver:String;
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (ver in paramObj)
        myFlashVar = String(paramObj[ver]);
    function loading(event:Event):void
        if (keyLoader.data.passKey == "pass1")
        else if (myFlashVar=="pass1")
        else
            stop();
            parent.removeChild(this);
    function loadmyHTML():void
        if (myFlashVar!="pass1")
            stop();
            parent.removeChild(this);

    in your loaded code there is
    keyLoader.load(new URLRequest("C:/keytext.txt"));
    please see this will not be found on the server thus it may have problem in loading it on serveer while it run local machine. please try replacing the keytext.txt file path to a relative path which can also be found on the server.
    hope this would help you,

  • The external preloader doesn't wait?

    Hello! I have a new dilemma concerning external preloaders.
    Now I found out that sometimes external preloaders don't wait to load the entire swf file before this last one runs.
    I read a few tutorials, specifically this: http://sierakowski.eu/list-of-tips/45--two-ways-of-preloading-in-actionscript-3.html.
    I understood the concept and I applied both explained methods, but still couldn't find a solution: the swf file runs before the preloader finishes to load.
    Can anybody help me?
    This is my code (useless) so far:
    import flash.display.MovieClip;
    var myLoadedMovieClip:MovieClip;
    var contentLoader:Loader;
    loadContent("Index11.swf");
    function loadContent(url:String):void
        contentLoader = new Loader();
        contentLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loading);
        contentLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, contentLoaded);
        contentLoader.load(new URLRequest(url));
    function contentLoaded(evt:Event):void
        myLoadedMovieClip = MovieClip(contentLoader.content);
        myLoadedMovieClip.play();
        removeChild(progressbar);
        addChild(myLoadedMovieClip);
    function loading(evt:ProgressEvent):void
        var loaded:Number = evt.bytesLoaded / evt.bytesTotal;
        setBarProgress(loaded);
    function setBarProgress(value:Number)
        progressbar.bar.scaleX = value;
        contentLoader.visible = true;

    Thank you Kglad!
    Thanks to your questions, I realised there wasn't a problem with the code you gave me at all.
    It was MY problem. I got confused and I should be more systematic and organised with my files.
    Now everything works fine.
    I leave the code properly written, in case anyone needs to see it:
    from the External preloader:
    import flash.display.MovieClip;
    var myLoadedMovieClip:MovieClip;
    var contentLoader:Loader;
    loadContent("Index11.swf");
    function loadContent(url:String):void
        trace("start load");
        contentLoader = new Loader();
        contentLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loading);
        contentLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, contentLoaded);
        contentLoader.load(new URLRequest(url));
    function contentLoaded(evt:Event):void
        trace("loaded");
        myLoadedMovieClip = MovieClip(contentLoader.content);
        myLoadedMovieClip.play();
        removeChild(progressbar);
        addChild(myLoadedMovieClip);
    function loading(evt:ProgressEvent):void
        var loaded:Number = evt.bytesLoaded / evt.bytesTotal;
        setBarProgress(loaded);
    function setBarProgress(value:Number)
        progressbar.bar.scaleX = value;
        contentLoader.visible = true;
    And in the swf file:
    first frame (with blank keyframes in the timelines):
    stop();
    trace("frame",1);
    second frame:
    trace("frame",2);
    my url is: http://gabrielates.com/
    Thanks again!

  • Music begins playing before my external preloader is complete. Can anyone help?

    Hi, I'm hoping someone can help with this. My code for the external preloader is below: (not sure why the odd boxes are showing up)
    function launchSWF(vBox, vFile):void{
    var swfLoader:Loader = new Loader();
    //vBox.addChild(swfLoader);
    var swfURL:URLRequest = new URLRequest(vFile);
    swfLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
    swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadProdComplete);
    swfLoader.load(swfURL);
    function loadProdComplete(e:Event):void {
    trace("swf file loaded");
    vBox.removeChild(preLoader);
    vBox.addChild(swfLoader);
    currentSWF = MovieClip(swfLoader.content);
    currentSWF.gotoAndPlay(1);
    currentSWF.addEventListener(Event.ENTER_FRAME , checkLastFrame);
    function checkLastFrame(e:Event):void {
    if (currentSWF.currentFrame == currentSWF.totalFrames) {
         currentSWF.stop();
        // trace("DONE");    
    var preLoader:loader = new loader();
    preLoader.x = 345;
    preLoader.y = 340;
    vBox.addChild(preLoader);
    function onProgressHandler(event:ProgressEvent){
    var dataAmountLoaded:Number=event.bytesLoaded/event.bytesTotal*100;
    preLoader.bar.scaleX = dataAmountLoaded/100;
    preLoader.lpc.text= int(dataAmountLoaded)+"%";
    trace(preLoader.bar.scaleX );
    var container:MovieClip = new MovieClip();
    var swfFile:String = 'WashingtonGas.swf';
    var currentSWF:MovieClip = new MovieClip();
    launchSWF(container, swfFile);
    //put it on stgae
    addChild(container);
    Thank you!

    I think the problem is that my as3 knowledge is too limited for me to do anything other than directly follow a tutorial, use code snibbets, etc. I'm feeling like this should be easy but even with your suggestions, its not coming together, unfortunately.
    When I add the sound via actionscript, it still loads too early and I also then can't figure out how to turn it on/off with the button I have in the swf. When I add a simple play(); and stop(); it only stops my animation in the swf. Here is my working url in case that sparks anything!
    http://www.rowhouseco.com/WashingtonGas/

  • Calling an external shell-script?

    Hello everybody,
    I only have a short question: How can I easily call an external shell-script in PL/SQL? I need this to make new directories ...
    thx for help

    Re: is ADF free??
    We have a problem when we want to create a portlet base on WebClipping Port
    How to customize login page in 11.5.10.2?

  • Time machine, finder save to external hard drive problems

    I have a new 2.26 GHz mini and I wanted to get bootcamp going and install windows xp. The instructions suggested to backup the hard drive and I thought this is a great time to try the time machine. I plugged in a external hard drive, opened time machine (Time machine said it needed 29 GB for full backup and the drive had 32 GB free), selected the drive, and let the "backup count down(I think it was a minute and a half)" run down to zero. Time machine started backing up the my main drive to the external drive no problem. It was running good (100MB in 5-10 seconds) for a little while when I noticed that it had reached 2.3 GB and was not going any higher. I let it stay like that for about 5 minutes thinking that maybe it would start going again. No luck. I shut down time machine and saw a finder window with the progress bar behind it saying 2.3 GB. I push the stop button and it said stopping, but it would not stop and disappear like it should. I relaunch the finder and the icons on the desktop disappeared and would not come back. I relaunched repeatedly but they would not come back. Since the bar at the top of the screen would not come back I had to hold in the power button to shut down the computer.
    Upon restart everything seemed to work fine until I tried time machine again and it would not work. So I tried to manually backup the files to the external drive. When I copied some files the little finder window popped up and said, zero KB of 290 MB, and would not change. I left it running while opened a browser and did a search for an answer to my problems. After about a half an hour I went back and saw that some files had been transferred. When I looked in the Activity monitor, I saw it was saving the files very slowly. I went to the finder progress bar and when I hit the stop button, it would say stopping but it wouldn't. I would have to relaunch the finder to make it stop. Then I tried to copy the files to a shared drive on my network and the same thing happens.
    Before using the time machine both these drives worked no problems. I went to the shared drive computer and used that machine to copy the files from the mini. All files transferred no problems. So now I'm trying to find out what is wrong with my mini. It seems that it has to do with the finder since it effects both the usb and ethernet hard drives. All other functions work as they should. I don't know if anyone has had this problem after using time machine but any help would be appreciated.
    Also I tried deleting my com.apple.finder.plist and relaunch the finder. No change.
    Scott

    Batlo wrote:
    (Time machine said it needed 29 GB for full backup and the drive had 32 GB free)
    That's much too small for your backups. Time Machine usually needs 2-3 times the space of the data it's backing-up (see #1 in the Frequently Asked Questions *User Tip,* also at the top of this forum).
    I noticed that it had reached 2.3 GB and was not going any higher. I let it stay like that for about 5 minutes thinking that maybe it would start going again. No luck. I shut down time machine and saw a finder window with the progress bar behind it saying 2.3 GB.
    That sounds like the drive is not formatted properly. See #C1 in the Start with the Time Machine - Troubleshooting *User Tip,* also at the top of this forum.
    The other problems may have the same cause.
    Most likely, it's set up for Windoze and not suitable for Time Machine. With only 32 GB free, you must have other data on the drive, so you probably can't erase it and reformat it for Time Machine.
    Report back with your findings for the *Partition Map Scheme* and Format of the drive (per #C1), and we can figure out what to do next.

  • Full browser external preloader

    I have a preloader and on completion it loads an external .swf. My external swf has full browser actionscript. How can I get the external PRELOADER to load the external swf and retain its full browser settings?
    This is my preloader actionscript:
    var l:Loader = new Loader();
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
    l.load(new URLRequest("tester.swf"));
    function loop(e:ProgressEvent):void
    var perc:Number = e.bytesLoaded / e.bytesTotal;
    percent.text = Math.ceil(perc*100).toString();
    function done(e:Event):void
    removeChildAt(0);
    percent = null;
    addChild(l);

    I did that, the external swf still loads at the movie size as opposed to the full width/height of the browser

  • Media file path in IP IVR - Run external VRU script

    Hi all,
    I am configuring ICM script by using run external vru script which is located in IP IVR server. But, I am not sure how pass media file path from ICM script to VRU script.
    Last time, I used  IVR version 7.0. I set the path such as: c:\MediaServer\english. Now, I am running IVR version 10 with en_US language.
    Any advise?
    Thuc

    Hi,
    I try to your guide but still silent. Log file is:
    01 15:10:42.398 ICT %MIVR-SS_CMT-7-UNK:init:: flushDTMF=true DTMFBuffer.size=0
    344389: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-PROMPT_ERROR_IGNORED:Prompt error ignored: Exception=com.cisco.prompt.UndefinedPromptException: unable to append prompt: Vietnamese\Loichao.wav; nested exception is: 
    java.io.IOException: file not found: Vietnamese\Loichao.wav
    344390: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-EXCEPTION:com.cisco.prompt.UndefinedPromptException: unable to append prompt: Vietnamese\Loichao.wav; nested exception is: 
    344391: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: java.io.IOException: file not found: Vietnamese\Loichao.wav
    344392: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.prompt.FilePrompt.appendTo(FilePrompt.java:229)
    344393: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.prompt.DocumentPrompt.appendTo(DocumentPrompt.java:264)
    344394: Apr 01 15:10:42.398 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.prompt.ConcatenatedPrompt.appendTo(ConcatenatedPrompt.java:169)
    344395: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTDialogImpl.appendPrompt(CMTDialogImpl.java:165)
    344396: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTDialogImpl.playCompositePrompt(CMTDialogImpl.java:140)
    344397: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTDialogImpl.playInitialPrompt(CMTDialogImpl.java:110)
    344398: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTDialogImpl.playPrompt(CMTDialogImpl.java:92)
    344399: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTSimpleRecognitionDialogImpl.dialogLoop(CMTSimpleRecognitionDialogImpl.java:109)
    344400: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.cmt.dialogs.CMTSimpleRecognitionDialogImpl.run(CMTSimpleRecognitionDialogImpl.java:87)
    344401: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.ApplicationManagerImpl$TaskImpl$ActionImpl.run(ApplicationManagerImpl.java:7757)
    344402: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.ApplicationManagerImpl$TaskImpl.doInterruptible(ApplicationManagerImpl.java:7560)
    344403: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.dialog.DialogObjectImpl.invoke(DialogObjectImpl.java:632)
    344404: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.steps.ivr.MenuStep.execute(MenuStep.java:394)
    344405: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.obj.WFBeanStep.executeImpl(WFBeanStep.java:141)
    344406: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.obj.WFStep.execute(WFStep.java:174)
    344407: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.obj.WFWorkflowTask.executeStep(WFWorkflowTask.java:494)
    344408: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.WFEngineWorkflowTask.executeStep(WFEngineWorkflowTask.java:122)
    344409: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.WFWorkflowAppDebugTaskWrapper.executeStep(WFWorkflowAppDebugTaskWrapper.java:416)
    344410: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.obj.WFWorkflowTask.execute(WFWorkflowTask.java:360)
    344411: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.WFEngineWorkflowTask.execute(WFEngineWorkflowTask.java:77)
    344412: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.WFWorkflowAppDebugTaskWrapper.execute(WFWorkflowAppDebugTaskWrapper.java:736)
    344413: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.TaskManager.runTaskNormally(TaskManager.java:416)
    344414: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.TaskManager.runTask(TaskManager.java:371)
    344415: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.Invoker.invoke(Invoker.java:85)
    344416: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.ApplicationManagerImpl$TaskImpl.subinvoke(ApplicationManagerImpl.java:4658)
    344417: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.ApplicationManagerImpl.subinvoke(ApplicationManagerImpl.java:2204)
    344418: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.Application.subinvoke(Application.java:276)
    344419: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.subsystems.ged125.ICMApplication.invokeWorkflow(ICMApplication.java:154)
    344420: Apr 01 15:10:42.399 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.subsystems.ged125.ICMApplicationTask.invokeWorkflow(ICMApplicationTask.java:684)
    344421: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.subsystems.ged125.ICMApplicationTask.runScript(ICMApplicationTask.java:1382)
    344422: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wf.subsystems.ged125.ICMApplicationTask.execute(ICMApplicationTask.java:2468)
    344423: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.app.impl.WFAppTaskWrapper.execute(WFAppTaskWrapper.java:291)
    344424: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.TaskManager.runTaskNormally(TaskManager.java:416)
    344425: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.TaskManager.runTask(TaskManager.java:371)
    344426: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.wfframework.engine.core.TaskManager$RunnableTask.run(TaskManager.java:589)
    344427: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.executor.impl.ExecutorStubImpl$RequestImpl.runCommand(ExecutorStubImpl.java:690)
    344428: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.executor.impl.ExecutorStubImpl$RequestImpl.run(ExecutorStubImpl.java:486)
    344429: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.executor.impl.ExecutorStubImpl$RequestImpl.run(ExecutorStubImpl.java:762)
    344430: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:776)
    344431: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.executor.impl.PooledExecutorStubImpl$1$WorkerImpl.run(PooledExecutorStubImpl.java:99)
    344432: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.util.ThreadPoolFactory$ThreadImpl.run(ThreadPoolFactory.java:853)
    344433: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: nested stack trace is: 
    344434: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: java.io.IOException: file not found: Vietnamese\Loichao.wav
    344435: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.prompt.FilePrompt.appendTo(FilePrompt.java:229)
    344436: Apr 01 15:10:42.400 ICT %MIVR-LIB_MEDIA-3-EXCEPTION: at com.cisco.prompt.DocumentPrompt.appendTo(DocumentPrompt.java:264)

  • Satellite L850 - external 1080p display problems

    I had been running my Satellite L850 laptop via HDMI to an external monitor without problem for many months.
    A couple of weeks ago I attempted to update the catalyst driver and have had problems ever since.
    Basically now when I select 1080p mode via the catalyst control panel it makes the screen flash and have vertical lines.
    Occasionally it will work for a short period, even up to an entire day and than it will randomly start again. I can play a game in 1080p mode and it will be totally random, sometimes allowing me to play for hours without having the black screen flashes whilst other times it will flash constantly and the only way to resolve is to either restart or pull out the HDMI cable and plug back in and cross your fingers you have enough time to reopen catalyst and change to 720P which is always stable.
    I have tried:
    1. Using the AMD Catalyst removal tool and reinstalling via the original factory default Toshiba catalyst drivers
    2. Using System Restore to go back before I made the changes
    3. Using the AMD Catalyst removal tool and updating to the newest version via AMD website.
    4. Reinstalling my chipset drivers along with #1
    5. Tried a different monitor (still happens)
    On a side note every time I use the removal tool it removes my USB drivers also and I have to reinstall.
    The current graphics driver is AMD Radeon HD 7670M and I have also tried the solution on the tech support forum here http://www.mytoshiba.com.au/support/item/781.
    I have run out of options other than a complete format and reinstall which I want to avoid if possible. Any suggestions would be greatly appreciated.
    Thanks in advance

    Probably your problem has nothing to do with the picture issue mentioned in the technical document posted by MisterX.
    I could read in your first post above, that this issue appeared exactly after the driver update.
    > A couple of weeks ago I attempted to update the catalyst driver and have had problems ever since.
    Are you 100% sure that the display driver update has caused this problem?
    You have also mentioned that this issue does not appear always but sporadically and every once in a while.
    From my point of few there are some open questions:
    1) Is it really an graphic card driver problem or maybe an GPU issue?
    If the issue did not appear in the past (before the GPU driver update) then yes: it could be related to the driver.
    2) The notebook support also an Intel HD graphic card (its part of the Intel CPU)
    I think you should check if the same issue would appear using the Intel GPU.
    Try to uninstall the AMD driver (from device manager as well as from programs & features are within the control panel) and test it using Intel GPU only.
    3) Last but not least test the notebooks video output with fresh recovered notebook. After the recovery the graphic card driver should be the same which you have used before the update.

  • Saved File Groups Issue in Bridge Center - script problem?

    Hi all,
    I tried posting this in the Bridge forum with no replies. After browsing through this forum I'm wondering if this is a script problem?
    I have the CS2 premium, and use all packages. The problem I have is saving and retrieving files in the 'Saved File Groups' of Bridge Center. I can save Photoshop files no problem, but the idea is to be able to save other files from open applications in the group and then to recall them later. I can save Illustrator files with others in a group but only Photoshop files open, and it ignores the saved Illustrator files.
    With my InDesign files, it does not even recognise them as files to be saved. I can have a file open, click on "Save open files into a file group" and it will come up with a little box saying there are no open files to save!
    OS - XP sp2. Bridge 1.0.2
    If this can be helped with scripting, please explain clearly, I am a graphic designer and no very little indeed about scripting.
    Your help would be appreciated.
    Thanks,
    Thysje Arthur

    Hi,
    Do you mean that Windows displays “Network Shortcuts” folder when you click “Browse” icon? If so, please check if you configure the default local file location to the “Network Shortcuts” folder. You could refer to the image below to find the option of the default
    local file location.
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • When I try to go to icloud I get 'script problem' and cannot enter. Could someone please advise me what to try. Thanks.

    When I try to go to ilcoud I get 'script problem' and can't enter. Please advise what I should try. Thanks.

    I use e-trade and a couple of times, years back, I found them behind the Java updates.
    So, now I install new Java platforms on my backup disk and test the streaming data on that first because I know it will be over-written that evening with my nightly backup.
    Of course, since I began doing that there hasn't been a problem. Do the same with printer driver updates.
    Anyway, call ScottTrade and howl! Tell them how many Macs are out there and why aren't they in Apple Developers Program?

  • OS X Lion - JAVA SCRIPT PROBLEM

    I recently updated from Snow Leopard to OS X Lion. Now I seem to have a JAVA Script problem. Where do I start fixing this issue. I have checked updates etc etc but it seems to be updated. However, when I login to my web site backend, I have a problem. Any advice please?

    Would you please write some more details? explain the problem and what web site backend you use. Thanks.

  • Firefox 31.0 - slowness and script problems for using websites

    Since Firefox 31.0 is released, some technical problems of slowness and script problems to use
    websites have been noticed from mine. Sometimes it needs up to some minutes to load a website
    and sometimes there are error messages for an unanswered script.
    pemigabo123

    Hello FredMcD,
    thank you for your message.
    But your answer to my question at support.mozilla.org is not helpful,
    although it is a professional technical answer from a Top 10 Contributor
    from mozilla.
    It seems that there is a permanent unfixed problem always if a new
    version of mozilla is released. After all fixed problems of the earlier
    version of firefox, there is no problem at all.
    But if I am already working with the non-problem earlier version of
    firefox, then suddenly the problems of error messages, slowness and
    script errors are appearing, and if I have looked for the actual version
    of firefox, there was signed a new version and now I have known,
    aha a new vesion of firefox was released and it needs up some time
    for every new version until the error problems were fixed.
    Maybe it is combined with the plugins like flashplayer or shockwave.
    But a professional version of firefox should not sign up error messages,
    because of plugins, while working with these plugins.
    Another answer from another support.mozilla.member was for an
    overload problem, because of opening some windows of firefox.
    But to open many windows of firefox was already no problem with the
    earlier version firefox 30.0 or earlier, until the error messages are fixed.
    The same unfixed problems are since firefox 25.0 up to 30.0, but I was
    wondering for how long version 30.0 was actual in practical working.
    And since version of firefox 31.0 was released the same problems
    of error messages, slowness and script errors were appearing.
    At the moment it seems firefox 31.0 works alright.
    But only the following time shows if it works without error messages,
    slowness and sript problems or not.
    In hope to give a helpful answer to yours
    kind regards
    pemigabo123

  • External Hard Drive Problem with latest Upgrade

    Since my lastest software update on my mac mini (the most recent, only a few days ago), my external hardrive has been reading (loudly, this is the problem) a chunk of data, about a MB or so, to the processor every 60-90 seconds. none of it is being written. there's no CPU usage (i just watched the activity monitor for a while). It happens even more frequently when I'm using itunes (stored on the Ex HD).
    My hard drive is a LaCie with firewire connection.
    Any ideas, anyone?
    Thanks.

    JOrdan,
    You write that everything functions as normal with the external drive disconnected.
    Then (if I am surmising correctly) when you reconnect the external drive., the problem returns.
    From this, I infer that your computer, without the external drive, is perfectly able to perform all of its functions.
    But there is something on the external drive that requires some of these functions to be performed on it - a file of some sort that is set to be regularly checked and updated in some way.
    So it sounds to me as if you might want to take a look at everything you have on the external drive, and try to pin down that one thing that is asking the computer to do work on it.

Maybe you are looking for