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/

Similar Messages

  • Preloader Syntax Error

    Need help with ActionScript 2.0 and Player 9. I am trying to
    update my flash pages with Player 9.0 and discovered an
    incompatibility with the preloader code. I keep getting this
    message:
    **Error** Symbol=preloader, layer=background, frame=1, Line
    6: Syntax error.
    _parent.bytes = int(isloaded/1000) add " KB of " add
    int(total/1500) add " KB";
    **Error** Symbol=preloader, layer=background, frame=1, Line
    7: Syntax error.
    _parent.percent = int(p) add "% LOADED";
    Total ActionScript Errors: 2, Reported Errors: 2
    Any help would be greatly appreciated. Thanks!

    With Flash CS3 the "add" operator was removed -- it had been
    depriciated sinc Flash 6 (I think).
    So use "+" instead. Like this:
    _parent.bytes=int(isloaded/1000) + " KB of "+int(total/1500)
    +" KB."

  • Adobe Muse only give me the actionscript error message... I tried all solutions posted in this forum

    Hey so here the log I get wehn the actionscript error pops up..
    Hope this helps.
    Thanks for the help.
    Error: HTMLLoader failed to initialize
              at flash.html::HTMLLoader/initHTMLEngine()
              at flash.html::HTMLLoader()
              at mx.core::FlexHTMLLoader()
              at mx.core::ClassFactory/newInstance()
              at mx.controls::HTML/createChildren()
              at com.adobe.muse.widgets::MuseHTML/createChildren()
              at mx.core::UIComponent/initialize()
              at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
              at mx.core::UIComponent/addChildAt()
              at spark.components::Group/addDisplayObjectToDisplayList()
              at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()
              at spark.components::Group/setMXMLContent()
              at spark.components::Group/createChildren()
              at mx.core::UIComponent/initialize()
              at com.adobe.muse.widgets::BaseAttachingWidget/initialize()
              at com.adobe.pash.ui::DocumentCanvas/initialize()
              at com.adobe.pash.ui::PreviewCanvas/initialize()
              at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
              at mx.core::UIComponent/addChildAt()
              at spark.components::Group/addDisplayObjectToDisplayList()
              at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()
              at spark.components::Group/setMXMLContent()
              at spark.components::Group/createChildren()
              at mx.core::UIComponent/initialize()
              at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
              at mx.core::UIComponent/addChildAt()
              at spark.components::Group/addDisplayObjectToDisplayList()
              at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()
              at spark.components::Group/setMXMLContent()
              at spark.components::Group/createChildren()
              at mx.core::UIComponent/initialize()
              at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
              at mx.core::UIComponent/addChildAt()
              at spark.components::Group/addDisplayObjectToDisplayList()
              at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()
              at spark.components::Group/setMXMLContent()
              at spark.components::Group/createChildren()
              at mx.core::UIComponent/initialize()
              at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
              at mx.core::UIComponent/addChildAt()
              at spark.components::Group/addDisplayObjectToDisplayList()
              at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()
              at spark.components::Group/setMXMLContent()
              at spark.components::Group/set mxmlContent()
              at spark.components::SkinnableContainer/set mxmlContent()
              at spark.components::SkinnableContainer/createDeferredContent()
              at spark.components::SkinnableContainer/createContentIfNeeded()
              at spark.components::SkinnableContainer/createChildren()
              at spark.components::Application/createChildren()
              at mx.core::UIComponent/initialize()
              at spark.components::Application/initialize()
              at spark.components::WindowedApplication/initialize()
              at com.adobe.pash.air::PASHonAIRApplication/initialize()
              at MuseOnAIR/initialize()
              at mx.managers.systemClasses::ChildManager/childAdded()
              at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()
              at mx.managers::SystemManager/initializeTopLevelWindow()
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at mx.preloaders::Preloader/timerHandler()
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()

    Is it possible you're using a case-sensitive file system on your new mac?
    Can you make sure you've got the latest version of Adobe AIR installed?
    http://get.adobe.com/air/
    Also, you may want to try joining the muse prerelease program at museprerelease.com
    The new beta version is unlikely to have this problem.

  • Preloader Actionscript problem

    As a relative newcomer to Actionscript, I came across a
    preloader tutorial (from a trusted source) which reveals a cut out
    photograph as the movie loads. I decided to use it, but although I
    have checked and double-checked the Actionscript, Flash 2004 keeps
    reporting an error and the preloader is not working.
    The problem is obviously in line 6 and I just thought that
    someone might be able to look at the Actionscript and see the
    problem (which I can't!).
    Here's the Actionscript;
    stop();
    mask_mc._height = 1;
    this.onEnterFrame = function() :Void {
    var loadedData:Number = this.getBytesLoaded();
    var allData:Number = this.getBytesTotal();
    var percent:Number = Math.round(loadedData/allData=100);
    mask_mc._yscale = percent;
    if (loadedData>=allData) {
    gotoAndStop(10);
    delete this.onEnterFrame;
    Here's the error report from Flash;
    **Error** Scene=Scene 1, layer=Actions, frame=1:
    Line 6: Left side of assignment operator must be variable or
    property.
    var percent:Number = Math.round(loadedData/allData=100);
    Total ActionScript Errors: 1 Reported Errors: 1
    Many thanks for any help.

    you have an assignment operator (=) where you should have a
    multiplication operator (*) at the END of that line.

  • OpenScript ActionScript Error from Adobe Flash Player 9

    I get a popup ActionScript Error from Adobe Flash Player 9 when trying to record a Flex Tree object using OpenScript 9.2.1.0 Production. Specifically, I click on the Triangle that opens/closes the view of the child nodes underneath the parent node of a Tree. Initially, the triangle arrow already pointing down and the child node is already showing. When I click on the triangle, the node underneath goes up and disappears under its parent node and the traingle is then pointing to the parent node.
    When I click this triangle in Firefox without OpenScript recording, I don't get any errors, popups, or issues. It seems to work correctly. During OpenScript recording, the recording seems to crash with a popup that is titled "Adobe Flash Player 9" and has the text "An ActionScript error has occurred" with the following error message:
    Error: Unable to find automation method 'mx.events.TreeEvent' for class '[object OSAutomationClass]'.
         at mx.automation::AutomationManager/recordAutomatableEvent()[C:\work\flex\dmv_automation\projects\automation\src\mx\automation\AutomationManager.as:1680]
         at mx.automation.delegates.core::UIComponentAutomationImpl/recordAutomatableEvent()[C:\work\flex\dmv_automation\projects\automation\src\mx\automation\delegates\core\UIComponentAutomationImpl.as:281]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9156]
         at mx.controls::Tree/http://www.adobe.com/2006/flex/mx/internal::dispatchTreeEvent()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\controls\Tree.as:3334]
         at mx.controls::Tree/http://www.adobe.com/2006/flex/mx/internal::onTweenEnd()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\controls\Tree.as:2193]
         at mx.effects::Tween/endTween()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:524]
         at mx.effects::Tween/http://www.adobe.com/2006/flex/mx/internal::doInterval()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:565]
         at mx.effects::Tween$/timerHandler()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:179]
         at flash.utils::Timer/_timerDispatch()
         at flash.utils::Timer/tick()
    I can click "Dismiss All" from the Adobe popup and Firefox isn't affected. Openscript doesn't appear to have any issues and the recording can be continued or stopped. It records the click on the tree and the "Dismiss All" from the popup both as "Click object("@id='main'") as type "web" instead of "flexFT".
    I am using OATS 9.2.1.0 with Firefox 3.6.17. I am testing a Flex 3.3 SDK built application. I installed the Adobe Flash Player 9 that came with the Flex SDK 3.3 before installing OATS.
    Any help on this issue is greatly appreciated.
    Some other information that may prove to be useful: I cannot seem to get OpenScript to consistently play back the actions on the same tree described above. Sometimes it works and sometimes it does not. I've tried using "Select Tree", "Select List", and "Click Tree" and each one is inconsistent on playback. It will report "Target Not Found".
    I have the console output for a "Target Not Found" failure below, where line 100 is ".select("GRID1>server1", TriggerEvent.Mouse," from the following Java generated on recording with OpenScript:
    flexFT
    .list(
    15,
         "/web:window[@index='0' or @title='My Title']/web:document[@index='0']/flex:application[@automationIndex='index:-1' and @label='' and @className='main' and @automationName='main' and @automationClassName='FlexApplication' and @id='main']/flex:canvas[@automationIndex='index:1' and @label='' and @className='mx.containers.Canvas' and @automationName='mainCanvas' and @automationClassName='FlexCanvas' and @id='mainCanvas']/flex:dividedBox[@automationIndex='index:16' and @label='' and @className='view.MainMediator' and @automationName='mediator' and @automationClassName='FlexDividedBox' and @id='mediator']/flex:accordion[@label='' and @automationName='index:0' and @id='null' and @automationIndex='index:0' and @className='mx.containers.Accordion' and @automationClassName='FlexAccordion']/flex:canvas[@automationIndex='index:1' and @label='My%20View2' and @className='view.my.MyNavigator' and @automationName='My%20View2' and @automationClassName='FlexCanvas' and @id='null']/flex:canvas[@label='' and @automationName='index:1' and @id='null' and @automationIndex='index:1' and @className='mx.containers.Canvas' and @automationClassName='FlexCanvas']/flex:list[@automationIndex='index:2' and @className='view.MyGridTree' and @automationName='index:2' and @automationClassName='FlexList' and @id='null']")
    .select("GRID1>server1", TriggerEvent.Mouse,
         KeyModifier.None);
    think(1.0);
    Console Output:
    11:29:09,093 INFO [EntryPoint] Started with arguments: -port 7777 -jwg C:\OracleATS\OFT\test06_ff\test06_ff.jwg
    11:29:09,250 INFO [EntryPoint] Received StartScriptEvent
    11:29:09,250 INFO [EntryPoint] Running "test06_ff" ...
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.utilities.api.UtilitiesService"
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.browser.api.BrowserService"
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService"
    11:29:09,484 INFO [1] Initialized script service "oracle.oats.scripting.modules.webdom.api.WebDomService"
    11:29:09,484 INFO [1] Initialized script service "oracle.oats.scripting.modules.flexFT.api.FlexFTService"
    11:29:09,484 INFO [1] Initializing VU 1 for script test06_ff
    11:29:21,546 INFO [1] Step: [1] Redirect (/Page1/)
    11:29:21,718 INFO [1] Step: [2] Login Page (/main.html)
    11:29:32,218 INFO [1] Step: [3] My Title (/main.html)
    11:30:11,453 ERROR [1] Error in section Run at line (script.java:100). Target not found
    oracle.oats.scripting.modules.flexFT.common.api.internal.exceptions.FlexFTException: Target not found
         at oracle.oats.scripting.modules.flexFT.common.api.internal.utilities.FlexUtil.checkResults(FlexUtil.java:293)
         at oracle.oats.scripting.modules.flexFT.api.elements.AbstractFlexFTElement.replayEvent(AbstractFlexFTElement.java:99)
         at oracle.oats.scripting.modules.flexFT.api.elements.ListBase.select(ListBase.java:170)
         at script.run(script.java:100)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:325)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:717)
         at java.lang.Thread.run(Thread.java:619)
    11:30:11,453 ERROR [1] Iteration 1 failed at line (script.java:100). Target not found
    oracle.oats.scripting.modules.flexFT.common.api.internal.exceptions.FlexFTException: Target not found
         at oracle.oats.scripting.modules.flexFT.common.api.internal.utilities.FlexUtil.checkResults(FlexUtil.java:293)
         at oracle.oats.scripting.modules.flexFT.api.elements.AbstractFlexFTElement.replayEvent(AbstractFlexFTElement.java:99)
         at oracle.oats.scripting.modules.flexFT.api.elements.ListBase.select(ListBase.java:170)
         at script.run(script.java:100)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:325)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:717)
         at java.lang.Thread.run(Thread.java:619)
    11:30:12,468 INFO [1] Finished VU 1 for script test06_ff
    Thanks,
    John

    I get a popup ActionScript Error from Adobe Flash Player 9 when trying to record a Flex Tree object using OpenScript 9.2.1.0 Production. Specifically, I click on the Triangle that opens/closes the view of the child nodes underneath the parent node of a Tree. Initially, the triangle arrow already pointing down and the child node is already showing. When I click on the triangle, the node underneath goes up and disappears under its parent node and the traingle is then pointing to the parent node.
    When I click this triangle in Firefox without OpenScript recording, I don't get any errors, popups, or issues. It seems to work correctly. During OpenScript recording, the recording seems to crash with a popup that is titled "Adobe Flash Player 9" and has the text "An ActionScript error has occurred" with the following error message:
    Error: Unable to find automation method 'mx.events.TreeEvent' for class '[object OSAutomationClass]'.
         at mx.automation::AutomationManager/recordAutomatableEvent()[C:\work\flex\dmv_automation\projects\automation\src\mx\automation\AutomationManager.as:1680]
         at mx.automation.delegates.core::UIComponentAutomationImpl/recordAutomatableEvent()[C:\work\flex\dmv_automation\projects\automation\src\mx\automation\delegates\core\UIComponentAutomationImpl.as:281]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9156]
         at mx.controls::Tree/http://www.adobe.com/2006/flex/mx/internal::dispatchTreeEvent()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\controls\Tree.as:3334]
         at mx.controls::Tree/http://www.adobe.com/2006/flex/mx/internal::onTweenEnd()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\controls\Tree.as:2193]
         at mx.effects::Tween/endTween()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:524]
         at mx.effects::Tween/http://www.adobe.com/2006/flex/mx/internal::doInterval()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:565]
         at mx.effects::Tween$/timerHandler()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\effects\Tween.as:179]
         at flash.utils::Timer/_timerDispatch()
         at flash.utils::Timer/tick()
    I can click "Dismiss All" from the Adobe popup and Firefox isn't affected. Openscript doesn't appear to have any issues and the recording can be continued or stopped. It records the click on the tree and the "Dismiss All" from the popup both as "Click object("@id='main'") as type "web" instead of "flexFT".
    I am using OATS 9.2.1.0 with Firefox 3.6.17. I am testing a Flex 3.3 SDK built application. I installed the Adobe Flash Player 9 that came with the Flex SDK 3.3 before installing OATS.
    Any help on this issue is greatly appreciated.
    Some other information that may prove to be useful: I cannot seem to get OpenScript to consistently play back the actions on the same tree described above. Sometimes it works and sometimes it does not. I've tried using "Select Tree", "Select List", and "Click Tree" and each one is inconsistent on playback. It will report "Target Not Found".
    I have the console output for a "Target Not Found" failure below, where line 100 is ".select("GRID1>server1", TriggerEvent.Mouse," from the following Java generated on recording with OpenScript:
    flexFT
    .list(
    15,
         "/web:window[@index='0' or @title='My Title']/web:document[@index='0']/flex:application[@automationIndex='index:-1' and @label='' and @className='main' and @automationName='main' and @automationClassName='FlexApplication' and @id='main']/flex:canvas[@automationIndex='index:1' and @label='' and @className='mx.containers.Canvas' and @automationName='mainCanvas' and @automationClassName='FlexCanvas' and @id='mainCanvas']/flex:dividedBox[@automationIndex='index:16' and @label='' and @className='view.MainMediator' and @automationName='mediator' and @automationClassName='FlexDividedBox' and @id='mediator']/flex:accordion[@label='' and @automationName='index:0' and @id='null' and @automationIndex='index:0' and @className='mx.containers.Accordion' and @automationClassName='FlexAccordion']/flex:canvas[@automationIndex='index:1' and @label='My%20View2' and @className='view.my.MyNavigator' and @automationName='My%20View2' and @automationClassName='FlexCanvas' and @id='null']/flex:canvas[@label='' and @automationName='index:1' and @id='null' and @automationIndex='index:1' and @className='mx.containers.Canvas' and @automationClassName='FlexCanvas']/flex:list[@automationIndex='index:2' and @className='view.MyGridTree' and @automationName='index:2' and @automationClassName='FlexList' and @id='null']")
    .select("GRID1>server1", TriggerEvent.Mouse,
         KeyModifier.None);
    think(1.0);
    Console Output:
    11:29:09,093 INFO [EntryPoint] Started with arguments: -port 7777 -jwg C:\OracleATS\OFT\test06_ff\test06_ff.jwg
    11:29:09,250 INFO [EntryPoint] Received StartScriptEvent
    11:29:09,250 INFO [EntryPoint] Running "test06_ff" ...
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.utilities.api.UtilitiesService"
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.browser.api.BrowserService"
    11:29:09,453 INFO [1] Initialized script service "oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService"
    11:29:09,484 INFO [1] Initialized script service "oracle.oats.scripting.modules.webdom.api.WebDomService"
    11:29:09,484 INFO [1] Initialized script service "oracle.oats.scripting.modules.flexFT.api.FlexFTService"
    11:29:09,484 INFO [1] Initializing VU 1 for script test06_ff
    11:29:21,546 INFO [1] Step: [1] Redirect (/Page1/)
    11:29:21,718 INFO [1] Step: [2] Login Page (/main.html)
    11:29:32,218 INFO [1] Step: [3] My Title (/main.html)
    11:30:11,453 ERROR [1] Error in section Run at line (script.java:100). Target not found
    oracle.oats.scripting.modules.flexFT.common.api.internal.exceptions.FlexFTException: Target not found
         at oracle.oats.scripting.modules.flexFT.common.api.internal.utilities.FlexUtil.checkResults(FlexUtil.java:293)
         at oracle.oats.scripting.modules.flexFT.api.elements.AbstractFlexFTElement.replayEvent(AbstractFlexFTElement.java:99)
         at oracle.oats.scripting.modules.flexFT.api.elements.ListBase.select(ListBase.java:170)
         at script.run(script.java:100)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:325)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:717)
         at java.lang.Thread.run(Thread.java:619)
    11:30:11,453 ERROR [1] Iteration 1 failed at line (script.java:100). Target not found
    oracle.oats.scripting.modules.flexFT.common.api.internal.exceptions.FlexFTException: Target not found
         at oracle.oats.scripting.modules.flexFT.common.api.internal.utilities.FlexUtil.checkResults(FlexUtil.java:293)
         at oracle.oats.scripting.modules.flexFT.api.elements.AbstractFlexFTElement.replayEvent(AbstractFlexFTElement.java:99)
         at oracle.oats.scripting.modules.flexFT.api.elements.ListBase.select(ListBase.java:170)
         at script.run(script.java:100)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:325)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:717)
         at java.lang.Thread.run(Thread.java:619)
    11:30:12,468 INFO [1] Finished VU 1 for script test06_ff
    Thanks,
    John

  • Actionscript error: HTTP request error

    Why do I get this kind of actionscript error? Everytime my page loads up this error immediately shows up:
    [RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://localhost/trytryjfsjfs-debug/total.php" errorID=2032]. URL: http://localhost/trytryjfsjfs-debug/total.php"]
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.2.0\frameworks\p rojects\rpc\src\mx\rpc\AbstractInvoker.as:220]
        at mx.rpc::Responder/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responder .as:53]
        at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AsyncR equest.as:103]
        at DirectHTTPMessageResponder/errorHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\ mx\messaging\channels\DirectHTTPChannel.as:362]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    I checked the said URL and this is my code of total.php:
    <?php
    $projName = mysql_real_escape_string($_POST["projNameTI"]);
    $query = "SELECT itemno, divno,descs,qty,unit,unitcost,qty*unitcost as subtotal, SUM(qty*unitcost) as total,psid,project_id FROM projectspecs
    Where project_id = (SELECT project_id FROM project where name='$projName')";
    $result = mysql_query($query) or die ("Query failed: ".mysql_error() ."Actual query: ". $query);
    ?>
    It seems that this code works perfectly
    Can someone please help me about this problem, just an explanation how to get this well.
    Hoping for a response.

    http://localhost/trytryjfsjfs-debug/total.php?projNameTI=3       (what ever you have as the id in the db.)
    try to use this URL in your browser and see what you are getting.

  • Error 2007 Some Actionscript error has occured

    I have tried the converter on a couple of modules that I have been working.  I have actually tried it on two differnet machines to make sure there wasn't something machine specific.  I am getting Error 2007 - Seom Actionscript error has occured.  Has anyone seen this?  Any idea what is casuing it? 
    I have just begun my exploration of the converted and this is my first couple of attempts so I could be doing somethign really obvious.
    This is a very basic simuation module with not much more than captions and click boxes.

    I've installed twice and always run as admin but same issue. If you hear anything else please let me know.
    Kerry Kuehn | Senior Vice President of Learning
    3333 East Camelback Road,  Suite 212
    Phoenix, AZ  85018
    602.840.1000 office
    816.695.3260 cell
    602.957.3057 fax
    [email protected]<mailto:[email protected]

  • ActionScript Errors From Updating to New Version of Adobe Flash Player

    I updated my flash player now I'm getting Actionscript errors i thought it was just web cam video related but i get more when i go to youtube that eventually make my computer freeze     this box pops up with no options but dismiss all or continue that keeps popping backup heres one example adobe better be able to fix this
    This is what happens when i go to the site
    Adobe Flash Player
    ActionScript error #1010 a term is undefined and has no properties
    at MfcVideo/nc_netStatusHandler()
    This is what happens when i try to leave the site
    at MfcVideo/nc_netStatusHandler()
    atflash.net::NetConnection/invoke()
    atflash.net::NetConnection/close()
    atMfcVideo/Disconnect()
    atFunction/http://adobe.com/AS3/2006/builtin::apply()
    atflash.external::Externallnterface$/_callln()
    atFunction/<anonymous>()
    Then if i stay my computer starts to freeze
    I looked through many sites and have not found anything that tells how to fix this stuff I need a straight step by step answer adobe should have a patch made for this kind of thing i have windows xp sp3 with and i use firefox i think i had this problem years ago but can't remember how i fixed it i was going to get help from customer service support but they made me do this instead what ever helps....Thanks in advance

    From where did you download that update?  Did you download the content debugger instead of the standard player?

  • Adobe Flash Player 10 ActionScript Error

    Lately I've been getting an error on Adobe that's stalling my AIM from working. It pops up as an actionscript error with the following;
    SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller http://cdn.eyewonder.com/100125/760649/1204318/DM_rich_234x60.swf cannot access http://at.atwola.com/adiframe/3.0/5113.1/221794/0/-1/size=234x60;noperf=1;alias=93302169;c fp=1;noaddonpl=y;kvmn=93302169;target=_blank;aduho=300;grp=137077271;misc=137077271.
    at flash.external::ExternalInterface$/_initJS()
    at flash.external::ExternalInterface$/addCallback()
    at EW()
    at EW$/getInstance()
    at EW$/initialize()
    at DM_rich_234x60_fla::MainTimeline/frame1()
    Is there anything I can do about this? It gives me the options to Dismiss All, Continue, or close the window. It only seems to be affecting AIM. I've tried reinstalling but that didn't fix anything.

    Looks like the ads loaded by the AIM program is causing this problem. What is the version for your Flash in IE? go here to check: http://kb2.adobe.com/cps/155/tn_15507.html

  • Help please? Static audio, Crashes, ActionScript Errors and more issues with Flash Player 16

    So, this is the first time I'm posting in here and I'm sorry if I mess up or smth.
    Anyway, this is what happened:
    - Firefox tells me Flash Player 15 is vulnerable
    - I update to the newest version
    - After the update I run into several things that are highly annoying.
    First of all:
    - I can't watch any livestreams anymore, neither on picarto nor on twitch. The video keeps loading and buffering, then works for a second or two and then goes back to buffering OR alternatively the video would stop whilst the sound continues or vice versa. (My wifi connection is super fast and I never had any problems until the update)
    - On youtube videos only load for a second or two, then the audio vanishes and the video crashes. (Never had that issue before, EVER)
    - The audio is incredibly wonky, aka, depending on the bass or sounds I hear static noises and weird sounds. (This only happens on videos that require flash, the sound is fine when playing CDs )
    - When watching videos and pausing it or going back a few seconds to rewatch something, the audio suddenly is completely gone.
    - Flash player crashes A LOT
    EDIT: Another Issue appeared:
    - When watchign videos using the Blip player (used by some websites) I get ActionScript errors which then result in crashes
    I'm using:
    Packard Bell EasyNoteLS
    Windows 7 Home Premium
    Firefox 34.0.5
    Adobe/Shockwave Flash 16.0.0.235
    What I've tried to do:
    - revert back to an older version of Flash (but it kept telling me to update so I gave up on it)
    - Try to enable "hardware accelaration" BUT, when right clicking on the Flash Symbol on Adobe's site FF freezes and tells me that Flash player crashed
    - Found out that I already have hardware accelaration enabled and it still keeps crashing
    - I deleted all of its local cache
    - downloaded and installed the debug version
    But none of it helped in the slightest.
    I really hope someone can help me fix this OR that adobe soon comes with a patch/update that fixes all these things ;_____;
    Thanks for reading and helping!

    Just to let you know, I don't tend to send all reports but here are a few from within the last week:
    [@ hang | WaitForMultipleObjectsEx | RealMsgWaitForMultipleObjectsEx | CCliModalLoop::BlockFn(void**, unsigned long, uns…
    https://crash-stats.mozilla.com/report/index/8f9d816a-8fa9-475a-9b6c-b660a2150109
    https://crash-stats.mozilla.com/report/index/a415ab2a-1321-4056-b263-83c212150109
    I tend to submit crash reports most of the times lately but yeah--
    Also, someting that really bugs me are these Actionscript errors because I can't upload a crash report for those--
    (they are more rare now but still happen occasionally)
    EDIT: Added photo of one of the Actionscript Errors when trying to play videos using the blip-player

  • Adobe Content Viewer An ActionScript error occured hatası verirse ne yapılmalı

    Adobe Content Viewer An ActionScript error hatası verirse
    Mac OSX kullanıcıları şunları yapabilir
    Öncelikle görünmez klasörleri görünür yapın. (Terminal vasıtasıyla yapılıyor, bunu şimdilik geçiyorum. Görünmez klasörleri görünür yaptığınızda, klasörü sağ tıklayıp açarak içeriğini görebilirsiniz)
    Kullanıcılar/Kullanıcı (Bilgisayar)/Kitaplık (Library)/Application support klasörüne gidin
    Application support klasörü içinde "com.adobe.dmp.contentviewer" klasörü var
    com.adobe.dmp.contentviewer klasörünü olduğu gibi çöpe atın ve silin.
    (Sildiğiniz için merak etmeyin Adobe Content Viewer'ı ilk çalıştırdığınızda, bu klasör otomatikman yenilenmiş olacaktır)
    Sorunu bu şekilde çözebilirsiniz.

  • Actionscript Error #2044 / Adobe Flash Player 9

    I got error message when I try the flash movie on firefox. ( IE no error )
    The Error message is:
    Error #2044
    Unhandled IOErrorEvent:.text:Error #2032:Stream Error.
    at index_fla::Main Timeline/frame1()
    An Actionscript error has occurred
    I searched it on google and adobe,  but nothing help me to solve this problem. Please help , urgently

    Ok. I put the .fla file.
    Also my first frame is like this:
    import flash.events.Event;
    import flash.media.ID3Info;
    import flash.media.Sound;
    import flash.display.Loader;
    import flash.utils.*;
    import flash.display.Sprite;
    import flash.net.URLRequest;
    import flash.net.URLVariables;
    import flash.net.URLRequestHeader;
    import flash.net.URLRequestMethod;
    import flash.net.URLLoader;
    var introflag:Boolean;
    if(introflag==false){
    var releaseSound:Sound = new Sound();
    var reqrelease:URLRequest = new URLRequest("./Sesler/release.mp3");
    releaseSound.load(reqrelease);
    releaseSound.play();
    introflag=true;
    stop();
    var haberf:Boolean=false;
    var etkinf:Boolean=false;
    var channelkit:SoundChannel=new SoundChannel();
    var kitapoku:Sound=new Sound();
    if(bkitaplik==true)
        bkitaplik=false;
        gotoAndStop(2);
    if(betkinlik==true)
        betkinlik=false;
        gotoAndStop(4);
    if(bhaber==true)
        bhaber=false;
        gotoAndStop(3);
    var bhaber:Boolean=false;
    var betkinlik:Boolean=false;
    var bkitaplik:Boolean=false;
    //verilen tarihi gün.ay.yıl şeklinde çeviriyor
             function dateToMMDDYYYY(aDate:Date):String {
             var SEPARATOR:String = ".";
             var mm:String = (aDate.month + 1).toString();
             if (mm.length < 2) mm = "0" + mm;
             var dd:String = aDate.date.toString();
             if (dd.length < 2) dd = "0" + dd;
             var yyyy:String = aDate.fullYear.toString();
             return dd + SEPARATOR + mm + SEPARATOR + yyyy;
    //butonlar sayfaya ekleniyo ve arkplan resmi atılıyo konumu belirtiliyo
    //seslerin tanımı,yüklenmesi ve path belirtme
    var mySong1:Sound = new Sound();
    var req1:URLRequest = new URLRequest("./Sesler/Haberler/btn1.mp3");
    mySong1.load(req1);
    var mySong2:Sound = new Sound();
    var req2:URLRequest = new URLRequest("./Sesler/Etkinlikler/Over/btn2.mp3");
    mySong2.load(req2);
    var mySong3:Sound = new Sound();
    var req3:URLRequest = new URLRequest("./Sesler/OnemliTelefonlar/Over/btn3.mp3");
    mySong3.load(req3);
    var mySong3tik:Sound = new Sound();
    var req3tik:URLRequest = new URLRequest("./Sesler/OnemliTelefonlar/Click/btn3tik.mp3");
    mySong3tik.load(req3tik);
    var mySong4:Sound = new Sound();
    var req4:URLRequest = new URLRequest("./Sesler/EngelliDestek/Over/btn4.mp3");
    mySong4.load(req4);
    var mySong4tik:Sound = new Sound();
    var req4tik:URLRequest = new URLRequest("./Sesler/EngelliDestek/Click/btn4tik.mp3");
    mySong4tik.load(req4tik);
    var mySong5:Sound = new Sound();
    var req5:URLRequest = new URLRequest("./Sesler/GormeEngelliKitapligi/btn5.mp3");
    mySong5.load(req5);
    var mySong6:Sound = new Sound();
    var req6:URLRequest = new URLRequest("./Sesler/HavaDurumu/Over/btn6.mp3");
    mySong6.load(req6);
    var Tarih:Date = new Date();
    var mySong6tik:Sound = new Sound();
    var req6tik:URLRequest = new URLRequest("./Sesler/HavaDurumu/Click/"+dateToMMDDYYYY(Tarih)+".mp3");
    mySong6tik.load(req6tik);
    var mySonglogo:Sound = new Sound();
    var reqlogo:URLRequest = new URLRequest("./Sesler/btnlogo.mp3");
    mySonglogo.load(reqlogo);
    var uyari:Sound = new Sound();
    var urlsi:URLRequest = new URLRequest("./Sesler/uyari.mp3");
    uyari.load(urlsi);
    //seschannel tanımlama ve sesleri yükleme... her sesin yüklemesi aynı fonksiyona gidiyor
    var channel1:SoundChannel = new SoundChannel();
    mySong1.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel3:SoundChannel = new SoundChannel();
    mySong3.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel3tik:SoundChannel = new SoundChannel();
    mySong3tik.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel2:SoundChannel = new SoundChannel();
    mySong2.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel4:SoundChannel = new SoundChannel();
    mySong4.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel4tik:SoundChannel = new SoundChannel();
    mySong4tik.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel5:SoundChannel = new SoundChannel();
    mySong5.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel6:SoundChannel = new SoundChannel();
    mySong6.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channel6tik:SoundChannel = new SoundChannel();
    mySong6tik.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channellogo:SoundChannel = new SoundChannel();
    mySonglogo.addEventListener(Event.COMPLETE, onSoundLoaded);
    var channeluyari:SoundChannel = new SoundChannel();
    uyari.addEventListener(Event.COMPLETE, onSoundLoaded);
    //sesin yüklenmesi durumunda gerçekleşecek fonk
    function onSoundLoaded(e:Event):void {
    //butonlar ve olay yaratma
    //btn1.addEventListener(MouseEvent.MOUSE_OVER, uyarises);
    btn1.addEventListener(MouseEvent.MOUSE_OVER, playSound1);
    btn1.addEventListener(MouseEvent.MOUSE_OUT,stopSound1);
    btn1.addEventListener(MouseEvent.MOUSE_DOWN,stopSound1);
    btn1.addEventListener(MouseEvent.MOUSE_DOWN,tikplay1);
    btn2.addEventListener(MouseEvent.MOUSE_OVER, playSound2);
    btn2.addEventListener(MouseEvent.MOUSE_OUT,stopSound2);
    btn2.addEventListener(MouseEvent.MOUSE_DOWN,stopSound2);
    btn2.addEventListener(MouseEvent.MOUSE_DOWN,tikplay2);
    btn3.addEventListener(MouseEvent.MOUSE_OVER, playSound3);
    btn3.addEventListener(MouseEvent.MOUSE_OUT,stopSound3);
    btn3.addEventListener(MouseEvent.MOUSE_DOWN,stopSound3);
    btn3.addEventListener(MouseEvent.MOUSE_DOWN,tikplay3);
    btn4.addEventListener(MouseEvent.MOUSE_OVER, playSound4);
    btn4.addEventListener(MouseEvent.MOUSE_OUT,stopSound4);
    btn4.addEventListener(MouseEvent.MOUSE_DOWN,stopSound4);
    btn4.addEventListener(MouseEvent.MOUSE_DOWN,tikplay4);
    btn5.addEventListener(MouseEvent.MOUSE_OVER, playSound5);
    btn5.addEventListener(MouseEvent.MOUSE_OUT,stopSound5);
    btn5.addEventListener(MouseEvent.MOUSE_DOWN,stopSound5);
    btn5.addEventListener(MouseEvent.MOUSE_DOWN,tikplay5);
    btn6.addEventListener(MouseEvent.MOUSE_OVER, playSound6);
    btn6.addEventListener(MouseEvent.MOUSE_OUT,stopSound6);
    btn6.addEventListener(MouseEvent.MOUSE_DOWN,stopSound6);
    btn6.addEventListener(MouseEvent.MOUSE_DOWN,tikplay6);
    btn_baslik.addEventListener(MouseEvent.MOUSE_OVER, playSoundlogo);
    btn_baslik.addEventListener(MouseEvent.MOUSE_OUT,stopSoundlogo);
    //seslerin oynatıldğı fonklar
    function uyarises(e:MouseEvent) {
    channeluyari = uyari.play();
    trace("OK");
    var myTimer1:Timer = new Timer(1000);
    function playSound1(e:MouseEvent) {
        channeluyari = uyari.play();
        myTimer1.addEventListener('timer', timerFunction1);
        myTimer1.start();
    function timerFunction1(event:TimerEvent)
       channel1 = mySong1.play();
       myTimer1.stop();
    function tikplay1(e:MouseEvent) {
        SoundMixer.stopAll();
    gotoAndStop(3);
    function stopSound1(e:MouseEvent)
        myTimer1.stop();
        channel1.stop();
        channeluyari.stop();
    var myTimer2:Timer = new Timer(1000);
    function playSound2(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimer2.addEventListener('timer', timerFunction2);
        myTimer2.start();
    function timerFunction2(event:TimerEvent)
       channel2 = mySong2.play();
       myTimer2.stop();
    function tikplay2(e:MouseEvent) {
        SoundMixer.stopAll();
        gotoAndStop(4);
    function stopSound2(e:MouseEvent)
        myTimer2.stop();
        channel2.stop();
        channeluyari.stop();
      var myTimer3:Timer = new Timer(1000);
    function playSound3(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimer3.addEventListener('timer', timerFunction3);
        myTimer3.start();
    function timerFunction3(event:TimerEvent)
       channel3 = mySong3.play();
       myTimer3.stop();
    function tikplay3(e:MouseEvent) {
    channel3tik = mySong3tik.play();
    trace("OK");
    function stopSound3(e:MouseEvent)
        myTimer3.stop();
        channel3.stop();
        channel3tik.stop();
        channeluyari.stop();
         trace("OK");
    var myTimer4:Timer = new Timer(1000);
      function playSound4(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimer4.addEventListener('timer', timerFunction4);
        myTimer4.start();
    function timerFunction4(event:TimerEvent)
       channel4 = mySong4.play();
       myTimer4.stop();
    function tikplay4(e:MouseEvent) {
    channel4tik = mySong4tik.play();
    trace("OK");
    function stopSound4(e:MouseEvent)
        myTimer4.stop();
        channel4.stop();
        channel4tik.stop();
        channeluyari.stop();
    trace("OK");
      var myTimer5:Timer = new Timer(1000);
      function playSound5(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimer5.addEventListener('timer', timerFunction5);
        myTimer5.start();
    function timerFunction5(event:TimerEvent)
       channel5 = mySong5.play();
       myTimer5.stop();
    function tikplay5(e:MouseEvent){
        SoundMixer.stopAll();
        gotoAndStop(2);
    function stopSound5(e:MouseEvent)
        myTimer5.stop();
        channel5.stop();
        channeluyari.stop();
    trace("OK");
      var myTimer6:Timer = new Timer(1000);
      function playSound6(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimer6.addEventListener('timer', timerFunction6);
        myTimer6.start();
    function timerFunction6(event:TimerEvent)
       channel6 = mySong6.play();
       myTimer6.stop();
    function tikplay6(e:MouseEvent) {
    channel6tik = mySong6tik.play();
    trace("OK");
    function stopSound6(e:MouseEvent)
        myTimer6.stop();
        channel6.stop();
        channel6tik.stop();
        channeluyari.stop();
    trace("OK");
    var myTimerlogo:Timer = new Timer(1000);
      function playSoundlogo(e:MouseEvent) {
    channeluyari = uyari.play();
    myTimerlogo.addEventListener('timer', timerFunctionlogo);
        myTimerlogo.start();
    function timerFunctionlogo(event:TimerEvent)
       channellogo = mySonglogo.play();
       myTimerlogo.stop();
    function stopSoundlogo(e:MouseEvent)
        myTimerlogo.stop();
        channellogo.stop();
        channeluyari.stop();

  • Adobe Flash Player 10: An ActionScript error has occurred?

    Whenever I browse the web with Firefix, I get this sort of error message if the site uses Flash:
    Adobe Flash Player 10
    An ActionScript error has occurred:
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://content.openforum.com/membersproject/getContentList.jsp?numitems=3&pillar=CAUSES
        at dtas.mp.polite::Politeness/dataLoaded()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    This only started happening when I upgraded to CS4 Professional. Does anyone know why this is happening?

    first go here and check if you have the debug player:  http://kb2.adobe.com/cps/155/tn_15507.html
    if yes, you can download from here:  http://get.adobe.com/flashplayer/
    (be sure to untick that mcafee garbage.)

  • I keep getting a ActionScript error

    I keep getting an ActionScript error #1009 Adobe Flash Player when I safari the internet to a site that is Flash based. This is new from a Adobe flash update. Now I see why Steve hated Adobe. I hit dismiss all errors and it is gone but it is a constant rude stopping of my day. Adobe is killing there brand. Please help me get rid of this problem.

    KenB42 wrote:
    Firebat1194 wrote:
    Adobe Flash Player: An ActionScript error has occured SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller https://z.moatads.com/swf/MessageSenderV2.swf cannot access https://static.skypeassets.com/adserver/AdLoader.html?version=1.66.9.
    at flash.external::ExternalInterface$/_initJS()
    at flash.external::ExternalInterface$/call()
    at MessageSenderV2_fla::MainTimeline/frame1() Thank you, for the support.Not sure which versions of Windows are affected, but I had the same issue with Windows 8.1.  Go to Windows update & look in "Installed Updates" for KB3087916 - Uninstall this update - it loaded the debug version of Flash.  If you are set for automatic updates, you will want to search for new updates, select this one when it pops up again and hide it so it will not be installed again.
    I'm having the same problem and I cannot find that update..

  • ActionScript Error

    I have been using Kuler with no problems for a while now but
    it the middle of using it today every page I load produces a pop-up
    window telling me;
    Adobe Flash Player 9
    An ActionScript error has occured;
    TypeError: Error #1090: XML parser failure: element is
    malformed.
    at adobe.kuler::Browse/::onGetThemes()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    Im using Vista, running Firefox 2.0.0.4
    Anyone have any ideas why this is happening or if I can fix
    it?
    Thanks

    TypeError: Error #1090: XML parser failure: element is
    malformed.
    at adobe.kuler::Search/::onGetSearch()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    It'd be kinda nice to hear what's happening on the back end
    that makes this problem persistent.

Maybe you are looking for

  • Applets stopped showing after reinstallation

    I noticed recently my browsers stopped showing applets. IE, Firefox, Opera don't show any applets anymore. I have been doing a lot of reinstallation recently. Now I have J2EE in C:\Sun\AppServer with JDK in C:\Sun\AppServer\jdk and JRE in C:\Sun\AppS

  • Converting Rows into Column in Oracle 10g

    Hi All,                     I m using Oracle Version 10.1.0.2.0 - Production                     I have requirement to convert rows into column wise as per the following:                     My Query is:                     WITH t                    

  • How to Snap to a point to measure it and create a line.

    Hello, i'm new to Illustrator and would like to know how to snap to a point. i have a rectangle and would like to measure the exact distance between the edge of the rectangle to the edge of another rectangle. also, how do i create a line, starting wi

  • How to delete flv files from iPhone library

    Hi, I am a newbie to iOS and I am using factory unlocked iPhone 4s with iOS 7. I have added some flv files to library and synced them to iPhone using iTunes. But as iPhone doesn't support flv files so I can't see them in movies. They have claimed dis

  • Why Aren't Your Settings Working?

    I'm using Custom Settings, from Options, under Tools. Note: My Mozilla Homepage is a website accessible with a password, which the site offers to save. I've selected the option for this site to REMEMBER my computer and password. In Mozilla, I checked