Displaying a Big Picture on Flash CS4

Hello folks..........
It is possible to create a flash picture that the user
can drag around ?
In another words, this will be a big picture
on a small area or screen and the person with
scrollbars or mouse can drag / pan the picture.
Thanks
Gesy

Yes, if you place the image inside a movieclip you can use actionscript to control the x and y properties of the movieclip (to move it around with scrollers) and to have it draggable.  You can also add a mask over it to define the area of it that will be viewed.

Similar Messages

  • Do big picture by flash player 14 shows related to browsers.IE10 best,chrome 37 worst.

    So whenever my website is opened in IE10, it works perfectly fine, but when it is opened in Chrome37 or Firefox31, my background images  don't show up. It seems like it gets the most problems when opened in Chrome.
    The image is size of 9450*9450 when it don't shows up and it works well if i change the size of image to 9344*7600. The verison of flash player verison is 14.0 .
    Question: Do big picture by flash player 14 shows related to browsers.IE10 best,chrome 37 worst.
    Is anyone else having this problem and can help?

    Please provide a URL that demonstrates the problem.

  • How to Display an Alert or Dialog Box in Flash CS4?

    I would like to have a quick message displayed on the screen for a few seconds after a user clicks a button.  I can't seem to find an Alert Box or Dialog Box option in Flash CS4...can anyone help?
    Thanks.
    Dave

    as2 has the window component.  and for both as3 and as2 it's pretty simple to create your own movieclip to use as an alert window.

  • Display results of MySQL query from AMFPHP by ArrayCollection in AS3 (Flash CS4)

    Hi, i am using Flash CS4 (AS3) + AMFPHP + MySQL to do own flash frontend for Wordpress CMS.  Everything is going fine but i`ve got one problem. Problem with properly display of result of query in AS3 by using ArrayCollection.
    When i check my service in "amfphp/browser/" in web browser i`ve got this (with all needed data):
    (mx.collections::ArrayCollection)#0
    filterFunction = (null)
    length = 2
    list = (mx.collections::ArrayList)#1  
    length = 2     source = (Array)#2
    That is the reason that i suppose that service work fine.  Problem is when i try to display result in AS3. In actionscript i have got this:
    function getNewsListHandler(result:Object):void{
    trace(result);
    This function displays: [object Object].
    I know that "result" is an ArrayCollection type but i don`t know how to get rows and columns from this. I know that my data is there but i have no idea how to get it.
    Clarify: I don`t know how to get to Arrays and simple data variables which are in ArrayCollection.
    Could anyone help me with that problem. I would be gratefull
    P.S. I tried also change query type in service.PHP for mysql_fetch_query but in that case i`ve got only one row (not all data).

    Thanks for fast reply,
    arr_coll:ArrayCollection = new ArrayCollection ({col1:"data1",col2:"data2"}, {col1:"data3",col2:"data4"});
    you would get the data like
    var resultstr:String = arr_coll[1][1].col2;
    trace(resultstr);
    //results in data4
    could you explain me how it was happen (arr_coll[1][1].col2)? It`s not clear to me. I thought in this case rather something like this :
    var resultstr:String = arr_coll[1]['col2'];
    It should give me "data4". I know it wasn`t but i don`t understand ArrayCollection in level which is needed to use your advice in my case. Could you clarify "arr_coll[1][1].col2" a bit?
    What would it look like when you would have something like this:
    arr_coll:ArrayCollection = new ArrayCollection ({col1:"data1",col2:"data2"}, {col1:"data3",col2:"data4"},{col1:"data5",col2:"data6"},{col1:"data7",col2:"data8"});
    and you would want know f.e. position in ArrayCollection of  "data6". How would you code this? arr_coll[1][2].col2?

  • Flash CS4 loader class content not displaying in browser

    Hello,
    I'm very new at Dreamweaver and actionscript so any help would be greatly appreciated!
    I'm on a PC and created a simple gallery in flash cs4 to load images on a button click.  The images are being loaded with a loader class.  When I test the gallery in flash the images load correctly.  However, I inserted the .swf into Dreamweaver and when I uploaded the page onto the server, the buttons and the animation worked correctly, but none of the images were being displayed.  I tested it in both Firefox and IE and it did not work in either browser.
    I thought maybe the files were in the incorrect location, but everything is in the same file, including the .swf and the images.  I'm also using TweenMax and all those files are also together with the .swf.
    I also ensured that I had the latest version of the Flash player, but it still is not working.
    Thank you!

    Thank you for the quick response!  I am not actually using XML - I am loading the images from a folder.  Here is my code:
    function clicker(e:MouseEvent):void
    var myMC:MovieClip = e.currentTarget as MovieClip;
    switch(myMC.name){
      case"_button1":
       loader.load(new URLRequest("imgs/image01.jpg"));
       break;
      case"_button2":
       loader.load(new URLRequest("imgs/image02.jpg"));
       break;
    //loader class
    var loader:Loader = new Loader();
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,placeimage,false,0,true);
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,errorhandler,false,0,true) ;
    loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,preload,false,0,true);
    this.addChild(loader);
    //handler for the loader
    function errorhandler(e:IOErrorEvent):void
    trace(e);
    function preload(e:ProgressEvent):void
    trace(e.bytesLoaded);
    The imgs folder is in the same folder as my .swf and has been uploaded.  Could there be something wrong with the links?

  • Need help displaying images with List component for Flash CS4 (ActionScript 3.0)

    Hi folks:
    I am an inexperienced user of Flash CS4 Pro (v10.0.2). I am attempting to use the List component with ActionScript 3.0 to make a different image display when a user clicks each item in a list.
    I did find a tutorial that showed me how to make different text display using a dynamic text box and the following ActionScript:
    MyList.addEventListener(Event.CHANGE, ShowSelectedItem);
    function ShowSelectedItem(event:Event):void {
        ListText.text=MyList.selectedItem.data;
    ...where My List is the instance of the List component and ListText is the dynamix text box. In this case, the user clicks an item in the list, defined by the label value in the dataProvider parameter of the List component, and text displays as defined in the data value in the dataProvider parameter.
    However, as I mentioned to start, what I really want to do is make images display instead of text. Can anyone provide me the steps to do this?
    I appreciate your help (in advance)!!
    Cindy

    Hi...thanks for responding! I was planning on using images from the Library, but if there is a better way to do it, I'm open. So far, I just have text in the data property. This is part of my problem. I don't know what I need to put in the data value for an image to display. Do I just put the image file name and Flash will know to pull it from the Library? Do I need to place the images on the stage on different frames? I apologize for the "stupid user" questions, but as you can tell, I'm a newbie.
    Appreciate your patience and any help you can offer!
    Cindy

  • Newbie in hell...flash cs4 image

    Hello everyone,
    I must warn you I am an absolute beginner with flash, however am proficient in Illustrator / ps cs4 and now have flash cs4. I have a mountain of graphic work for a client and as part of this welcome work I've inherited a flash header that I need to finish for a website. The only problem is, I usually work in print and know nothing about flash, but would like to tackle this if I can. The inherited header is 980 x 230 with 8 images that fade in/out as they change over each other (morph). It was originally done in flash 10 using tweens but I gather flash has changed a bit with regards to this sort of thing.
    I like to learn new things but I have spent HOURS online and just can't find out how to do this. I've had a good look around flash but unfortunately I just can't dedicate days or weeks to learning the entire program.
    From what I can gather so far:
    The images go into flash library (is jpeg ok or do they have to be BMP) then I need to convert them to symbols then they go into the timeline as layers ...OMG I guess my first question is..is this a fairly simple thing to accomplish or should I look at outsourcing it? I'm pretty good with the teaching myself stuff, but my biggest enemy is time. I've looked at the adobe tv tuts but didn't see anything like what I'm after (the image doesn't need to slide, it just needs to fade into another one).
    I'm so buggered, hoping if I get some sleep some kind soul will either be willing to help, or tell me to forget it, either way helping to end my frustration!
    Thanks in advance,
    A bona fide Flash Dummie...
    Lauren

    I
    don't have CS4 so I am not familiar with the new way of tweening, only
    with what CS4 calls classic tweens, which is what I grew up with in
    Flash.  What I described for you is based on classic tweens.
    While those in in the know
    (a few) praise the wonders of the new tweens, general concensus in these
    forums for those that question them is that trying/learning to work
    with the new tweens is not straightforward.
    As far as movieclip versus
    graphic goes, neither is preferable over the other.  Both will perform
    in a tween.  Movieclips are useful when you have more to do with the
    object than just display it.
    The difference with the motion tweens is that the motion tweens are built to be easily scalable and to provide a graphical interface for easily updating/editing the tweens visually (including path, timing etc). Classic tween is what you want for your project so you're on the right track. As far as the difference between a movieclip and a bitmap not mattering, well it depends really on the scale of the project but best practice is to go with the smaller class. The movieclip class is massive, one of the largest because it is a dynamic type and is near the bottom of the chain of inheritance on the flash displayobject list. So, the bitmap class would be probably like 1/10th the file size of the movieclip class, so go with bitmap. Since flash is primarily a web technology and I'm sure you're doing this project for a website, every byte matters.  Imagine the difference in filesize is 5 kb just because of what classes you decide to use but you decide to deploy the project on a website with 5 million users. Thats 25 gigabytes of wasted bandwidth. Anyway that doesn't really apply to you because you're doing timeline tweens and the flash IDE will automatically import all of those bulky classes anyway, but it's good to keep in mind if you decide to pursue getting deeper into flash and working with actionscript.
    Anyway it looks like you've almost got your project all sorted out but there is the problem with doing everything inside flash using timeline tweens. As you're aware, it's a pain if you need to update. Below is some basic actionscript you can paste inside of a new fla file. It's not the best example but I just kind of wipped it up and should be more than enough for you to pick apart and learn how actionscript 3 works in flash. So.. create a new fla set the stage to the size of your project (980 X 230) pixels. Create a new blank movieclip (might as well, read up) and give it an instance name of "imageContainer". That's it for setup in the FLA. In the same folder as the FLA create a folder beside the fla called images. Create a new text document inside that folder and name it "filelist.xml". In that list, paste this:
    <files>
        <file filename="171_2784_2.jpg" />
        <file filename="165_2564_0.jpg" />
        <file filename="171_2690_2.jpg" />
        <file filename="171_2735_1.jpg" />
    </files>
    Copy all of your images for this project into the images folder. Now modify that XML to include the name of each file in the folder.
    Now back in your FLA, click the first frame of the main timeline. Open the actions panel (view -> actions in the menu)
    Now paste this into that frame:
    import fl.transitions.Tween;
    import fl.transitions.easing.Strong;
    import fl.transitions.TweenEvent;
    var listIndex:int = 0;
    var nextImage:Bitmap = new Bitmap();
    var listOfImages:Array = new Array();
    var listLoader:URLLoader = new URLLoader();
    listLoader.addEventListener(Event.COMPLETE, parseFileList);
    listLoader.load(new URLRequest("images/filelist.xml"));
    var imageLoader:Loader = new Loader();
    var cycleTimer:Timer = new Timer(5000, 0);
    cycleTimer.addEventListener(TimerEvent.TIMER, beginImageCycling);
    function parseFileList(e:Event):void
        //trace(e.currentTarget.data); //Uncomment this to debug and see what data is coming in
        var fileListXML:XML;
        try{
            fileListXML= new XML(e.currentTarget.data);
        }catch(e:Error){
            trace("The file list is either not well formed XML or not XML at all");
        var a:Number;
        //Get an XMLList object which will contain all of the children of the fileListXML
        var fileList:XMLList = fileListXML.children();
        for(a = 0; a < fileList.length(); ++a){
            trace(fileList[a].attribute("filename"));
            listOfImages.push(fileList[a].attribute("filename"));
        trace("Done parsing file list XML");
        beginImageCycling();
    function beginImageCycling(e:TimerEvent = null):void
        imageLoader = new Loader();
        imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, showNextImage);
        imageLoader.load(new URLRequest("images/" + listOfImages[listIndex]));
        listIndex++;
        if(listIndex >= listOfImages.length){
            //This will reset the index and begin looping from the images from the start
            listIndex = 0;
    function showNextImage(e:Event):void
        trace("Image loaded, get ready to show it");
        nextImage = e.currentTarget.content as Bitmap;
        var tw:Tween = new Tween(nextImage, "alpha", Strong.easeOut, nextImage.alpha, 0, 1, true);
        tw.addEventListener(TweenEvent.MOTION_FINISH, changeOutImage);
        tw.start();
    function changeOutImage(e:Event):void
        while(imageContainer.numChildren > 2){
            trace("removing old images");
            imageContainer.removeChildAt(0);
        //Add the new image to the container, in this case the stage
        imageContainer.addChild(nextImage);
        var tw:Tween = new Tween(nextImage, "alpha", Strong.easeOut, nextImage.alpha, 1, 1, true);
        //Restart the timer to cycle images
        cycleTimer.reset();
        cycleTimer.start();
    In the menu go to Control--->Play. That should do it, it should cycle through those images over and over. I'm at work doing this on my lunch I'll post a completed project/demo of this later when I get home and give you an intro to actionscript by covering the code I've put here. Anyway so now the benefit of doing things this way is that if you want to adjust the transition time, you simply go to the :Tween = new Tween lines and change this:
    Strong.easeOut, nextImage.alpha, 1, 1, true);
    to:
    Strong.easeOut, nextImage.alpha, 2, 1, true);
    Which will change the transition time from 1 second to 2 seconds. Or, say if you want to add new pictures, all you have to do is change that XML and copy in new pictures, something even your client could do (which is sure to make them happy).
    Anyway I'll post later even if you don't need this anymore it may be useful to somoene else who finds this topic one day. .:)
    -Jesse

  • Automating tasks in Flash CS4

    I have a question regarding the possibility of automating repetitive tasks in Adoble Flash CS4.
    My wife is pregnant and we are taking a picture of her every day so that at the end, we will have a flash movie of her belly growing throughout her pregnany. This is basically what I am doing:
    1) Take the picture
    2) The picture's native resolution is too big for flash CS4, so i resize the image in Photoshop (I can automate this and do these in large batches)
    3) I import the resized photos into flash
    4) I create the keyframes etc (3 frames per photo)
    5) The canvas is the exact size of the photo, so the photo fits perfectly (drag and drop)
    6) Save the file once im done with the batch
    Basically, I was wondering if i can do in flash what i am doing in photoshop. Automate the app to select a folder, have Flash import the photo, create the keyframes and place each photo in the frame...repeat until all photos are done.
    Is this possible?
    Thanks in advance,
    Don

    if you name your photos suggestively (whatever1.jpg, whatever2.jpg etc) and if you import one, flash will detect that you might want to load the entire sequence and distribute one per keyframe and give you that option.
    while flash can resize for you, if this is going to be a web-based app, you would still benefit from resizing before importing.

  • Flash CS4: My animated gif isn't playing right in flash

    Thank you so much for your help.
    I made an animated gif in Photoshop CS4 and opened it in Flash CS4, but for some reason the gif won't play without interruption. I opened and played it without a problem several times in Internet Explorer and Safari, but when I open it in Flash or Captivate it won't play so smoothely. It goes blank for a few seconds, then reappears, then goes blank and only shows parts of the graphic - as if it's reloading or something. The timeline in Flash shows black dots whenever it pauses. here is a screen shot:
    See those black dots in the timeline? I will insert a picture of what happens on one of those black dots:
    It's the same animation, but only shows a little of the graphic. Like I said, it plays fine when I open it with an internet browser, or photoshop, but not in Flash or Captivate.
    Thanks so much for helping me with this!
    Nat

    When you exported from Photoshop did you use LZW compression on the GIF? If so can you try disabling LZW compression and reimporting to see if your issue goes away? What you depict there looks like updated frames only contain the part of the picture that's changing, which is compression. GIF isn't compressed by nature and each frame should be a whole picture, unless compressed. I'm not certain LZW would even perform spatinal compression but it's worth a shot to see if it does.
    Aside that have you tried using Import to Library, then dragging the image from the library into the timeline?

  • How can I make a transparent square box swf file in flash cs4?

    Hi,
    I have one picture imported into flash cs4 and would like to make a rectangle box which should be transparent. Finally I will save it as .swf file for later use. But the box should be transparent (without any background). How can I do that? Please do help.
    Thanks.

    Hi just a shot in the dark..
    Have you fiddled with movieclips and the alpha property?
    Best regards
    Peter

  • How can I use Flash_Slideshow.SWF in my Flash CS4 document?

    Hi,
    I have downloaded a nice Flash Slide show file (.SWF) and would like to use in my Flash CS4 document without any modification (as it is). How can I use it? There is no .Fla file this Slide Show. It just works using xml file.
    Please do help.

    Hi,
    You need to load a .swf file in your flash document using the loader class. I'm assuming you are using the AS3. Please click on the below link which helps you to use the loader class.
    http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html
    Thanks

  • Flash CS4 onPeerConnect does not fire

    Hi
    I tryed to do Flex example for simple chat (p2p) with Stratus at Flash CS4 IDE
    (adapted it of course) but onPeerConnect does not fire.
    Can you take a look at my code ?
    What's wrong with it ?
    package {
        import flash.events.*;
        import flash.net.*;
        import flash.display.*;
        import flash.media.*;
        public class stratusTest2 extends Sprite {
            private const SERVER_ADDRESS:String="rtmfp://stratus.adobe.com/";
            private const DEVELOPER_KEY:String="a9fb14e5b040800e8327ab51-37f33907d0c1/";
            private var nc:NetConnection;
            private var myPeerID:String;
            private var farPeerID:String;
            // streams
            private var sendStream:NetStream;
            private var recvStream:NetStream;
            private var VideoDisplay:MyVideoDisplay;
            private var FAR_PeerVideoDisplay:farPeerVideoDisplay;
            private var VidDisplay:Sprite;
            public function stratusTest2(){
                addEventListener("addedToStage",initThis);
            private function initThis(e:Event){
                VidDisplay=new Sprite();
                addChild(VidDisplay);
                connectToStratusBTN.addEventListener("mouseDown",initConnection);
                initSendStreamBTN.addEventListener("mouseDown",initSendStream);
                initReceiveStreamBTN.addEventListener("mouseDown",initRecvStream);
                sendDataBTN.addEventListener("mouseDown",sendDataBTNPressed);
            private function initConnection(e:MouseEvent){
                if (MY_peerIDText.text) {
                    farPeerID=MY_peerIDText.text;
                nc=new NetConnection();
                nc.addEventListener(NetStatusEvent.NET_STATUS,ncStatus);
                nc.connect(SERVER_ADDRESS+DEVELOPER_KEY);
            private function ncStatus(event:NetStatusEvent):void {
                INF.appendText("ncStatus: "+event.info.code+"\n");
                trace(event.info.code);
                myPeerID=nc.nearID;
                MY_peerIDText.text=myPeerID;
            private function initSendStream(e:MouseEvent){
                trace("initSendStream");
                INF.appendText("initSendStream\n");
                sendStream=new NetStream(nc,NetStream.DIRECT_CONNECTIONS);
                sendStream.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
                sendStream.publish("__media");
                var sendStreamClient:Object=new Object();
                sendStream.client=sendStreamClient;
                sendStreamClient.onPeerConnect=function(callerns:NetStream):Boolean{
                    farPeerID = callerns.farID;
                    trace("onPeerConnect "+farPeerID);
                    INF.appendText("onPeerConnect "+farPeerID+"\n");
                    return true;
                //VideoDisplay=new MyVideoDisplay(VidDisplay);
                //var camera:Camera=Camera.getCamera();
                //VideoDisplay.attachCamera(camera);
                //sendStream.attachCamera(camera);
            private function initRecvStream(e:MouseEvent){
                recvStream=new NetStream(nc,farPeerID);
                INF.appendText("start receiving from "+farPeerID+"\n");
                recvStream.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
                recvStream.play("__media");
                recvStream.client=this;
                //FAR_PeerVideoDisplay=new farPeerVideoDisplay(VidDisplay);
                //FAR_PeerVideoDisplay.attachStream(recvStream);
            public function receiveSomeData(str:String){
                txtReceiveData.text=str;
            private function sendDataBTNPressed(e:MouseEvent){
                sendStream.send("receiveSomeData",txtSendData.text);
            private function netStatusHandler(event:NetStatusEvent):void {
                trace("netStatusHandler: "+event.info.code);
                INF.appendText("netStatusHandler: "+event.info.code+"\n");
                trace(event.info.code);
    i have 3 input texts: MY_peerIDText, txtSendData, txtReceiveData
    When i press connectToStratusBTN i get ID after than i open another
    browser window with the same swf and paste this ID into MY_peerIDText
    After connection i press initSendStreamBTN in first swf (it is 1st browser page)
    and i press initReceiveStreamBTN in 2nd swf
    After that iwrite down some text in txtSendData TextField (in 1st browser page) and press sendDataBTN
    Nothing happens

    this function doesn't work correctly:
    private function sendDataBTNPressed(e:MouseEvent){
                sendStream.send("receiveSomeData",txtSendData.text);
    because you send not String, but link to the txtSendData.text, which is empty in another peer.
    So, solution is following (not the one, but for example):
    private function sendDataBTNPressed(e:MouseEvent){
             var sendString:String = "";
            sendString+=txtSendData.text;
            sendStream.send("receiveSomeData",sendString);

  • FLASH CS4 Projector won't run on Mac OS 10.9.1

    I'm producing a projector out of Flash CS4 on an iMac running 10.6.8 OS. The projector along with supporting files gets burned to a DVD. When the DVD is placed into a machine with Mac OS 10.9.1, it fails to launch. Flash Player quits unexpectedly and it throws an EXC_BAD_ACCESS (SIGBUS) KERN_PROTECTION_FAILURE exception error. I've had no problem in the past and have produced several DVDs using the same process and software. But now all of a sudden, these errors have been happening. My client is the one doing QA testing on the DVDs. I'm working on a freelance project and deadline is at my door. Any help would be greatly appreciated!!!
    The Error:
    Process:    
    Flash Player [332]
    Path:       
    /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    Identifier: 
    com.macromedia.Flash Player.app
    Version:    
    10.0.22.87 (10.0)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [160]
    Responsible:
    Flash Player [332]
    User ID:    
    501
    Date/Time:  
    2014-02-10 12:29:32.319 -0800
    OS Version: 
    Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  3D2BEA26-21EB-69B0-826F-D2B19415B172
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    __TEXT            
    0000000000001000-00000000005f4000 [ 6092K] r-x/rwx SM=COW  /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib        
    0x9ae36785 strlcpy + 53
    1   com.apple.CoreServices.CarbonCore
    0x932e8901 UTF8ToFSSpecName + 50
    2   com.apple.CoreServices.CarbonCore
    0x9328706d FSRefCreate + 423
    3   com.apple.CoreServices.CarbonCore
    0x93287510 PBGetCatalogInfoSync + 1025
    4   com.apple.CoreServices.CarbonCore
    0x93287107 FSGetCatalogInfo + 53
    5   com.apple.CoreFoundation 
    0x91ac5b5e filePathToHFSPath + 526
    6   com.apple.CoreFoundation 
    0x91ac4a27 URLPathToHFSPath + 151
    7   com.apple.CoreFoundation 
    0x91997e3d CFURLCreateStringWithFileSystemPath + 477
    8   com.apple.CoreFoundation 
    0x9199450a CFURLCopyFileSystemPath + 426
    9   com.macromedia.Flash Player.app
    0x002ab2e0 0x1000 + 2794208
    10  com.macromedia.Flash Player.app
    0x002acd44 0x1000 + 2800964
    11  com.macromedia.Flash Player.app
    0x002c68b1 main + 2001
    12  com.macromedia.Flash Player.app
    0x00002892 0x1000 + 6290
    13  com.macromedia.Flash Player.app
    0x000027b9 0x1000 + 6073
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9598a992 kevent64 + 10
    1   libdispatch.dylib        
    0x94ebf8bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib        
    0x94ebf556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib   
    0x9598a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x9514cdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x95150cce start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib   
    0x95984f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9598416c mach_msg + 68
    2   com.macromedia.Flash Player.app
    0x004ced34 main + 2133076
    3   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    4   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    5   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib   
    0x959897ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x9514dd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x9514ffa3 pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app
    0x002b835f 0x1000 + 2847583
    4   com.macromedia.Flash Player.app
    0x002cc22c main + 24908
    5   com.macromedia.Flash Player.app
    0x002b87ff 0x1000 + 2848767
    6   libsystem_pthread.dylib  
    0x9514b5fb _pthread_body + 144
    7   libsystem_pthread.dylib  
    0x9514b485 _pthread_start + 130
    8   libsystem_pthread.dylib  
    0x95150cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xedd897c3  ebx: 0x00000000  ecx: 0x00000400  edx: 0x00000005
      edi: 0xbfff9f28  esi: 0x00000000  ebp: 0xbfffa338  esp: 0xbfff9f00
       ss: 0x00000023  efl: 0x00010216  eip: 0x9ae36785   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x1000 -   0x5f3fff +com.macromedia.Flash Player.app (10.0.22.87 - 10.0) <F0BA7198-5295-2DCF-61F8-02EE4A1DD571> /Volumes/VOLUME/Start_Here.app/Contents/MacOS/Flash Player
      0x707000 -   0x731fff  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <30C0DC77-EDFD-36B3-AB1C-A520B472A869> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x8fee6000 - 0x8ff18417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x900d5ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x900d6000 - 0x900d8ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x908eb000 - 0x908ecfff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x908ed000 - 0x908f2ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x908f3000 - 0x908f3fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x908f4000 - 0x90940ff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0x90941000 - 0x90941fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90ac1000 - 0x90b36ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b37000 - 0x90b3bffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90b3c000 - 0x90b5fff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x90b60000 - 0x90f58ff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x90f59000 - 0x910cbffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91180000 - 0x911d9ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91440000 - 0x91442fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x9197a000 - 0x91b7cff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91b7d000 - 0x91bcdff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x91bce000 - 0x91bd0ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bd1000 - 0x91beafff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9218d000 - 0x92196ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x92197000 - 0x921a0fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x921a1000 - 0x921a2fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x921ab000 - 0x9229ffff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x922a0000 - 0x92665ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x926c5000 - 0x92827ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x928f0000 - 0x92963fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x92964000 - 0x92964ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x92973000 - 0x92977ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x92978000 - 0x92979fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9297a000 - 0x92b224af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x92b23000 - 0x92b40ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x92b4b000 - 0x92b4efff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x92b9d000 - 0x92cd4ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x92cd5000 - 0x92e9bffb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x92e9c000 - 0x92ef8ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x92f0d000 - 0x92f43fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x92fca000 - 0x93010ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x93011000 - 0x9307cff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9307d000 - 0x930abff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9327f000 - 0x93580ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x93597000 - 0x939cbff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x939cc000 - 0x939d9ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x939da000 - 0x939e7fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x93a94000 - 0x93a94fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a95000 - 0x93a9aff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x94416000 - 0x9447ffff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x946bc000 - 0x94725fff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x947e9000 - 0x94880ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x94bc8000 - 0x94ebaff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x94ebc000 - 0x94ed4ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x94ed5000 - 0x94f13ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x94fba000 - 0x94fbafff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x94fbb000 - 0x950cdffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x950ce000 - 0x950d9fff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x950db000 - 0x950deff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x950df000 - 0x950f7fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x950f8000 - 0x950f9fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x950fa000 - 0x95149fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9514a000 - 0x95151ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x9532a000 - 0x95352ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95353000 - 0x954ffff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95500000 - 0x95598ff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95599000 - 0x9567fff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95680000 - 0x9568afff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9568b000 - 0x95690ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x95691000 - 0x956efffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x956f0000 - 0x956f4fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9579f000 - 0x957dcffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x958c1000 - 0x95936ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x95937000 - 0x95937fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95970000 - 0x95971ffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x95972000 - 0x9598fff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x95990000 - 0x9599cff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95ae1000 - 0x95aedffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x95aee000 - 0x95af7fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x95af8000 - 0x95bd3ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x95bd4000 - 0x95c4aff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x95c65000 - 0x95c68ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95ccc000 - 0x95ff7ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9604e000 - 0x9605cff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9605d000 - 0x96065fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x96066000 - 0x96097ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x96098000 - 0x960acff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x960ad000 - 0x960b5fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x960b6000 - 0x960e1ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9643d000 - 0x9648bff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x964f5000 - 0x964fbffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x964fc000 - 0x96527ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x96528000 - 0x9656afff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97d92000 - 0x97fffff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x980d9000 - 0x980fdfff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x98199000 - 0x98483fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x98484000 - 0x98492ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x98496000 - 0x984a6ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x984a7000 - 0x984fafff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x984fb000 - 0x98505ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9855c000 - 0x98648ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x98761000 - 0x98789fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x9878a000 - 0x987b1fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9889e000 - 0x9889fffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x988a0000 - 0x988f6ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x988f7000 - 0x9894cff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9894d000 - 0x9894effc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x989b3000 - 0x98d28ff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x98d29000 - 0x98d35ffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x98d36000 - 0x98d60fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x98d61000 - 0x98d63fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x98db3000 - 0x98db7ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x98db8000 - 0x98df5ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x98df6000 - 0x98e27ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x98e8c000 - 0x98e94ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98e95000 - 0x98e99fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x98e9c000 - 0x98efdff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x98efe000 - 0x98efffff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x98f00000 - 0x98f51ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x98f82000 - 0x98fbeff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x98fbf000 - 0x98fcefff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98fcf000 - 0x98fe1fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9937f000 - 0x9937fffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99380000 - 0x993acff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x99643000 - 0x9965eff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99666000 - 0x99702fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x99703000 - 0x99706ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99707000 - 0x99790fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x99791000 - 0x9a3acff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9a3ad000 - 0x9a503ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x9a504000 - 0x9a508ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9a509000 - 0x9a509fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9a831000 - 0x9a849ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x9a84a000 - 0x9a956fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9a957000 - 0x9a971ff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9a972000 - 0x9a97dff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9a97e000 - 0x9a999ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9a9a1000 - 0x9aa32fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9ad71000 - 0x9ae34ff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9ae35000 - 0x9aec7ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x9aed2000 - 0x9afc2ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x9afc3000 - 0x9b227fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b228000 - 0x9b236ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x9b237000 - 0x9b253fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9b257000 - 0x9b25eff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9b25f000 - 0x9b29eff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9b306000 - 0x9b30affc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x9b30b000 - 0x9b314fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9b3b2000 - 0x9b3fafff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9b3fb000 - 0x9b4cbfef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9b4cc000 - 0x9b4dafff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9b4db000 - 0x9b4edfff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x9b58f000 - 0x9b68dfff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9bc25000 - 0x9bc49fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9bc4a000 - 0x9bc7aff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9bce3000 - 0x9bcf6fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9bcf7000 - 0x9bcfeffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9bd01000 - 0x9bd09fff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x9bd0a000 - 0x9bd15ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x9bd16000 - 0x9bd16fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9bd17000 - 0x9bf93ff7  com.apple.QuickTime (7.7.3 - 2826.0.1) <42542002-DCFF-3675-B919-440EC5057D56> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9bf94000 - 0x9bfb0ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9bfb7000 - 0x9c063ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9c064000 - 0x9c066fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9c067000 - 0x9c06fff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x9c12d000 - 0x9c131ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9c132000 - 0x9c13bfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9c13c000 - 0x9c191fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x9c2a5000 - 0x9c325ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 155
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=139.0M resident=46.6M(34%) swapped_out_or_unallocated=92.3M(66%)
    Writable regions: Total=85.3M written=2272K(3%) resident=2832K(3%) swapped_out=0K(0%) unallocated=82.5M(97%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    CG backing stores              
    180K
    CG shared images               
    172K
    Kernel Alloc Once                
    4K
    MALLOC                        
    51.7M
    MALLOC (admin)                  
    48K
    Memory Tag 242                  
    12K
    Memory Tag 249                 
    156K
    Stack                         
    71.2M
    VM_ALLOCATE                   
    32.4M
    __DATA                        
    14.6M
    __IMAGE                        
    528K
    __IMPORT                         
    8K
    __LINKEDIT                    
    43.1M
    __OBJC                        
    1792K
    __PAGEZERO                       
    4K
    __TEXT                        
    95.8M
    __UNICODE                      
    544K
    mapped file                  
    157.1M
    shared memory                    
    4K
    ===========                 
    =======
    TOTAL                        
    469.3M

    The Projector along with supporting files get burned in to a dvd from an .toast file, flash player quits unexpectedly in mac osx 10.9 and the same works fine with all previous versions of mac osx. Please find the below error message displayed
    Process:         Flash Player [82598]
    Path:            /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    Identifier:      com.macromedia.Flash Player.app
    Version:         10.1.52.14 (10.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [1970]
    Responsible:     Flash Player [82598]
    User ID:         502
    Date/Time:       2014-03-04 11:24:49.862 +0530
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  D91EDEA5-A44E-E604-4F0A-B66399043F54
    Sleep/Wake UUID: 3D1F1CE2-FC9E-461F-AAE9-A3D182BD5ED0
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    VM Regions Near 0x8:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    __TEXT 0000000000001000-000000000085f000 [ 8568K] r-x/rwx SM=COW  /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.macromedia.Flash Player.app     0x00425034 main + 226004
    1 libobjc.A.dylib                  0x975bf2af -[NSObject performSelector:withObject:] + 70
    2 com.apple.AppKit                       0x9079cb9a forwardMethod + 142
    3 com.apple.AppKit                       0x907c380b -[NSResponder mouseMoved:] + 23
    4 libobjc.A.dylib                  0x975bf2af -[NSObject performSelector:withObject:] + 70
    5 com.apple.AppKit                       0x9079cb9a forwardMethod + 142
    6 com.apple.AppKit                       0x907c380b -[NSResponder mouseMoved:] + 23
    7 com.apple.AppKit                       0x9079e41e -[NSWindow sendEvent:] + 1154
    8 com.macromedia.Flash Player.app     0x00422e04 main + 217252
    9 com.apple.AppKit                       0x9073c1ed -[NSApplication sendEvent:] + 1282
    10 com.apple.AppKit                      0x905813bc -[NSApplication run] + 823
    11 com.apple.AppKit                      0x9056a1f8 NSApplicationMain + 1165
    12 com.macromedia.Flash Player.app    0x00002802 0x1000 + 6146
    13 com.macromedia.Flash Player.app    0x00002729 0x1000 + 5929
    Thread 1:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib               0x9c032992 kevent64 + 10
    1 libdispatch.dylib              0x921bd8bd _dispatch_mgr_invoke + 238
    2 libdispatch.dylib              0x921bd556 _dispatch_mgr_thread + 52
    Thread 3:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 4:
    0 libsystem_kernel.dylib               0x9c032046 __workq_kernreturn + 10
    1 libsystem_pthread.dylib             0x9718fdcf _pthread_wqthread + 372
    2 libsystem_pthread.dylib             0x97193cce start_wqthread + 30
    Thread 5:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97192fa3 pthread_cond_wait + 48
    3 com.macromedia.Flash Player.app     0x003cdb6f 0x1000 + 3984239
    4 com.macromedia.Flash Player.app     0x00018f2c 0x1000 + 98092
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 6:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97192fa3 pthread_cond_wait + 48
    3 com.macromedia.Flash Player.app     0x003cdb6f 0x1000 + 3984239
    4 com.macromedia.Flash Player.app     0x00018f2c 0x1000 + 98092
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7   com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 7:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97191042 pthread_cond_timedwait_relative_np + 47
    3 com.macromedia.Flash Player.app     0x003cdb38 0x1000 + 3984184
    4 com.macromedia.Flash Player.app     0x002dc988 0x1000 + 2996616
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 8:
    0 libsystem_kernel.dylib               0x9c0317ca __psynch_cvwait + 10
    1 libsystem_pthread.dylib             0x97190d8a _pthread_cond_wait + 837
    2 libsystem_pthread.dylib             0x97191042 pthread_cond_timedwait_relative_np + 47
    3 com.macromedia.Flash Player.app     0x003cdb38 0x1000 + 3984184
    4 com.macromedia.Flash Player.app     0x001b99be 0x1000 + 1804734
    5 com.macromedia.Flash Player.app     0x003cdc4c 0x1000 + 3984460
    6 com.macromedia.Flash Player.app     0x003cdc7a 0x1000 + 3984506
    7 com.macromedia.Flash Player.app     0x003cdd5b 0x1000 + 3984731
    8 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    9 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    10 libsystem_pthread.dylib           0x97193cf2 thread_start + 34
    Thread 9:
    0 libsystem_kernel.dylib               0x9c02cf7a mach_msg_trap + 10
    1 libsystem_kernel.dylib               0x9c02c16c mach_msg + 68
    2 com.apple.CoreFoundation                  0x93f5df69 __CFRunLoopServiceMachPort + 169
    3 com.apple.CoreFoundation                  0x93f5d541 __CFRunLoopRun + 1393
    4 com.apple.CoreFoundation                  0x93f5cd5a CFRunLoopRunSpecific + 394
    5 com.apple.CoreFoundation                  0x93f5cbbb CFRunLoopRunInMode + 123
    6 com.apple.AppKit                       0x90738f18 _NSEventThread + 283
    7 libsystem_pthread.dylib             0x9718e5fb _pthread_body + 144
    8 libsystem_pthread.dylib             0x9718e485 _pthread_start + 130
    9 libsystem_pthread.dylib             0x97193cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000  ebx: 0x00aab260  ecx: 0xbffff5f0  edx: 0x00aab260
    edi: 0x00ada530  esi: 0x910c38d5  ebp: 0xbffff678  esp: 0xbffff5d0
    ss: 0x00000023  efl: 0x00010282  eip: 0x00425034   cs: 0x0000001b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x00000008
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
    0x1000 -   0x85efd3 +com.macromedia.Flash Player.app (10.1.52.14 - 10.1) <A242A6CE-9B6A-6F7F-1D92-AE8DF6D7EC32> /Volumes/VOLUME/Learning Stars Digibook 1.app/Contents/MacOS/Flash Player
    0xf16000 -   0xf1affd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <DAF7D11D-7AC8-38EA-AE89-903A9C59E1BB> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xf4e000 -   0xf73ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xfb3000 -   0xfbeffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x8feec000 - 0x8ff1e417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x90032ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x90033000 - 0x9006bff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90118000 - 0x90120ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x90121000 - 0x901a1ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x901a2000 - 0x90567ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x90568000 - 0x91183ff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91184000 - 0x911d9ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9128f000 - 0x913e5ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x913e6000 - 0x913eefff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x9141b000 - 0x91425ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x91426000 - 0x91426fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91427000 - 0x91428ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x91429000 - 0x91451ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91452000 - 0x9145effc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x9145f000 - 0x9148aff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x914bc000 - 0x914e7ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x914e8000 - 0x914e8fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x91caa000 - 0x91ce9ff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91cea000 - 0x91d73fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x91d74000 - 0x91d81fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x91d82000 - 0x91e52fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x91e53000 - 0x91e5dfff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x91e5e000 - 0x920cbff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x920cc000 - 0x921b8ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x921b9000 - 0x921b9fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x921ba000 - 0x921d2ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x921d3000 - 0x92519ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x92623000 - 0x92698ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x92699000 - 0x9272bffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x9272c000 - 0x927a1ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x927a2000 - 0x927a2ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x927a3000 - 0x9280cfff  com.apple.datadetectorscore (5.0 - 354.0) <A5559FE6-7A00-383D-8665-C0D622409D85> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9280d000 - 0x928acff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x92bca000 - 0x92bedff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x92bee000 - 0x92bfbff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x92c05000 - 0x92c08fff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x92c09000 - 0x930b0fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x930b1000 - 0x931a5fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x931a6000 - 0x931a8fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x931a9000 - 0x93355ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9335f000 - 0x93651ff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x93652000 - 0x936a2ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x936a5000 - 0x936caff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x936cb000 - 0x936f3fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x936f4000 - 0x93750ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x93751000 - 0x93753ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93754000 - 0x937e5fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x937e6000 - 0x93a4afff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93b2c000 - 0x93b64fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93b65000 - 0x93edaff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x93edb000 - 0x93ee6ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x93ee7000 - 0x940e9ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9446f000 - 0x9459cff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9459d000 - 0x94610fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x94611000 - 0x94612fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x94613000 - 0x946b1ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x946b2000 - 0x946b3fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x946b4000 - 0x946c8ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x946c9000 - 0x946cdfff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x946ce000 - 0x94700ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x94820000 - 0x9483fff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94840000 - 0x948a7ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x948a8000 - 0x948aafff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x948ab000 - 0x94a1bfff  com.apple.QTKit (7.7.3 - 2826.0.1) <2C936219-2C31-3912-8CD3-42A16844AFE2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94a1f000 - 0x94a23ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94a30000 - 0x94a37ffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94a38000 - 0x94a38fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x94a39000 - 0x94a67ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x94a68000 - 0x94a93ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x94a94000 - 0x94aafff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x94ab0000 - 0x94c22ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94c42000 - 0x94d2dff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x94d2e000 - 0x94d2effd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x94d2f000 - 0x94d3dfff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x94d3e000 - 0x94d49fff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x94d4a000 - 0x952b7fff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x952b8000 - 0x952f6ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x952f7000 - 0x95622ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95623000 - 0x9562bffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9565c000 - 0x9565cfff  com.apple.Carbon (154 - 157) <C49AD4A1-8DE3-357D-AEF3-D6CD39EA91EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9565d000 - 0x95660ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95661000 - 0x95987ffd  com.apple.JavaScriptCore (9537 - 9537.73.10) <B5331B86-DEBC-387A-8F3E-5B9FC28E8055> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95988000 - 0x959a0ff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x959a1000 - 0x959f0fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x959f1000 - 0x959f9fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x95c70000 - 0x95c7aff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x95c7b000 - 0x95c7bfff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x95c7e000 - 0x95cafffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x95cb0000 - 0x95cb2fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x95e45000 - 0x95e5aff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x960c1000 - 0x960c4ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x960c5000 - 0x960dcff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x960eb000 - 0x960ebfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x960ec000 - 0x960fcff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x960fd000 - 0x96100ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x96101000 - 0x961dcff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96b04000 - 0x96be7ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x96be8000 - 0x96be9fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x96cc9000 - 0x96ddbffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x96ddc000 - 0x96de1ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x96de2000 - 0x96e30ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x96e31000 - 0x96e35ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x96e9d000 - 0x96e9dfff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96e9e000 - 0x96ea6fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x96ea7000 - 0x96eb9fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x96ebf000 - 0x96ec6fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x96ec9000 - 0x96fb9ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x96fba000 - 0x9701bff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9701c000 - 0x97102ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97103000 - 0x97105ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x97106000 - 0x9710cff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x9718d000 - 0x97194ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x97195000 - 0x971ffff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x97200000 - 0x9720eff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9720f000 - 0x9720ffff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9723a000 - 0x9723bffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x97246000 - 0x9728efff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9728f000 - 0x97299ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9729a000 - 0x972ebff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x972ec000 - 0x973b9ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x973ba000 - 0x97400fff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x97401000 - 0x9740fff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97410000 - 0x97441ffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x97442000 - 0x975a4ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x975a5000 - 0x9774d4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9774e000 - 0x9779fffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x977a0000 - 0x97825ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97826000 - 0x9782ffff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x97830000 - 0x97c55fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x97c56000 - 0x97d63fe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x97d64000 - 0x97d7cfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x97e18000 - 0x97e5eff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97e5f000 - 0x97e62ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x97e63000 - 0x98164ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x98165000 - 0x98175ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x98176000 - 0x981cbfff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x981cc000 - 0x981f0fff  libxpc.dylib (300.1.17) <252

  • How to Make Dreamweaver CS4/Flash CS4 Website Function on all Latest Mobile Devices

    Hello!
    I am trying to add code into my Dreamweaver CS4 file and/or Flash CS4 file in order to have the website I have created work across all of the latest mobile devices as well as traditional online systems. My flash file has a transparent stage, and my dreamweaver file has a full-screen background image. I have reviewed various tutorials and articles available online, and some advocate simply adding code, which does not seem to be working for me, while others suggest having a similar separate site created solely for mobile devices. If this is the best option, I don't know how that should be set up. What is the best path to take with this?
    This is the collection of various pieces of code I have tried adding to my files:
      <meta name="viewport" content="width=device-width" user-scalable="yes" initial-scale="1.0" /> <!-- iphone,android -->
       <meta name="HandheldFriendly" content="true" /> <!-- blackberry -->
    </style>
       <param name="allowScriptAccess" value="sameDomain" />
          <param name="allowFullScreen" value="true" />
    <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowFullScreen" value="true" />
            <param name="var params = {          id: "flashID", name: "flashcontent", menu: "false", allowFullScreen: "true", fullScreenOnSelection: "true", scale:"noscale", salign:"middle"};"
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    //or//
    this.stage.scaleMode = StageScaleMode.NO_SCALE;
    this.stage.align = StageAlign.TOP_LEFT;
    next_btn.width = 133 * .5;
    next_btn.height = 133 * .5;
    //flash//
    next_btn.width = Capabilities.screenDPI * .5;
    next_btn.height = Capabilities.screenDPI * .5;
    //flash//
    this.stage.addEventListener(Event.RESIZE, doLayout);
    //flash://
    <initialWindow>
       <width>320</width>
       <height>480</height>
       <!-- several other properties... -->
    </initialWindow>
    * Convert inches to pixels.
    private function inchesToPixels(inches:Number):uint
       return Math.round(Capabilities.screenDPI * inches);
    var button:Sprite = new Sprite();
    button.x = 20;
    button.y = 20;
    button.graphics.beginFill(0x 003037);
    button.graphics.drawRect(0, 0, this.inchesToPixels(.75),
       this.inchesToPixels(.25));
    button.graphics.endFill();
       this.addChild(button);
    //hard-code title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    //stage width determines width of title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    titleBar.graphics.beginFill(0x003037);
    titleBar.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    titleBar.graphics.endFill();
    this.addChild(titleBar);
    //footer://
    var footer:Sprite = new Sprite();
    footer.graphics.beginFill(0x003037);
    footer.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    footer.graphics.endFill();
    footer.x = 0;
    footer.y = this.stage.stageHeight - footer.height;
    this.addChild(footer);
    * Center one DisplayObject relative to another.
    private function center(foreground:DisplayObject,
       background:DisplayObject):void
          foreground.x = (background.width / 2) -
             (foreground.width / 2);
          foreground.y = (background.height / 2) +
             (foreground.height / 2);
    //cont.//
    var title:SimpleLabel = new SimpleLabel("My Application",
       "bold", 0xffffff, "_sans", this.inchesToPixels(.15));
    this.center(title, titleBar);
    this.addChild(title);
    //override width and height getters
    public override function get width():Number
       return this.textLine.textWidth;
    public override function get height():Number
       return (this.textLine.ascent - 1);
    if (Capabilities.manufacturer == "Android Linux" && Capabilities.screenResolutionY == 1024)
    next_btn.width = 85;
    next_btn.height = 85;
    This is the code for my Dreamweaver CS4 file (without the additional erogenous code attempts):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN"
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>My Website Title and Slogan.</title>
    <style type="text/css">
    <!--
    body {
              background-image: url(bground%20_img3.jpg);
              background-repeat: no-repeat;
    -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <img src ="image.gif"  width=90% height=auto>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <meta name="Keywords" content="keywords…" />
    <div align="center"></div>
    <div align="center">
      <p> </p>
      <p>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="900" height="630">
          <param name="movie" value="FlashFile.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="transparent" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="FlashFile.swf" width="900" height="630">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="transparent" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>
      </p>
    </div>
    <div align="center"> </div>
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    I have tried various combinations of the code listed above, but nothing seems to be working. I am not sure as to the positioning of the code, and maybe that is the problem, or maybe it is because this code in not for CS4, or not appropriate for my project. I also do not know what code should be inside the Flash file, nor what should should be inside the Dreamweaver file.
    Thank you in advance for any assistance!

    Hi
    To add to what Gramps has said, Adobe has ceased developing its flash player for ALL mobile devices so do not use Flash for any mobile device.
    Depending on the complexity of your Flash program you may be able to recreate it using Edge, but the code generated by Edge does not work in IE8 or below.
    For details on Edge, see - http://labs.adobe.com/technologies/edge/
    PZ

  • How to Make Flash CS4/Dreamweaver CS4 Website Function on all Latest Mobile Devices

    Hello!
    I am trying to add code into my Dreamweaver CS4 file and/or Flash CS4 file in order to have the website I have created work across all of the latest mobile devices as well as traditional online systems. My flash file has a transparent stage, and my dreamweaver file has a full-screen background image. I have reviewed various tutorials and articles available online, and some advocate simply adding code, which does not seem to be working for me, while others suggest having a similar separate site created solely for mobile devices. If this is the best option, I don't know how that should be set up. What is the best path to take with this?
    This is the collection of various pieces of code I have tried adding to my files:
      <meta name="viewport" content="width=device-width" user-scalable="yes" initial-scale="1.0" /> <!-- iphone,android -->
       <meta name="HandheldFriendly" content="true" /> <!-- blackberry -->
    </style>
       <param name="allowScriptAccess" value="sameDomain" />
          <param name="allowFullScreen" value="true" />
    <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowFullScreen" value="true" />
            <param name="var params = {          id: "flashID", name: "flashcontent", menu: "false", allowFullScreen: "true", fullScreenOnSelection: "true", scale:"noscale", salign:"middle"};"
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    //or//
    this.stage.scaleMode = StageScaleMode.NO_SCALE;
    this.stage.align = StageAlign.TOP_LEFT;
    next_btn.width = 133 * .5;
    next_btn.height = 133 * .5;
    //flash//
    next_btn.width = Capabilities.screenDPI * .5;
    next_btn.height = Capabilities.screenDPI * .5;
    //flash//
    this.stage.addEventListener(Event.RESIZE, doLayout);
    //flash://
    <initialWindow>
       <width>320</width>
       <height>480</height>
       <!-- several other properties... -->
    </initialWindow>
    * Convert inches to pixels.
    private function inchesToPixels(inches:Number):uint
       return Math.round(Capabilities.screenDPI * inches);
    var button:Sprite = new Sprite();
    button.x = 20;
    button.y = 20;
    button.graphics.beginFill(0x 003037);
    button.graphics.drawRect(0, 0, this.inchesToPixels(.75),
       this.inchesToPixels(.25));
    button.graphics.endFill();
       this.addChild(button);
    //hard-code title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    //stage width determines width of title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    titleBar.graphics.beginFill(0x003037);
    titleBar.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    titleBar.graphics.endFill();
    this.addChild(titleBar);
    //footer://
    var footer:Sprite = new Sprite();
    footer.graphics.beginFill(0x003037);
    footer.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    footer.graphics.endFill();
    footer.x = 0;
    footer.y = this.stage.stageHeight - footer.height;
    this.addChild(footer);
    * Center one DisplayObject relative to another.
    private function center(foreground:DisplayObject,
       background:DisplayObject):void
          foreground.x = (background.width / 2) -
             (foreground.width / 2);
          foreground.y = (background.height / 2) +
             (foreground.height / 2);
    //cont.//
    var title:SimpleLabel = new SimpleLabel("My Application",
       "bold", 0xffffff, "_sans", this.inchesToPixels(.15));
    this.center(title, titleBar);
    this.addChild(title);
    //override width and height getters
    public override function get width():Number
       return this.textLine.textWidth;
    public override function get height():Number
       return (this.textLine.ascent - 1);
    if (Capabilities.manufacturer == "Android Linux" && Capabilities.screenResolutionY == 1024)
    next_btn.width = 85;
    next_btn.height = 85;
    This is the code for my Dreamweaver CS4 file (without the additional erogenous code attempts!):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN"
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>My Website Title and Slogan.</title>
    <style type="text/css">
    <!--
    body {
              background-image: url(bground%20_img3.jpg);
              background-repeat: no-repeat;
    -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <img src ="image.gif"  width=90% height=auto>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <meta name="Keywords" content="keywords…" />
    <div align="center"></div>
    <div align="center">
      <p> </p>
      <p>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="900" height="630">
          <param name="movie" value="FlashFile.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="transparent" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="FlashFile.swf" width="900" height="630">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="transparent" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>
      </p>
    </div>
    <div align="center"> </div>
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    I have tried various combinations of the code listed above, but nothing seems to be working. I am not sure as to the correct positioning of the code, and maybe that is the problem, or maybe it is because this code in not for CS4, or not appropriate for my project. I also do not know what code should be inside the Flash file, nor what should should be inside the Dreamweaver file.
    Thank you in advance for any assistance!

    There is no simple code to add that will display the same on all mobile devices....
    you do know that the iProducts (iPhone, iPad, etc) don't display Flash at all, right?
    So as a start for "functioning on all latest mobile devices" you should drop any Flash content you have and move on.
    Adninjastrator

Maybe you are looking for