Error in phase of assigniment Action Script

Hello Guys!
I created the following action script named "sketch.as" :
package
import flash.display.Sprite;
import flash.events.MouseEvent;
import com.adobe.images.JPGEncoder;
public class sketch extends Sprite {
public function sketch():void {
//this is your documentclass constructor
stage.addEventListener(MouseEvent.MOUSE_MOVE, moveCursor);
Mouse.hide();
function moveCursor(event:MouseEvent):void
    pencil.x = event.stageX;
    pencil.y = event.stageY;
var canvas_mc:MovieClip = new MovieClip()
addChildAt(canvas_mc, 0);
canvas_mc.swapDepths
function sketch()
canvas_mc.graphics.beginFill(0xFFFFFF);
canvas_mc.graphics.drawRect(0, 0, 600, 500);
canvas_mc.graphics.endFill();
canvas_mc.addEventListener(MouseEvent.MOUSE_DOWN, startDrawing);
canvas_mc.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
canvas_mc.addEventListener(MouseEvent.MOUSE_MOVE, makeLine);
function startDrawing(event:MouseEvent):void{
canvas_mc.graphics.lineStyle(1, 0, 1);
canvas_mc.graphics.moveTo(mouseX, mouseY);
canvas_mc.addEventListener(MouseEvent.MOUSE_MOVE, makeLine);
function stopDrawing(event:MouseEvent):void{
canvas_mc.removeEventListener(MouseEvent.MOUSE_MOVE, makeLine);
function makeLine(event:MouseEvent):void{
canvas_mc.graphics.lineTo(mouseX, mouseY);
sketch();
var serverPath:String = "";
function createJPG(m:MovieClip, q:Number, fileName:String)
var jpgSource:BitmapData = new BitmapData (m.width, m.height);
jpgSource.draw(m);
var jpgEncoder:JPGEncoder = new JPGEncoder(q);
var jpgStream:ByteArray = jpgEncoder.encode(jpgSource);
var header:URLRequestHeader = new URLRequestHeader ("Content-type", "application/octet-stream");
var jpgURLRequest:URLRequest = new URLRequest ( serverPath+"jpg_encoder_download.php?name=" + fileName + ".jpg");
jpgURLRequest.requestHeaders.push(header);
jpgURLRequest.method = URLRequestMethod.POST;
jpgURLRequest.data = jpgStream;
var jpgURLLoader:URLLoader = new URLLoader();
//jpgURLLoader.load(jpgURLRequest);
navigateToURL(jpgURLRequest, "_blank");
save_btn.addEventListener(MouseEvent.CLICK, saveBtnPress);
save_btn.addEventListener(MouseEvent.ROLL_OVER, saveBtnOver);
save_btn.addEventListener(MouseEvent.ROLL_OUT, saveBtnOut);
function saveBtnPress(e:Event):void
createJPG(canvas_mc, 90, "sketch");
function saveBtnOver(e:Event):void
Mouse.show();
pencil.visible = false;
function saveBtnOut(e:Event):void
Mouse.hide();
pencil.visible = true;
Lately I created a file .fla in the same root of the file .as naming it "sketch.fla"
When I try, in the Adobe Flash CS4 Professional screen, to assign to  ".fla" in the properties Publish my action script, the following message appears:
“A definition for the document class could not be found in the classpath, so one will be automatically generated in tha SWF file upon export.”
Obviously, it doesn’t function
Could somebody help me??

i don't understand, "When I try, in the Adobe Flash CS4 Professional screen, to assign to   ".fla" in the properties Publish my action script, the following message  appears:"
but i do understand that error message.  you need to assign the document class for your fla.  in the properties panel with the backstage selected, assign sketch in the class or document class field.

Similar Messages

  • I got Error #2044 while I run my script

    I have two .as file and one movie file "adp.flv"
    PlayVideoAbstract.as and PlayAbstract.as
    I have flash document with class name is "PlayVideo". I am going to run movie in abstract object method But  while I run script , movie runs but show error #2044. How can i remove this error. I am using action script 3
    PlayAbstract.as
    package{
        import flash.display.Sprite;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.media.Video;
        public class PlayAbstract extends Sprite{
            //Instance of classs PlayAbstract
            private var conn:NetConnection;
            private var stream:NetStream;
            private var vid:Video;
            private var flick:String="adp.flv";
            //Construction
            public function PlayAbstract()
                var playIt=new PlayVideoAbstract(conn,stream,vid,flick,100,50);
                addChild(playIt);
    PlayVideoAbstract.as
    package {
        // Import from library
        //flash.netnetconnect
        import flash.net.NetConnection;
        //flash.net.netstream
        import flash.net.NetStream;
        //flash.media.video
        import flash.media.Video;
        //fash.display.sprit
        import flash.display.Sprite;
        // Making class
        public class PlayVideoAbstract extends Sprite {
            // Making construction
            public function PlayVideoAbstract(nc:NetConnection, ns:NetStream, vid:Video, flick:String, xpos:uint, ypos:uint) {
                //Connection net
                nc = new NetConnection();
                nc.connect(null);
                ns = new NetStream(nc);
                vid=new Video();
                vid.attachNetStream(ns);
                ns.play(flick);
                vid.x=xpos;
                vid.y=ypos;
                addChild(vid);
            //Constructor End

    Hi:
    your as code have a lot of bug,  i  fixed something bug  and tested it,already it is working fine.
    PlayAbstract:
    package {
        import flash.display.Sprite;
        public class PlayAbstract extends Sprite {
            private var flick:String="adp.flv";
            public function PlayAbstract() {
                var playIt:PlayVideoAbstract=new PlayVideoAbstract(flick,100,50,stage);
    PlayVideoAbstract:
    package {
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.media.Video;
        import flash.events.NetStatusEvent;
        public class PlayVideoAbstract {
            private var nc:NetConnection;
            private var ns:NetStream;
            private var vid:Video;
            private var flick:String;
            private var xpos:uint;
            private var ypos:uint;
            private var obj:Object;
            public function PlayVideoAbstract(Flick:String, Xpos:uint, Ypos:uint,Obj:Object) {
                flick=Flick;
                xpos=Xpos;
                ypos=Ypos;
                obj=Obj;
                nc = new NetConnection();
                nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                nc.connect(null);
                function netStatusHandler(event:NetStatusEvent):void {
                    switch (event.info.code) {
                        case "NetConnection.Connect.Success" :
                            connectStream();
                            break;
                        case "NetStream.Play.StreamNotFound" :
                            trace("Stream not found: " + flick);
                            break;
                function connectStream():void {
                    ns = new NetStream(nc);
                    ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    ns.client = new CustomClient();
                    vid=new Video();
                    vid.attachNetStream(ns);
                    vid.x=xpos;
                    vid.y=ypos;
                    ns.play(flick);
                    obj.addChild(vid);
    class CustomClient {
        public function onMetaData(info:Object):void {
            trace("metadata: duration=" + info.duration + " width=" + info.width + " height=" + info.height + " framerate=" + info.framerate);
        public function onCuePoint(info:Object):void {
            trace("cuepoint: time=" + info.time + " name=" + info.name + " type=" + info.type);
    ///Good luck and success to you!

  • Action Script?

    Hi All,
    I have create a Application for transaction VA01. Can anybody tell me how to write Action script ?
    Please Help. ASAP.

    Hi,
    Transaction code for action script is WDK_APPL_REG
    1) There you need to register your Variant transaction and specify your floor plan
    either QAF or GAF or OIF in Applications.
    2) You have to spcify your different Floor Plan States like INI, S01, S01, CFN etc.
    3) For Floorplan states you should assign dynpro assignment ( i.e., Program name and screen number ).
    4) And u need to assign actions for every state.
    5) Next go to Script definition and assign action script and u need to record va01 transaction with SHDB, and submit program, dynpro, bdc filed value in batchinput data.
    6) If u want to raise any messages, click on Message Mapping and submit message name and number.
    Finally you need to save your action script.
    Best Regards,
    Vara Prasad.

  • Error in action script and button

    I have a page that i have designed for practice. i have three
    buttons on each page and have been tring to get them to link to the
    proper page/frame. For instance the button for ABOUT US should link
    to the second page/frame. The code i am using is as follows.
    on (release) {gotoAndStop(2);
    This should have it go to page/frame 2 and stop but when i
    test it it gives me this error.
    Scene 1, Layer 'about', Frame 1, ... 1087: Syntax error:
    extra characters fou... on (release) {gotoAndStop(2);
    I am using action script 1.0 & 2.0. I am not sure what to
    do.

    The way that this function is written, on (release), it
    should be
    directly attached to a button or movieClip instance. However,
    the
    gotoAndStop(2) command is telling the button or clip to go to
    frame 2,
    not the main timeline. If you change that line to
    _parent.gotoAndStop(2), you'll get the playback head on the
    main
    timeline to move, not the playback head in that button or
    clip.
    A far better method is to assign instance names to each
    button or
    movieClip that you want to react to actionscript. Then you
    can write the
    function(s) for those instance names. You would write the
    actionscript
    to a frame instead of directly on the button or clip. This
    makes the
    actionscript much easier to find when you need to edit.
    So, for instance, you could then write a set of functions to
    move the
    playback head. Something like this:
    // we'll assume that the buttons are named button1, button2,
    button3
    button1.onRelease = function() {
    gotoAndStop(X);
    button2.onRelease = function() {
    gotoAndStop(Y);
    button3.onRelease = function() {
    gotoAndStop(Z);
    // where X,Y and Z are the frame numbers that you want to
    move to
    // you don't need an explicit reference for the timeline for
    the
    playback head to use here. The code and the objects are all
    on the same
    timeline.

  • Error message with Action Script 2.0 file

    Hi,
    I am trying to edit an old flash file that uses Action Script 2.0. I am using CS6 and keep getting the following error message after publishing:
    Scene 1, Layer 'AS', Frame 1, Line 5, Column 29
    1067: Implicit coercion of a value of type int to an unrelated type String.
    Can you suggest any fixes or workarounds? I also have Flash 4.0. Can i downsave the file? If so, how?
    Thanks!

    Thank you. I think that did fix the original two errors. But now upon test of the file, I get some new errors:
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 3
    1120: Access of undefined property ratio.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 20
    1180: Call to a possibly undefined method number.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 27
    1120: Access of undefined property _root.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 9, Column 27
    1120: Access of undefined property ratio.
    And on the MoneySlide layer in Actions:
    this.ratio = 0;
    this.loadBar._width = 0;
    this.dragger.ratio.text= "$0";
    dragger.onPress=function(){
              this.startDrag(true,0,0,line._width,0);
              this.onEnterFrame=function(){
                        ratio=Math.round(number(_root.transitBenefitLimit/100)*(this._x/(line._width/10 0)));
                        loadBar._width = Math.round(this._x);
                        dragger.ratio.text= "$"+ratio;
    dragger.onRelease=dragger.onReleaseOutside=stopDrag;

  • Error while loading an child movieclip if the child has any action script

    Hi
    I am developing an application where I need to load a child.swf . All works fine when I load the mc but as soon as I add Action Script (lets say trace("test")) to the Child.swf I get a Error #1009: Cannot access a property or method of a null object reference. On the addChild line.
    Code
    trace("Toothpaste click");
    var mLoader:Loader = new Loader();
    var mRequest:URLRequest = new URLRequest("Child);
    mLoader.load(mRequest);
    mcContainer.addChild(mLoader);

    Sorry.Thanks
    Typo on the forum.
    I can load the child.swf see the image/text in the child  displayed in the parent but as soon as I add as3 to the child page I receive the above mentioned error. If I run the child.swf from the IDE or by itself everything works fine .
    trace("Toothpaste click");
    var mLoader:Loader = new Loader();
    var mRequest:URLRequest = new URLRequest("Child.swf");
    mLoader.load(mRequest);
    mcContainer.addChild(mLoader);

  • I am trying to reinstall Flash CS4 professional as the action script is not working but now I am getting an error: 2 message when I use the original CD to try and reinstall

    I can't get the original disk to work on a reinstall.  I get the message
    AdobeColorCommonSetRGB
    Error:
    Error 2.
    I teach a class using this program on Macintosh computers running 10.9.5 and the action script is not working.  It will work on any program designed using the 10.8 but if you design any animation on 10.9.5 the action script will not work for the buttons

    You would have to manually delete the color profiles in question... Run the cleaner tool and see if it gets you started.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • Constant action script errors

    Please help me it will be much appreciated if you do. I have been having numerous amounts of action script errors and its becoming a very tedious process to dismiss them everytime an ad changes.  Please help me fix this I am getting tired of this been happening for a long time. I have everything up to date, flash, skype, chrome, windows, ie, and anything else is fully up to date so I am not sure at ALL what is going on.  

    It's very possible that you are on the upgrade track for the Flash debugger.  Try the following: Uninstall the current version of flash you have installed:http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe
    Download and install the latest version of Adobe Flash for IE:https://admdownload.adobe.com/bin/live/flashplayer18ax_ha_install.exe 

  • Content Viewer Action Script Error

    After updating my apps to CC 2014 I get an action script error when trying to open Adobe Content Viewer.   Below is a copy of the error output:
    Error: EncryptedLocalStore internal error
      at flash.data::EncryptedLocalStore$/processErrorCode()
      at flash.data::EncryptedLocalStore$/getItem()
      at com.adobe.dmp.core.util::DeviceUtil/retrieveDeviceID()
      at com.adobe.dmp.core.util::DeviceUtil/getDeviceID()
      at com.adobe.dmp.viewer.command::ApplicationInitializationCommand/execute()
      at org.robotlegs.base::CommandMap/execute()
      at org.robotlegs.base::CommandMap/routeEventToCommand()
      at MethodInfo-9549()
      at flash.events::EventDispatcher/dispatchEventFunction()
      at flash.events::EventDispatcher/dispatchEvent()
      at org.robotlegs.base::ContextBase/dispatchEvent()
      at DesktopApplication/initializeUI()
      at MethodInfo-2301()
      at Function/http://adobe.com/AS3/2006/builtin::apply()
      at com.adobe.dmp.framework.util::FrameDelayedCall/onEnterFrame()

    Hi Eben.
    Always use a fully qualified domain name (FQDN): http://hostname.domain:portnumber/lms/mediator/config
    See note https://service.sap.com/sap/support/notes/1334956[1334956|https://service.sap.com/sap/support/notes/1334956] for details and explanation.
    Best regards,
    Aliaksandr Zhukau

  • Receive Action Script Error #2130

    My system is running Windows 8 and IE10. I have continuing problems installing and using Flash Player. I have read and reread the online procedures, checks, and solutions without much luck. Most recently after several failed attempts I was able to download the latest version of Flash Player for Windows 8 with Internet Explorer. My email account is with Outlook, which defaults to MSN.com when I sign out. When the MSN.com homepage appears I shortly receive an error message that says there is an Action Script Error #2130 and a list of affected files, including flash. I am unable to perform any other functions while this message is displayed. The message block gives me two options: Dismiss or Continue. The error message clears when I click either option, and the MSN.com homepage seems to operate normally. However, there are other issues with MSN.com which I have addressed to their support. Basically, if I click on a news headline in order to read the full article, the screen that appears is mis-formatted and unreadable. Ihave a screen capture of the error message noted above. I have tried the solutions suggested in Adobe Support, but they did not resolve the underlying issues. Please help, /hugh
    I noticed a related RE: discussion on the side of my question. When I went there I followed staff instructions to another person with similar problems. When I checked my installed version, I saw that it was the latest version for my system, but also saw debug at the bottom of the page. I then proceeded to uninstall Flash Player as staff instructions said to do. After I received the message that uninstall was successful, I again checked my installled version. It was the same as before including that it was the debug version. I repeated this action several times with the same result. Don't understand what this new problem is or how to proceed from this point.

    Thanks Pat - Sorry if I have been terse. This is not a good time for me as my Old Man [not my Father] is in failing health and requires a lot of care. Didn't need the added burden of two known problems in my computer system which no one seems to know the answer to. At least part of the problem with my email/MSN.com went away. At present I do not get an ActionScript Error #2130 when I sign out of my Outlook email account, which defaults to MSN.com. The other problem with MSN.com is still present, but so far I have not received any support from their techies, just several boilerplate messages.
    However, you are helping with my problem with Flash Player. I discovered it when trying to find the cause for the ActionScript error. I went to Adobe Support Center and began with the several guide sheets I found there. When I did the steps to find the installed] version, which by the way are contained on several different sheets, I found the version of FP installed was not the latest version. I am aware that as I have Windows 8 and IE10 changes should come down from Microsoft, so I was surprised. I tried Update Windows but there were no updates available other than an optional update to install Bing Desktop which I have installed several times, but it remains on the list as an optional update that has not been installed. As I have thought and said many times since I upgraded to Windows 8, it should have been more thoroughly debugged before they rushed it to the retail market. But that too is not an Adobe problem.
    I tried all the procedures and checks on all of the Adobe FP guide sheets I found on their support center website several times before to my surprise when I redid the steps to find the currently installed version the lastest version of FP: FP 11.7.700.169 was shown as the installed version. This was over a week ago and after I found Guide Sheet: Adobe Flash Player Support Center/Downloads at: http://www.adobe.com/support/flashplayer/downloads.html. In addition to providing a path to download the latest version of FP, it provides a list of critical updates and downloads to correct known problems in Flash Player. I downloaded every update I found that seemed to apply to my system. 
    I then checked to see if the Flash Player Action Script error message was now cleared. To my dismay it was not. Ever since I have been trying to correct that problem. It was not until after I posted this question here and you started to respond and discovered that although the latest version of FP is now installed - it is the DEBUG version, which you have told me I must uninstall and then install the standard version. That is where I learned that even though I am able to download the Adobe Flash Player Uninstaller and run it and get a message that the uninstall was successful, when I check using the Find Version procedure, I am told the latest version of FP is still installed and it is the DEBUG version.
    I have tried reinstalling the latest version, but this procedure does not work either. When I click to download Flash Player all I get is a blank Adobe box on the screen. It asks me to select a region. I select the US, There is a DOWNLOAD tab at the top which I also select. Then nothing happens. This tell me something is not working properly with this procedure.
    So I am stuck at a point where Adobe Find Version procedures tells me the latest DEBUG version of Flash Player for my system, FP11.7.700.169, is installed in my system and working properly,but I am told I must uninstall the DEBUG version and install the standard version of FP. However, the Adobe Flash Player Uninstaller does not work on my system and the Adobe Flash Player Installer does not work on my system.
    On the other hand as far as I have been able to determine Flash player is working properly as I am able to view videos on various websites, including MSN.com. And after deleting several Flash Player files I searched and found, the FP ActionScript Error #2130 has apparently stopping showing up when I am defaulted to MSN.com when I sign out of OUTlook email. I am so confused, irritated, and frustrated. I agree someone from Adobe Support should take a look at what I am reporting and determine if I have an Adobe Flash Player problem, and if so, FIX IT!
    Thanks again for taking the lead Pat, /hugh

  • Action script error on a button

    I have added following code on a button, btn_lab5, but I get
    an error msg ,"Must appear within on handler". Thanks in advance!!!
    btn_lab5.onRelease=function(){
    gotoAndStop("intro", 1);
    Thanks in advance!!!

    No, I don't have button within a button. But, Thanks for your
    input.
    Fortunately, I have found the solution by changing few things
    around. Here is what I was trying to do..
    1. Four buttons were placed on the same time line 15 frames
    apart.
    2. Added action script at each button and also tried adding
    seperate layer for action script but when I ran my movie same
    script played for every button.
    Finally, got frustrated and placed all the buttons at the
    same point in timeline and added action script by adding another
    layer.Visually I am not getting the desired result with buttons but
    code is working. I would really love to have buttons appear
    gradually on the screen. Let me know if any one of has any thoughts
    to share....
    Thanks a lot!!!!

  • Why do i repeatedly get Adobe action script error? How do i solved it, Why do i repeatedly get Adobe action script error? How do i solved it

    Why do i repeatedly get Adobe action script error ? How do i solved it ?

    We don't know what that is, you'll have to talk to Adobe on their forums.

  • Error :Action Script Stuck

    Hi,
    I am getting the Error(Action Script Stuck), while i am
    running the application in Palm Treo 700 w 1.1 Verizon Emulator,
    its running in windows Mobile 5.0. I used one Datagrid, one Xml
    Connector, one Data Set and two buttons. And data are populated
    from the XML file, which has been located in the same folder. Any
    one, let me know the solution for that.

    Hi,
    The Primary cause of the whole problem is the use of V2
    components. Please
    Emulate the scenario with movie clips and that should work.
    Rendering of V2
    components is a tedious task for the player and is not
    recommended for
    flashLite. Using some workarounds might help in dire need,
    when you use
    randomly generated movie clips to emulate the datagrid or the
    data set and
    write your own parser to replace the XML connector component,
    custom buttons
    can always be used other than the button component
    Regards,
    Debashish Paul
    "netsoul" <[email protected]> wrote in
    message
    news:eievp9$5do$[email protected]..
    > Dear Vijayan,
    >
    > The error 'Action Script Stuck' is a great problem in FL
    2.1. The reason
    > of
    > that error is not only in the internal processes in
    flash player, but in
    > incorrect work 3-d part applications, that do not free
    resources on time.
    > The
    > investigation that problem on real devices (WM5 &
    BREW) detected, that the
    > error 'Action Script Stuck' appears in very simple
    scripts, when FL 2.1
    > player
    > is really freezed by another application because of lack
    of resources.
    >
    > My opinion - the mechanism of detecting 'Action Script
    Stuck' must be
    > improved
    > to separate internal and external reasons. That
    > applys to FL 2.1 for BREW too.
    >
    > Sincerely,
    > Alex
    >

  • Action Script including error

    Hi all,
    i'm working on flex 3 learning step by step.
    Anycase here a found a strange problem. I've done a .as with
    all the function i need and a mxml working on it, that include the
    .as.
    Well the mxml does not include really the action script file.
    I tried many ways but nothing.
    That's the simple sintax
    <mx:Script source="FileName.as" />
    I create a button in the mxml file that recall a function
    (asubmit) in the "FileName" action script file, here the error:
    Severity and Description Path Resource Location Creation Time
    Id
    1180: Call to a not defined metod asubmit. FileName.mxml line
    9 1206624023951 74
    I can't understand where it's the error...all the sintax look
    good.
    Thanks
    EDIT:
    Hi,
    found it.
    Tag error on Action script file... -_-"
    Thx
    u can close.

    Hi all,
    i'm working on flex 3 learning step by step.
    Anycase here a found a strange problem. I've done a .as with
    all the function i need and a mxml working on it, that include the
    .as.
    Well the mxml does not include really the action script file.
    I tried many ways but nothing.
    That's the simple sintax
    <mx:Script source="FileName.as" />
    I create a button in the mxml file that recall a function
    (asubmit) in the "FileName" action script file, here the error:
    Severity and Description Path Resource Location Creation Time
    Id
    1180: Call to a not defined metod asubmit. FileName.mxml line
    9 1206624023951 74
    I can't understand where it's the error...all the sintax look
    good.
    Thanks
    EDIT:
    Hi,
    found it.
    Tag error on Action script file... -_-"
    Thx
    u can close.

  • Install error - an action script error occurred

    I have OSX 10.6.8  When I try to install Muse, Beta 7 I get an error message -and action script error occurred

    Here is the report I got when I just tried to install it again - and it "unexpectedly quit"  It didn't give me an "action script error"  this time.
    Process:         Muse
    Path:            /Applications/Muse.app/Contents/MacOS/Muse
    Identifier:      AdobeMuse
    Version:         0.8.841 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd
    Date/Time:       2012-04-09 10:45:07.641 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          259557 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  820 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      7E36AFAC-C7BD-4E43-B15D-DAB60002F8C2
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                      0x0277ce40 0x255b000 + 2235968
    1   com.adobe.AIR                      0x027c3b74 0x255b000 + 2526068
    2   com.adobe.AIR                      0x027d6ab2 0x255b000 + 2603698
    3   com.adobe.AIR                      0x027d58a7 0x255b000 + 2599079
    4   com.adobe.AIR                      0x027d57b9 0x255b000 + 2598841
    5   com.adobe.AIR                      0x027d5b37 0x255b000 + 2599735
    6   com.adobe.AIR                      0x02845fce 0x255b000 + 3059662
    7   com.adobe.AIR                      0x027e3224 0x255b000 + 2654756
    8   com.adobe.AIR                      0x027de151 0x255b000 + 2634065
    9   com.adobe.AIR                      0x027e1760 0x255b000 + 2647904
    10  com.adobe.AIR                      0x028483ec 0x255b000 + 3068908
    11  com.adobe.AIR                      0x02847337 0x255b000 + 3064631
    12  com.adobe.AIR                      0x02848cd0 0x255b000 + 3071184
    13  com.adobe.AIR                      0x0284948d 0x255b000 + 3073165
    14  com.adobe.AIR                      0x028494de 0x255b000 + 3073246
    15  com.adobe.AIR                      0x029d603e 0x255b000 + 4698174
    16  com.adobe.AIR                      0x029d62ec 0x255b000 + 4698860
    17  com.adobe.AIR                      0x029d8e9f 0x255b000 + 4710047
    18  com.adobe.AIR                      0x02b3af9e 0x255b000 + 6160286
    19  com.adobe.AIR                      0x02b3b879 0x255b000 + 6162553
    20  com.adobe.AIR                      0x029ce9d5 0x255b000 + 4667861
    21  com.adobe.AIR                      0x029d9232 0x255b000 + 4710962
    22  com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    23  com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    24  com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    25  com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    26  ???                                0x15b471a7 0 + 364147111
    27  ???                                0x1c363e23 0 + 473316899
    28  ???                                0x1c69d5f5 0 + 476698101
    29  ???                                0x1c69dafc 0 + 476699388
    30  ???                                0x1c6a3d8d 0 + 476724621
    31  ???                                0x1c360ab7 0 + 473303735
    32  ???                                0x1c360f06 0 + 473304838
    33  ???                                0x1c3617f2 0 + 473307122
    34  ???                                0x1c3621e6 0 + 473309670
    35  ???                                0x1c362392 0 + 473310098
    36  ???                                0x1c363627 0 + 473314855
    37  ???                                0x1c3637cb 0 + 473315275
    38  ???                                0x1c3609ac 0 + 473303468
    39  com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    40  com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    41  com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    42  com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    43  com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    44  ???                                0x15b471a7 0 + 364147111
    45  ???                                0x1c363e23 0 + 473316899
    46  ???                                0x1c69d5f5 0 + 476698101
    47  ???                                0x1c69dafc 0 + 476699388
    48  ???                                0x1c6a3d8d 0 + 476724621
    49  ???                                0x1c360ab7 0 + 473303735
    50  ???                                0x1c360f06 0 + 473304838
    51  ???                                0x1c3617f2 0 + 473307122
    52  ???                                0x1c3621e6 0 + 473309670
    53  ???                                0x1c362392 0 + 473310098
    54  ???                                0x1c363627 0 + 473314855
    55  ???                                0x1c3637cb 0 + 473315275
    56  ???                                0x1c3609ac 0 + 473303468
    57  com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    58  com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    59  com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    60  com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    61  com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    62  ???                                0x15b471a7 0 + 364147111
    63  ???                                0x1c363e23 0 + 473316899
    64  ???                                0x1c69d5f5 0 + 476698101
    65  ???                                0x1c69dafc 0 + 476699388
    66  ???                                0x1c6a3d8d 0 + 476724621
    67  ???                                0x1c360ab7 0 + 473303735
    68  ???                                0x1c360f06 0 + 473304838
    69  ???                                0x1c3617f2 0 + 473307122
    70  ???                                0x1c3621e6 0 + 473309670
    71  ???                                0x1c362392 0 + 473310098
    72  ???                                0x1c363627 0 + 473314855
    73  ???                                0x1c3637cb 0 + 473315275
    74  ???                                0x1c3609ac 0 + 473303468
    75  com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    76  com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    77  com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    78  com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    79  com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    80  ???                                0x15b471a7 0 + 364147111
    81  ???                                0x1c363e23 0 + 473316899
    82  ???                                0x1c69d5f5 0 + 476698101
    83  ???                                0x1c69dafc 0 + 476699388
    84  ???                                0x1c6a3d8d 0 + 476724621
    85  ???                                0x1c360ab7 0 + 473303735
    86  ???                                0x1c360f06 0 + 473304838
    87  ???                                0x1c3617f2 0 + 473307122
    88  ???                                0x1c3621e6 0 + 473309670
    89  ???                                0x1c362392 0 + 473310098
    90  ???                                0x1c363627 0 + 473314855
    91  ???                                0x1c3637cb 0 + 473315275
    92  ???                                0x1c3609ac 0 + 473303468
    93  com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    94  com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    95  com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    96  com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    97  com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    98  ???                                0x15b471a7 0 + 364147111
    99  ???                                0x1c363e23 0 + 473316899
    100 ???                                0x1c69d5f5 0 + 476698101
    101 ???                                0x1c69dafc 0 + 476699388
    102 ???                                0x1c6a3d8d 0 + 476724621
    103 ???                                0x1c360ab7 0 + 473303735
    104 ???                                0x1c360f06 0 + 473304838
    105 ???                                0x1c3617f2 0 + 473307122
    106 ???                                0x1c3621e6 0 + 473309670
    107 ???                                0x1c362392 0 + 473310098
    108 ???                                0x1c363627 0 + 473314855
    109 ???                                0x1c3637cb 0 + 473315275
    110 ???                                0x1c3609ac 0 + 473303468
    111 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    112 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    113 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    114 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    115 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    116 ???                                0x15b471a7 0 + 364147111
    117 ???                                0x1c363e23 0 + 473316899
    118 ???                                0x1c69d5f5 0 + 476698101
    119 ???                                0x1c69dafc 0 + 476699388
    120 ???                                0x1c6a3d8d 0 + 476724621
    121 ???                                0x1c360ab7 0 + 473303735
    122 ???                                0x1c360f06 0 + 473304838
    123 ???                                0x1c3617f2 0 + 473307122
    124 ???                                0x1c3621e6 0 + 473309670
    125 ???                                0x1c362392 0 + 473310098
    126 ???                                0x1c363627 0 + 473314855
    127 ???                                0x1c3637cb 0 + 473315275
    128 ???                                0x1c3609ac 0 + 473303468
    129 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    130 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    131 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    132 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    133 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    134 ???                                0x15b471a7 0 + 364147111
    135 ???                                0x1c363e23 0 + 473316899
    136 ???                                0x1c69d5f5 0 + 476698101
    137 ???                                0x1c69dafc 0 + 476699388
    138 ???                                0x1c6a3d8d 0 + 476724621
    139 ???                                0x1c360ab7 0 + 473303735
    140 ???                                0x1c360f06 0 + 473304838
    141 ???                                0x1c3617f2 0 + 473307122
    142 ???                                0x1c3621e6 0 + 473309670
    143 ???                                0x1c362392 0 + 473310098
    144 ???                                0x1c363627 0 + 473314855
    145 ???                                0x1c3637cb 0 + 473315275
    146 ???                                0x1c3609ac 0 + 473303468
    147 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    148 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    149 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    150 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    151 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    152 ???                                0x15b471a7 0 + 364147111
    153 ???                                0x1c363e23 0 + 473316899
    154 ???                                0x1c69d5f5 0 + 476698101
    155 ???                                0x1c69dafc 0 + 476699388
    156 ???                                0x1c6a3d8d 0 + 476724621
    157 ???                                0x1c360ab7 0 + 473303735
    158 ???                                0x1c360f06 0 + 473304838
    159 ???                                0x1c3617f2 0 + 473307122
    160 ???                                0x1c3621e6 0 + 473309670
    161 ???                                0x1c362392 0 + 473310098
    162 ???                                0x1c363627 0 + 473314855
    163 ???                                0x1c3637cb 0 + 473315275
    164 ???                                0x1c3609ac 0 + 473303468
    165 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    166 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    167 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    168 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    169 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    170 ???                                0x15b471a7 0 + 364147111
    171 ???                                0x1c363e23 0 + 473316899
    172 ???                                0x1c69d5f5 0 + 476698101
    173 ???                                0x1c69dafc 0 + 476699388
    174 ???                                0x1c6a3d8d 0 + 476724621
    175 ???                                0x1c360ab7 0 + 473303735
    176 ???                                0x1c360f06 0 + 473304838
    177 ???                                0x1c3617f2 0 + 473307122
    178 ???                                0x1c3621e6 0 + 473309670
    179 ???                                0x1c362392 0 + 473310098
    180 ???                                0x1c363627 0 + 473314855
    181 ???                                0x1c3637cb 0 + 473315275
    182 ???                                0x1c3609ac 0 + 473303468
    183 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    184 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    185 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    186 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    187 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    188 ???                                0x15b471a7 0 + 364147111
    189 ???                                0x1c363e23 0 + 473316899
    190 ???                                0x1c69d5f5 0 + 476698101
    191 ???                                0x1c69dafc 0 + 476699388
    192 ???                                0x1c6a3d8d 0 + 476724621
    193 ???                                0x1c360ab7 0 + 473303735
    194 ???                                0x1c360f06 0 + 473304838
    195 ???                                0x1c3617f2 0 + 473307122
    196 ???                                0x1c3621e6 0 + 473309670
    197 ???                                0x1c362392 0 + 473310098
    198 ???                                0x1c363627 0 + 473314855
    199 ???                                0x1c3637cb 0 + 473315275
    200 ???                                0x1c3609ac 0 + 473303468
    201 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    202 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    203 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    204 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    205 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    206 ???                                0x15b471a7 0 + 364147111
    207 ???                                0x1c363e23 0 + 473316899
    208 ???                                0x1c69d5f5 0 + 476698101
    209 ???                                0x1c69dafc 0 + 476699388
    210 ???                                0x1c6a3d8d 0 + 476724621
    211 ???                                0x1c360ab7 0 + 473303735
    212 ???                                0x1c360f06 0 + 473304838
    213 ???                                0x1c3617f2 0 + 473307122
    214 ???                                0x1c3621e6 0 + 473309670
    215 ???                                0x1c362392 0 + 473310098
    216 ???                                0x1c363627 0 + 473314855
    217 ???                                0x1c3637cb 0 + 473315275
    218 ???                                0x1c3609ac 0 + 473303468
    219 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    220 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    221 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    222 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    223 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    224 ???                                0x15b471a7 0 + 364147111
    225 ???                                0x1c363e23 0 + 473316899
    226 ???                                0x1c69d5f5 0 + 476698101
    227 ???                                0x1c69dafc 0 + 476699388
    228 ???                                0x1c6a3d8d 0 + 476724621
    229 ???                                0x1c360ab7 0 + 473303735
    230 ???                                0x1c360f06 0 + 473304838
    231 ???                                0x1c3617f2 0 + 473307122
    232 ???                                0x1c3621e6 0 + 473309670
    233 ???                                0x1c362392 0 + 473310098
    234 ???                                0x1c363627 0 + 473314855
    235 ???                                0x1c3637cb 0 + 473315275
    236 ???                                0x1c3609ac 0 + 473303468
    237 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    238 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    239 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    240 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    241 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    242 ???                                0x15b471a7 0 + 364147111
    243 ???                                0x1c363e23 0 + 473316899
    244 ???                                0x1c69d5f5 0 + 476698101
    245 ???                                0x1c69dafc 0 + 476699388
    246 ???                                0x1c6a3d8d 0 + 476724621
    247 ???                                0x1c360ab7 0 + 473303735
    248 ???                                0x1c360f06 0 + 473304838
    249 ???                                0x1c3617f2 0 + 473307122
    250 ???                                0x1c3621e6 0 + 473309670
    251 ???                                0x1c362392 0 + 473310098
    252 ???                                0x1c363627 0 + 473314855
    253 ???                                0x1c3637cb 0 + 473315275
    254 ???                                0x1c3609ac 0 + 473303468
    255 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    256 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    257 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    258 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    259 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    260 ???                                0x15b471a7 0 + 364147111
    261 ???                                0x1c363e23 0 + 473316899
    262 ???                                0x1c69d5f5 0 + 476698101
    263 ???                                0x1c69dafc 0 + 476699388
    264 ???                                0x1c6a3d8d 0 + 476724621
    265 ???                                0x1c360ab7 0 + 473303735
    266 ???                                0x1c360f06 0 + 473304838
    267 ???                                0x1c3617f2 0 + 473307122
    268 ???                                0x1c3621e6 0 + 473309670
    269 ???                                0x1c362392 0 + 473310098
    270 ???                                0x1c363627 0 + 473314855
    271 ???                                0x1c3637cb 0 + 473315275
    272 ???                                0x1c3609ac 0 + 473303468
    273 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    274 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    275 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    276 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    277 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    278 ???                                0x15b471a7 0 + 364147111
    279 ???                                0x1c363e23 0 + 473316899
    280 ???                                0x1c69d5f5 0 + 476698101
    281 ???                                0x1c69dafc 0 + 476699388
    282 ???                                0x1c6a3d8d 0 + 476724621
    283 ???                                0x1c360ab7 0 + 473303735
    284 ???                                0x1c360f06 0 + 473304838
    285 ???                                0x1c3617f2 0 + 473307122
    286 ???                                0x1c3621e6 0 + 473309670
    287 ???                                0x1c362392 0 + 473310098
    288 ???                                0x1c363627 0 + 473314855
    289 ???                                0x1c3637cb 0 + 473315275
    290 ???                                0x1c3609ac 0 + 473303468
    291 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    292 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    293 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    294 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    295 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    296 ???                                0x15b471a7 0 + 364147111
    297 ???                                0x1c363e23 0 + 473316899
    298 ???                                0x1c69d5f5 0 + 476698101
    299 ???                                0x1c69dafc 0 + 476699388
    300 ???                                0x1c6a3d8d 0 + 476724621
    301 ???                                0x1c360ab7 0 + 473303735
    302 ???                                0x1c360f06 0 + 473304838
    303 ???                                0x1c3617f2 0 + 473307122
    304 ???                                0x1c3621e6 0 + 473309670
    305 ???                                0x1c362392 0 + 473310098
    306 ???                                0x1c363627 0 + 473314855
    307 ???                                0x1c3637cb 0 + 473315275
    308 ???                                0x1c3609ac 0 + 473303468
    309 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    310 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    311 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    312 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    313 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    314 ???                                0x15b471a7 0 + 364147111
    315 ???                                0x1c363e23 0 + 473316899
    316 ???                                0x1c69d5f5 0 + 476698101
    317 ???                                0x1c69dafc 0 + 476699388
    318 ???                                0x1c6a3d8d 0 + 476724621
    319 ???                                0x1c360ab7 0 + 473303735
    320 ???                                0x1c360f06 0 + 473304838
    321 ???                                0x1c3617f2 0 + 473307122
    322 ???                                0x1c3621e6 0 + 473309670
    323 ???                                0x1c362392 0 + 473310098
    324 ???                                0x1c363627 0 + 473314855
    325 ???                                0x1c3637cb 0 + 473315275
    326 ???                                0x1c3609ac 0 + 473303468
    327 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    328 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    329 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    330 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    331 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    332 ???                                0x15b471a7 0 + 364147111
    333 ???                                0x1c363e23 0 + 473316899
    334 ???                                0x1c69d5f5 0 + 476698101
    335 ???                                0x1c69dafc 0 + 476699388
    336 ???                                0x1c6a3d8d 0 + 476724621
    337 ???                                0x1c360ab7 0 + 473303735
    338 ???                                0x1c360f06 0 + 473304838
    339 ???                                0x1c3617f2 0 + 473307122
    340 ???                                0x1c3621e6 0 + 473309670
    341 ???                                0x1c362392 0 + 473310098
    342 ???                                0x1c363627 0 + 473314855
    343 ???                                0x1c3637cb 0 + 473315275
    344 ???                                0x1c3609ac 0 + 473303468
    345 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    346 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    347 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    348 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    349 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    350 ???                                0x15b471a7 0 + 364147111
    351 ???                                0x1c363e23 0 + 473316899
    352 ???                                0x1c69d5f5 0 + 476698101
    353 ???                                0x1c69dafc 0 + 476699388
    354 ???                                0x1c6a3d8d 0 + 476724621
    355 ???                                0x1c360ab7 0 + 473303735
    356 ???                                0x1c360f06 0 + 473304838
    357 ???                                0x1c3617f2 0 + 473307122
    358 ???                                0x1c3621e6 0 + 473309670
    359 ???                                0x1c362392 0 + 473310098
    360 ???                                0x1c363627 0 + 473314855
    361 ???                                0x1c3637cb 0 + 473315275
    362 ???                                0x1c3609ac 0 + 473303468
    363 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    364 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    365 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    366 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    367 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    368 ???                                0x15b471a7 0 + 364147111
    369 ???                                0x1c363e23 0 + 473316899
    370 ???                                0x1c69d5f5 0 + 476698101
    371 ???                                0x1c69dafc 0 + 476699388
    372 ???                                0x1c6a3d8d 0 + 476724621
    373 ???                                0x1c360ab7 0 + 473303735
    374 ???                                0x1c360f06 0 + 473304838
    375 ???                                0x1c3617f2 0 + 473307122
    376 ???                                0x1c3621e6 0 + 473309670
    377 ???                                0x1c362392 0 + 473310098
    378 ???                                0x1c363627 0 + 473314855
    379 ???                                0x1c3637cb 0 + 473315275
    380 ???                                0x1c3609ac 0 + 473303468
    381 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    382 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    383 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    384 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    385 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    386 ???                                0x15b471a7 0 + 364147111
    387 ???                                0x1c363e23 0 + 473316899
    388 ???                                0x1c69d5f5 0 + 476698101
    389 ???                                0x1c69dafc 0 + 476699388
    390 ???                                0x1c6a3d8d 0 + 476724621
    391 ???                                0x1c360ab7 0 + 473303735
    392 ???                                0x1c360f06 0 + 473304838
    393 ???                                0x1c3617f2 0 + 473307122
    394 ???                                0x1c3621e6 0 + 473309670
    395 ???                                0x1c362392 0 + 473310098
    396 ???                                0x1c363627 0 + 473314855
    397 ???                                0x1c3637cb 0 + 473315275
    398 ???                                0x1c3609ac 0 + 473303468
    399 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    400 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    401 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    402 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    403 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    404 ???                                0x15b471a7 0 + 364147111
    405 ???                                0x1c363e23 0 + 473316899
    406 ???                                0x1c69d5f5 0 + 476698101
    407 ???                                0x1c69dafc 0 + 476699388
    408 ???                                0x1c6a3d8d 0 + 476724621
    409 ???                                0x1c360ab7 0 + 473303735
    410 ???                                0x1c360f06 0 + 473304838
    411 ???                                0x1c3617f2 0 + 473307122
    412 ???                                0x1c3621e6 0 + 473309670
    413 ???                                0x1c362392 0 + 473310098
    414 ???                                0x1c363627 0 + 473314855
    415 ???                                0x1c3637cb 0 + 473315275
    416 ???                                0x1c3609ac 0 + 473303468
    417 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    418 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    419 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    420 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    421 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    422 ???                                0x15b471a7 0 + 364147111
    423 ???                                0x1c363e23 0 + 473316899
    424 ???                                0x1c69d5f5 0 + 476698101
    425 ???                                0x1c69dafc 0 + 476699388
    426 ???                                0x1c6a3d8d 0 + 476724621
    427 ???                                0x1c360ab7 0 + 473303735
    428 ???                                0x1c360f06 0 + 473304838
    429 ???                                0x1c3617f2 0 + 473307122
    430 ???                                0x1c3621e6 0 + 473309670
    431 ???                                0x1c362392 0 + 473310098
    432 ???                                0x1c363627 0 + 473314855
    433 ???                                0x1c3637cb 0 + 473315275
    434 ???                                0x1c3609ac 0 + 473303468
    435 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    436 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    437 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    438 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    439 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    440 ???                                0x15b471a7 0 + 364147111
    441 ???                                0x1c363e23 0 + 473316899
    442 ???                                0x1c69d5f5 0 + 476698101
    443 ???                                0x1c69dafc 0 + 476699388
    444 ???                                0x1c6a3d8d 0 + 476724621
    445 ???                                0x1c360ab7 0 + 473303735
    446 ???                                0x1c360f06 0 + 473304838
    447 ???                                0x1c3617f2 0 + 473307122
    448 ???                                0x1c3621e6 0 + 473309670
    449 ???                                0x1c362392 0 + 473310098
    450 ???                                0x1c363627 0 + 473314855
    451 ???                                0x1c3637cb 0 + 473315275
    452 ???                                0x1c3609ac 0 + 473303468
    453 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    454 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    455 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    456 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    457 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    458 ???                                0x15b471a7 0 + 364147111
    459 ???                                0x1c363e23 0 + 473316899
    460 ???                                0x1c69d5f5 0 + 476698101
    461 ???                                0x1c69dafc 0 + 476699388
    462 ???                                0x1c6a3d8d 0 + 476724621
    463 ???                                0x1c360ab7 0 + 473303735
    464 ???                                0x1c360f06 0 + 473304838
    465 ???                                0x1c3617f2 0 + 473307122
    466 ???                                0x1c3621e6 0 + 473309670
    467 ???                                0x1c362392 0 + 473310098
    468 ???                                0x1c363627 0 + 473314855
    469 ???                                0x1c3637cb 0 + 473315275
    470 ???                                0x1c3609ac 0 + 473303468
    471 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    472 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    473 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    474 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    475 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    476 ???                                0x15b471a7 0 + 364147111
    477 ???                                0x1c363e23 0 + 473316899
    478 ???                                0x1c69d5f5 0 + 476698101
    479 ???                                0x1c69dafc 0 + 476699388
    480 ???                                0x1c6a3d8d 0 + 476724621
    481 ???                                0x1c360ab7 0 + 473303735
    482 ???                                0x1c360f06 0 + 473304838
    483 ???                                0x1c3617f2 0 + 473307122
    484 ???                                0x1c3621e6 0 + 473309670
    485 ???                                0x1c362392 0 + 473310098
    486 ???                                0x1c363627 0 + 473314855
    487 ???                                0x1c3637cb 0 + 473315275
    488 ???                                0x1c3609ac 0 + 473303468
    489 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    490 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    491 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    492 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    493 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    494 ???                                0x15b471a7 0 + 364147111
    495 ???                                0x1c363e23 0 + 473316899
    496 ???                                0x1c69d5f5 0 + 476698101
    497 ???                                0x1c69dafc 0 + 476699388
    498 ???                                0x1c6a3d8d 0 + 476724621
    499 ???                                0x1c360ab7 0 + 473303735
    500 ???                                0x1c360f06 0 + 473304838
    501 ???                                0x1c3617f2 0 + 473307122
    502 ???                                0x1c3621e6 0 + 473309670
    503 ???                                0x1c362392 0 + 473310098
    504 ???                                0x1c363627 0 + 473314855
    505 ???                                0x1c3637cb 0 + 473315275
    506 ???                                0x1c3609ac 0 + 473303468
    507 com.adobe.AIR                      0x029d91f4 0x255b000 + 4710900
    508 com.adobe.AIR                      0x029d44c5 0x255b000 + 4691141
    509 com.adobe.AIR                      0x029d8dbf 0x255b000 + 4709823
    510 com.adobe.AIR                      0x02b068e2 0x255b000 + 5945570
    511 com.adobe.AIR                      0x02849290 0x255b000 + 3072656
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                  0x99740382 kevent + 10
    1   libSystem.B.dylib                  0x99740a9c dispatchmgr_invoke + 215
    2   libSystem.B.dylib                  0x9973ff59 dispatchqueue_invoke + 163
    3   libSystem.B.dylib                  0x9973fcfe dispatchworker_thread2 + 240
    4   libSystem.B.dylib                  0x9973f781 pthreadwqthread + 390
    5   libSystem.B.dylib                  0x9973f5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                  0x9973f412 __workq_kernreturn + 10
    1   libSystem.B.dylib                  0x9973f9a8 pthreadwqthread + 941
    2   libSystem.B.dylib                  0x9973f5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x9974775e pthreadcond_wait + 1191
    2   libSystem.B.dylib                  0x997493f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                      0x02af9e65 0x255b000 + 5893733
    4   com.adobe.AIR                      0x02935fbd 0x255b000 + 4042685
    5   com.adobe.AIR                      0x02af9f7f 0x255b000 + 5894015
    6   com.adobe.AIR                      0x02af9ff9 0x255b000 + 5894137
    7   com.adobe.AIR                      0x02afa094 0x255b000 + 5894292
    8   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    9   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x9974775e pthreadcond_wait + 1191
    2   libSystem.B.dylib                  0x997493f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                      0x02af9e65 0x255b000 + 5893733
    4   com.adobe.AIR                      0x02935fbd 0x255b000 + 4042685
    5   com.adobe.AIR                      0x02af9f7f 0x255b000 + 5894015
    6   com.adobe.AIR                      0x02af9ff9 0x255b000 + 5894137
    7   com.adobe.AIR                      0x02afa094 0x255b000 + 5894292
    8   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    9   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                  0x99719afa mach_msg_trap + 10
    1   libSystem.B.dylib                  0x9971a267 mach_msg + 68
    2   com.apple.CoreFoundation           0x967372df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation           0x967363c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation           0x967361f1 CFRunLoopRunInMode + 97
    5   com.apple.CoreMediaIOServices      0x9a706f15 MIO::DAL::RunLoop::OwnThread(void*) + 157
    6   com.apple.CoreMediaIOServices      0x9a708dda CAPThread::Entry(CAPThread*) + 180
    7   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    8   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x997739c5 nanosleep$UNIX2003 + 188
    2   com.adobe.AIR                      0x02af9f10 0x255b000 + 5893904
    3   com.adobe.AIR                      0x0298a3d9 0x255b000 + 4387801
    4   com.adobe.AIR                      0x0298a3f6 0x255b000 + 4387830
    5   com.adobe.AIR                      0x02af9f7f 0x255b000 + 5894015
    6   com.adobe.AIR                      0x02af9ff9 0x255b000 + 5894137
    7   com.adobe.AIR                      0x02afa094 0x255b000 + 5894292
    8   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    9   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x9974775e pthreadcond_wait + 1191
    2   libSystem.B.dylib                  0x997472b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.adobe.AIR                      0x02af9e91 0x255b000 + 5893777
    4   com.adobe.AIR                      0x02b37db0 0x255b000 + 6147504
    5   com.adobe.AIR                      0x02af9f7f 0x255b000 + 5894015
    6   com.adobe.AIR                      0x02af9ff9 0x255b000 + 5894137
    7   com.adobe.AIR                      0x02afa094 0x255b000 + 5894292
    8   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    9   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                  0x9973f412 __workq_kernreturn + 10
    1   libSystem.B.dylib                  0x9973f9a8 pthreadwqthread + 941
    2   libSystem.B.dylib                  0x9973f5c6 start_wqthread + 30
    Thread 9:
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x9974775e pthreadcond_wait + 1191
    2   libSystem.B.dylib                  0x997472b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.adobe.AIR                      0x02af9e91 0x255b000 + 5893777
    4   com.adobe.AIR                      0x02c6c59e 0x255b000 + 7411102
    5   com.adobe.AIR                      0x02af9f7f 0x255b000 + 5894015
    6   com.adobe.AIR                      0x02af9ff9 0x255b000 + 5894137
    7   com.adobe.AIR                      0x02afa094 0x255b000 + 5894292
    8   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    9   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 10:  JavaScriptCore: FastMalloc scavenger
    0   libSystem.B.dylib                  0x99747aa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x9974775e pthreadcond_wait + 1191
    2   libSystem.B.dylib                  0x997493f8 pthread_cond_wait$UNIX2003 + 73
    3   WebKit.dylib                       0x19b90da3 WebKitGetAPI + 1401461
    4   WebKit.dylib                       0x19b90e11 WebKitGetAPI + 1401571
    5   libSystem.B.dylib                  0x99747259 pthreadstart + 345
    6   libSystem.B.dylib                  0x997470de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x0052a020  ebx: 0x027c3a72  ecx: 0x00000000  edx: 0xbff9e1ec
      edi: 0x00000000  esi: 0x00536ca0  ebp: 0xbff9e1a8  esp: 0xbff9e190
       ss: 0x0000001f  efl: 0x00010286  eip: 0x0277ce40   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000010
    Binary Images:
        0x1000 -     0x6ff7 +AdobeMuse 0.8.841 (???) <5542DED7-741D-B3BD-56BE-89E760AEF7B7> /Applications/Muse.app/Contents/MacOS/Muse
       0xb0000 -    0xb4ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
       0xb9000 -    0xbfff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
       0xc9000 -    0xf2feb  com.apple.mio.DAL.VDC_4 140.0 (1496) <B0C3DA44-D183-F32E-44DB-13D828580C5E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
      0x700000 -   0x73cff3  com.apple.DP.ScreenInputDevice 15.0 (15.0) <423039F0-E590-0254-D767-C04F1E2287AA> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
      0x746000 -   0x779ff3  com.apple.FWAVC 130.46 (46) <2F2CD20F-5B9E-911A-7EA8-40D016A6C23C> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
      0x7e4000 -   0x7eeff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x255b000 -  0x36d0fc7 +com.adobe.AIR ??? (3.2.0.2070) <7EBAA6F0-794A-DE37-D04D-942F7073DE61> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x13be2000 - 0x13d90fe3  com.apple.TundraUnits 140.0 (1496) <51A20C84-A2F6-4F40-2E33-D5AB9E0CE068> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/TundraUnits.bun dle/Contents/MacOS/TundraUnits
    0x13e2b000 - 0x13e55ffb  com.apple.QuickTimeIIDCDigitizer 7.6.6 (1789) <73368702-B8C4-DB03-056B-666C0C137115> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x13e8c000 - 0x13ec8fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1789) <88107C67-DB2B-479F-EE74-61E776811834> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x1670b000 - 0x16884ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x168b6000 - 0x16cbbfe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x16d33000 - 0x16d57fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x19a35000 - 0x1a034feb +WebKit.dylib ??? (???) <27589148-B9D5-FBC0-5E5A-6D3897DE86D6> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3B

Maybe you are looking for

  • The ProgressBar error - Can't find the __package__.js - Used to work fine

    Hello everybody Yesterday I created a page with some progress bar on it using the BluePrints components and it worked great. Today I come to work and nothing works. I used the HTTP monitor to study the requests and I got what you see below. Request 4

  • Match code modification or search help hinding in LDB

    Hi all, I am working on report using PNP logical database. I created a custom search help (ZSH001) and appended in PERM coll search help. For field PERNR in selection screen need to have only one searchhep ZSH001 when I use F4 on pernr in selectin sc

  • Itouch sound - I can hear music but not vocals on songs.

    Hello - I have an Ipod touch and the sound was working with no problem, but now I can hear the music but not the actucal singing.  I have read that it might be the playback speed, but I do not see an option to change that.  please help!

  • Importing text in Premiere Pro

    Hi, I'm editing a video in premiere pro. I have designed various typography layouts in Indesign which are going to be layered over the top of the video. I'm currently exporting the text from indesign as an interactive PDF before opening it in illustr

  • Error with pubDate help?

    <pubDate>Thur, 19 Apr 2007 11:00:00 EST</pubDate> apparently when i validate there is an error in my pubDate here.. whats wrong with it?