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();

Similar Messages

  • 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

  • Premiere Elements 11 Shared Technologies error DW020 Adobe Flash Player 10 plug in missing.

         I am unable to complete the install of Adobe Premiere Elements 11 on my Windows7 Pro 64 bit system.  When the installation process gets to installing Shared Technologies I get an error message "The installation process has encountered an error while installing Shared Technologies.  Please restart your system and try again."  Restarting the system gives the same result again.  The download assistant program identifies two errors: DW050--Adobe Flash Player 10 ActiveX: Install failed, and DW020: Adobe Flash CS5.5 depends on Adobe Flash Player 10 plugin to be installed. 
         My system currently has Adobe Flash player 11.7.700.224 installed.  I can find a download of Adobe Flash Player 10 but where do I put it?  Do I need to uninstall Adobe Flash Player 11.7... ?  Is there another solution?

         This install problem seems to be solved.  I uninstalled every Adobe program, but still couldn't get past the Shared Technologies issue.  Then I went to C://Program Files (x86)/Common Files/Adobe/ and deleted all recent folders & files.  This seemed to do it.  Both Premiere Elements 11 and Photoshop Elements completed installation.  Now on to figuring out how to force Windows7 64 bit to run these programs in 32 bit simulation mode.

  • I AM RECEIVING THIS ERROR REPEATILY==ADOBE FLASH PLAYER UPDATE SERVICE 11.3R300

    I AM CONSTANTLY GETTING THIS ERROR MESSAGE ADOBE FLASH PLAYER UPDATE SERVICE 11.3R300 THE DE BUG CHOICE DOES NOTHING

    Please see this post for additional details and current workarounds for this error.
    Thanks,
    Chris

  • Error message: Adobe Flash Player 11.6 r602 stopped working and was closed

    I keep getting this error message: Adobe Flash Player 11.6 r602 stopped working and was closed.

    elmer33 wrote:
    I loggin by selecting "Run as Administrator".  Does this qualify as being logged-in as Admministrator?   If so, this still does not allow deletion of the intended file.
    Thanks for your suggestions.
    Use File Assassin. If it can't remove it. it CAN'T BE REMOVED.

  • Why this error display "Adobe Flash Player has stopped potentially unsafe operation"

    why this error display "Adobe Flash Player has stopped potentially unsafe operation"
    In message box following message display:
    The following local application on your computer or network: null
    is trying to communicate with this internet-enabled location : www.ajaxcdn.org

    I get the same message and I already have the latest version (20.0.1) installed. Any other suggestions? Please and thank you!

  • Error downloading adobe flash player on macbook pro 13"

    I have a macbook pro 13". Have been trying to download adobe flash player but repeatedly have the same error. towards the end of the process i am told to quit safari though i already have. this has happened multiple times. I've followed all the steps but have difficulty. i have been downloading from the adobe website. please guide!

    Did you close the Safari window or quit Safari?
    Closing the window will not quit Safari.

  • Error for adobe flash player

    dear Adobe staff,
    i correctly downloaded adobe flash player 11, after formatting my pc but i have a problem. youtube website correctly works but megavideo won't go giving the following error message: you need a newer flash player version to use this player. Please click here and update your flash player to the latest version or open the following link manually etc..
    i tried to restart my pc and several browsers, my video card is correclty configured. the adobe flash player 11 application is correctly listed in my installed application window but i can't find it if manually search in my pc or with operating system search function.
    how i can solve my problem?
    ps. i have removed and reinstalled adobe flash player many times but without results.
    Thanks in advance and sorry for my english !

    -Specify your operating system (including 32bit or 64bit edition) :windows xp home edition (32 bit ) .
    -Specify your web browser and version (including 32bit or 64bit edition) :Google chrome 16.0.912.75 (32 bit )
    -Specify your Flash Player version :
    Adobe flash player 11.2.202.160 .
    -Give us a brief explanation of the problem, please include any information you feel is important :
    dear Adobe staff,
    i correctly downloaded adobe flash player 11, after formatting my pc but i have a problem. youtube website correctly works but megavideo won't go giving the following error message: you need a newer flash player version to use this player. Please click here and update your flash player to the latest version or open the following link manually etc..
    i tried to restart my pc and several browsers, my video card is correclty configured. the adobe flash player 11 application is correctly listed in my installed application window but i can't find it if manually search in my pc or with operating system search function.
    how i can solve my problem?
    ps. i have removed and reinstalled adobe flash player many times but without results.
    Thanks in advance and sorry for my english !

  • Re: Error for adobe flash player

    Adobe FLash Player 11 SUCKS ...
    I'm very sure that there is some mole inside Adobe Flash Development Team, First they discontinued their Mobile Architecture, Now they are heading towards the Deskop Architecture as well.
    I'm also facing problems in all Video on Demand and Online Streaming Applications. Seems like their H.264 Configurations are messed up.
    I'm a system administration and almost every 4th person in my office is complaining of this error. Not just this .. this error is common with my friends PC too.
    This error is found mostly on Systems tested with following configuration and software
    Windows 7 Home/Premium/Ultimate 64 Bit or 32 Bit
    Firefox v13
    Adobe Flash Player 11.3

    -Specify your operating system (including 32bit or 64bit edition) :windows xp home edition (32 bit ) .
    -Specify your web browser and version (including 32bit or 64bit edition) :Google chrome 16.0.912.75 (32 bit )
    -Specify your Flash Player version :
    Adobe flash player 11.2.202.160 .
    -Give us a brief explanation of the problem, please include any information you feel is important :
    dear Adobe staff,
    i correctly downloaded adobe flash player 11, after formatting my pc but i have a problem. youtube website correctly works but megavideo won't go giving the following error message: you need a newer flash player version to use this player. Please click here and update your flash player to the latest version or open the following link manually etc..
    i tried to restart my pc and several browsers, my video card is correclty configured. the adobe flash player 11 application is correctly listed in my installed application window but i can't find it if manually search in my pc or with operating system search function.
    how i can solve my problem?
    ps. i have removed and reinstalled adobe flash player many times but without results.
    Thanks in advance and sorry for my english !

  • Error Installing Adobe Flash player

    During the install of Adobe Flash Player, I get the Msg" "The ActiveX control for Flash Player could not be registered". I have been through all the help screens and have uninstalled (Successfully, according to the msg I get) and rebooted several times. I am using Windows XP, Internet Explorer 8.0. According to instructions, I should not have to run the MS-supplied registry routine if I used the latest versions of the uninstall routines, which I did. Anyone have any info on this?

    Are you running the installer as Administrator?
    dtork000 wrote:
    According to instructions, I should not have to run the MS-supplied registry routine ....
    Not sure what you mean by this - SubInACL?  If you did run the installer as Administrator and it still fails, then you may need to perform http://kb2.adobe.com/cps/494/cpsid_49419.html

  • Error:  The Adobe Flash Player has stopped a potentially unsafe operation.

    The .html file plays in Firefox, but the url link does not work. I'm on Mac 10.6.8. 
    html plays fine in Test Movie/ Flash Pro CS6.
    All software is up-to-date including Flash Player just downloaded.
    I click on Settings on the error message and Check 'Allow site to save info on this computer'.
    Add to Local Storage Settings By Site – Allow. But not fixed.
    Also will not work at all in Safari. Says 
    This page requires Flash Player version 9.0.124 or higher and will not play)
    Help. Any suggestions would be greatly appreciated.

    I'm new at this. I hope this is what you require:
    /* Click to Go to Web Page
    Clicking on the specified symbol instance loads the URL in a new browser window.
    Instructions:
    1. Replace http://www.adobe.com with the desired URL address.
       Keep the quotation marks ("").
    button_1_EA.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_2);
    function fl_ClickToGoToWebPage_2(event:MouseEvent):void
        navigateToURL(new URLRequest("http://www.exploreaustralia.net.au/bookshop"), "_blank");
    I used Code Snippets/Actions/Click to Go to Web Page.

  • An ActionScript error has occured - Flash Player

    Hello,
    I keep getting this kind of errors whenever I visit a website that has adobe flash on it and it is very very annoying guys, please do something about it. It doesn't happen on all websites but but quite frequently I'm using the latest Firefox build and latest Adobe Flash v14.
    Please solve this issue. Thank you.
    Another example is when I want to upload an image on http://imgur.com,  again the error appears:
    TypeError: Error #1010: A term is undefined and has no properties.
        at SWFUpload/onFilesLoaded()[C:\Users\Jacob\Documents\Imgur\SWFUpload\core\swfupload_fp10\SW FUpload.as:729]
    Print Screen: http://i.imgur.com/yu89WX0.jpg

    I think so, I've got this version installed: http://download.macromedia.com/pub/flashplayer/updaters/14/flashplayer_14_plugin_debug.exe

  • Unresolved Script errors and Adobe Flash Player crashing daily on my Macbook Pro

    On nearly a daily basis, just opening a couple tabs of ESPN is suddenly causing my Flash Player to crash and causing unresolved script errors.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes

  • How to fix conflicting version of adobe flash player 4.6 on CS6 installation?

    I am basically just wondering how I go about fixing this issue. I am installing the trial of CS6, on top of  CS5.5. When I start the installation of CS6 I get an error for Adobe Flash Player 4.6 saying it is conflicting with a previous version. How do I fix this issue? I have seen references to a CS Tool Cleaner, but I do not want to mess up my previous software versions.

    Anyone? Can someone please help me. It seems the only way to get this to work is to delete and fully uninstall and clean out my computer of all previous adobe softwares. This is incredibly stupid and such a hassle, but if this is the case maybe someone could chime in and help me in doing so? That would be much appreciated. How do I go about backing up my actions and brushes and workspaces, and plugins, on my CS4 an CS5.5 before I uninstall them all?

  • Adobe Flash Player 11.4 quits working, won't show videos even after reinstalling.

    Had Adobe Flash Player 11.3 r300 and it stopped showing videos, etc. in Firefox a few days ago. Now I've installed v 11.4 r402 and it still gives error message "Adobe Flash Player ... has stopped working." I uninstalled, downloaded again and reinstalled -- with the same result. No videos. Firefox Plugin check page shows it installed correctly. Any solutions?

    Warning: Installing Adobe Flash 10.3
    The instructions in the 11.3 crash article on installing the 10.3 don't tell you that the Active X Flash version must also be installed because the Adobe Uninstaller uninstalls ALL installed Flash and certain programs require that to work properly. I reported this two months ago and although I was thanked for it it was ignored by Staff and only corrected in the viewing videos problem article, which links to the crash article. If I have to do the job of Staff I'm happy to oblige, since there is no excuse for this. I actually corrected this same error by a Mozilla QA engineer who left out this same step in her testing on a bug report, and I got the expected result, she didn't.
    jscher2000's recommendations are good, I'm only supplementing the crash article instructions for anyone who needs that.
    To Uninstall 11.4 http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    To Install 10.3.183.23
    Active X version For Internet Explorer http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_10_active_x.exe
    For Firefox http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_10_plugin.exe

Maybe you are looking for

  • BPM Alert Process Number

    Hi All, I have a BPM scenario. Start>Receive1->SynSend1->SynSend2>AsySend3>Stop. (SynSend1--->SynSend2 are inside each block.) I have defined an alert in the BPM and inside alert message the BPM process number is working fine. Suppose if an alert hap

  • Submit fdf data to php to pupulate a html form text box

    okay i have no idea if this can be done because I always see it the other way around.... I want to give my clients some instructions to type in an account number that is taken from the pdf, submitted to my web server in php or asp, and generates the

  • Is there a generic way to get sequence

    Hey, I need a counter that will not initialized when my sever restarted, so i decide to write sequence in the data base for this. My question is there a generic (for any vendor) way to get next id? Thank you

  • Laptop to printer?

    Is there a way I can send data from my laptop to my desktop printer?  Do I need another device that needs to be hooked up?  I found myself today needing to quit what I was working on, on my laptop, and go to the desktop to perform the task because I

  • Having clause with Analytic function

    can you pls let me know if we can use HAVING clause with analytic function select eid,empno,sum(sal) over(partition by year) from employee where dept = 'SALES' having sum(sal) > 10000I m getting error while using the above, IS that we can use HAVING