Flash CS5 default template presentation (advanced) modify to play as .mov or .avi

I am using the default template for presentation (advanced version) to do my presentation.  However, I want to create a .mov or avi from this default template whereby the frames within the "Slides MovieClip" play automatically (in a .mov or .avi file) as opposed to using the keyboard or the buttons to change frames (as in a swf).
What can I do to the "Actions" to make this convertion?
import fl.transitions.*;
// USER CONFIG SETTINGS
var buttonsOn:Boolean = true; // true, false
var pageNumberOn:Boolean = true; // true, false
var transitionOn:Boolean = true; // true, false
var transitionType:String = "Fade"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
// END USER CONFIG SETTINGS
// EVENTS
stage.addEventListener(KeyboardEvent.KEY_DOWN, fl_changeSlideKeyboard);
prev_btn.addEventListener(MouseEvent.CLICK, fl_prevSlideButton);
next_btn.addEventListener(MouseEvent.CLICK, fl_nextSlideButton);
function fl_changeSlideKeyboard(evt:KeyboardEvent):void
          if(evt.keyCode == 37) // LEFT
                    fl_prevSlide();
          else if (evt.keyCode == 39 || evt.keyCode == 32) // RIGHT OR SPACE
                    fl_nextSlide();
function fl_prevSlideButton(evt:MouseEvent):void
          fl_prevSlide();
function fl_nextSlideButton(evt:MouseEvent):void
          fl_nextSlide();
// END EVENTS
// FUNCTIONS AND LOGIC
function fl_prevSlide():void
          if(slides_mc.currentFrame > 1)
                    slides_mc.gotoAndStop(slides_mc.currentFrame-1);
                    if(transitionOn == true)
                              fl_doTransition();
                    if(pageNumberOn == false)
                              slideNumber_txt.text = "";
                    } else {
                              slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
function fl_nextSlide():void
          if(slides_mc.currentFrame < slides_mc.totalFrames)
                    slides_mc.gotoAndStop(slides_mc.currentFrame+1);
                    if(transitionOn == true)
                              fl_doTransition();
                    if(pageNumberOn == false)
                              slideNumber_txt.text = "";
                    } else {
                              slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
function fl_doTransition():void
          if(transitionType == "Blinds")
                    TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Fade")
                    TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Fly")
                    TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Iris")
                    TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Photo")
                    TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "PixelDissolve")
                    TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Rotate")
                    TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Squeeze")
                    TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Wipe")
                    TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Zoom")
                    TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
          } else if (transitionType == "Random")
                    var randomNumber:Number = Math.round(Math.random()*9) + 1;
                    switch (randomNumber) {
                              case 1:
                                        TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
                                        break;
                              case 2:
                                        TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
                                        break;
                              case 3:
                                        TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
                                        break;
                              case 4:
                                        TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
                                        break;
                              case 5:
                                        TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
                                        break;
                              case 6:
                                        TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
                                        break;
                              case 7:
                                        TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
                                        break;
                              case 8:
                                        TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
                                        break;
                              case 9:
                                        TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
                                        break;
                              case 10:
                                        TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
                                        break;
          } else
                    trace("error - transitionType not recognized");
if(buttonsOn == false)
          prev_btn.visible = false;
          next_btn.visible = false;
slides_mc.gotoAndStop(1);
stage.scaleMode = StageScaleMode.SHOW_ALL;
// END FUNCTIONS AND LOGIC
stop();
Many thanks so much for reading.  Would appreciate any help.
--Andy

You need to change the code in the EVENTS section.  It curently has event listeners assigned to the stage and some buttons for calling the functions that change the slides.  What you could do is get rid of that event listener code and implement a Timer that calls the fl_nextSlide()  function.
I do not know what to answer as far as making it into an avi or mov file.  My impression with creating video files from Flash files is that the design needs to be timeline-based for that to happen (meaning it needs to play frame-by-frame along the timeline).

Similar Messages

  • Flash CS5 doesn't save advanced color effects on symbols

    In CS4 I'm used to inverting instances of my symbols by using a color effect:
    Style: Advanced
    Red: -100%  xR  +255
    Green: -100%  xG  +255
    Blue: -100%  xB  +255
    However, everytime I save these settings in a CS5 file, upon opening the settings have changed to:
    Red: 0%  xR  +255
    Green: 0%  xG  +255
    Blue: 0%  xB  +255
    Has anyone else had this problem? I'm on mac OSX with the 10.0.2 update installed.

    Had a couple students encounter the same issue.
    They had complex animations of graphic forms made from overlapping white and black pieces. Setting the blending mode to multiply allowed them to overlap the animation on top of imagery. Alternately some people needed to invert the black to white and blendmode:screen it onto darker textures and colors.
    This is easily accomplished through advanced color effect by multiplying everything by -100% and then offsetting by 255.
    Unfortunately these values aren't saved...
    You can use some code to do it, but this will get in the way of any timeline tweening. Our workaround was to drop any secondary animations of the graphic animation in a container and use code to modify _that_ clip.
    import flash.geom.ColorTransform;
    var ct = new ColorTransform();
    ct.redMultiplier = -1;
    ct.greenMultiplier = -1;
    ct.blueMultiplier = -1;
    ct.redOffset = 255;
    ct.greenOffset = 255;
    ct.blueOffset = 255;
    myClip.transform.colorTransform = ct;
    There might be another way around this that I missed, but it's a bummer that user entered values with observable and useful results aren't saved.

  • Cs3 Default templates - How to modify/add

    I have Dreamweaver CS3 and wish to add new templates for html5 & some custom ones. I want them to be in the default list when selecting "new". I don't want them to be site specific. I want to be able to edit/maintain the ones dreamweaver offers when you select - for example - new blank html page.
    For example my version does not offer a blank html5 page.
    Thanks in advance for your help.

    Hello Deepak,
    Thanks for reply.
    i have check thru SAP note 929353
    I have not find Any html links or .html extention file. i am able to see  only Resource object keys and URL parameter
    for example
    process.template.id=CECE64A19C8F11DAA5C1000E7FA67AEB&process.autostart=true
    where exactly i can change HTML files.
    Please help me
    Thanks
    Regards
    Vijai

  • I would like to find an HTML web template similar to the "classic" and "Flash Gallery (default)" templates in Lightroom 5. I like the layout of thumbnails on the left and the selected image on the right, but I want an HTML, not a Flash, version. Where can

    Ditto the above

    Here are the two images (one is of the shirt, one is of the fabric). I can get higher resolution images if needed. What do you think?
    http://www.yourfilelink.com/get.php?fid=768239
    http://www.yourfilelink.com/get.php?fid=768241
    I don't mind it taking a long time, as long as the results are repeatable as I want to be able to do this with 20 fabrics or so and I want it to look as real as possible. I am a novice at Photoshop, would you recommend I pay someone to accomplish this? How long do you think it would take? Is it something I could learn because I plan on doing 20 of them and maybe more?

  • Issue in viewing video from AMS on flash's default player for first click of play stream on player

    FMLE is streaming to AMS and Adobe default flash player is trying to view stream from AMS - i need to hit "Play Stream" button for 2-3 times to view video on Default adobe's flash player.
    This issue is 100% reproducing every time.
    please help to resolve this issue.
    regards,
    SJ

    Any one has such problem.
    Every time i play stream in flash player i have to hit play stream botton 2-3 times, this issue can be reproduced with default videoplayer.html.

  • Open a CS3 fla with Flash CS5

    I'm not sure this is the right forum, so if the admin want to put this tread in the right place, please, do it!
    I'm going to buy a site template provided with fla source, but it is developed in CS3.
    Do you know if there are same problem opening and modifing this kind of fla with Flash CS5?
    Thanks in advance.

    there is no problem opening fla files, made with earlier versions of flash pro, in later flash pro versions (except for as2 containing files and flash pro after cs6).
    so, you're ok.
    except, and this is an excerpt from a book i wrote (Flash Game Development: In a Social, Mobile and 3D World),
    Spreading code across more than one frame of a timeline and especially in more than one timeline is a time-wasting mess and strongly discouraged. Anyone who has ever worked on a Flash file with significant bits of code spread over more than one timeline more than a few weeks after creating that code understands the incredible amount of time that can be wasted looking for pertinent code.
    The worst offenders that I have seen (and I have seen hundreds of problematic Flash projects), in the highly competitive worst Flash coding derby, are templates sold by websites like http://www.entheosweb.com/. Do not be fooled into thinking you can get a head-start on a project by starting with a web template offered for sale. There may be some well-coded templates sold online but I have never seen one.

  • Explosion effect  for single Image in  Flash CS5

    Hello All,
    I was hoping for assistance on how to recreate an explosion effect like Flash 8 adn MX used to have.  It seems to be missing now.  It is not in the presets.  I tried to break apart  but something is missing.  How can I  accomplish this?  I am trying to explode and IMAGE not TEXT.  Particle tutorials seem to explode into hundreds of parts.  Im looking for 12 to 16 exploded pieces. I'm not the great at AS2 or 3 but any assistance would be appreciation.    Again this is for an image not text so the simple Break apart doesnt seem to be working.  Please note I am Using Flash CS5.
    Thanks in advance.

    Thanks for the response but that is not what I need.  I need to explode or better yet Break apart a simple image into maybe 12 or 16 pieces and move them off the screen.  This used to be done by a Explode effect that was in an older version of Flash. I do not want to download additional software (tweenmax?). but I am ready to try simple AS3 or AS2 code if there is not way to do this.  Again this in NOT text and I already tried to break it apart in small symbols but the whole image moves instead of the small piece I broke apart.  Please help
    Thanks in advance.

  • Lightroom 1.0 and 1.1/Web Module/Flash gallery (default) remote viewing issue fixed.

    Background: We experienced problems remotely viewing the Lightroom auto-generated Lightroom Templates/Flash gallery (default) template.
    <br />On our local PC running XP SP2, the gallery works just fine. When uploaded, it doesn't work anymore when visited remotely from another PC.
    <br />
    <br />Fix: We found out that the top of each html file contained the code:
    <br />
    <br /><?xml version="1.0"?>
    <br />"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
    <br />
    <br />Those are document type declarations saying the code in the page is XML and follows the Strict XHTML guidelines as defined by w3.org; it tells the browser how to interpret the code that follows.
    <br />Our guess was the code used doesn't follow strict XHTML guidelines, and it broke the page by preventing the browser from displaying the rest of the html--perhaps a problem with our server too? Anyway, deleting this header fixed the problem.
    <br />
    <br />It worked for us. Dunno whether other users experienced the same problem. Anybody reported/noticed the same issue? Any feedback/suggestion/interpretation? Has this been reported to Adobe before?

    Oups, the code disappeared when I posted; here it is (added extra _ after > and before < and one space in between ht tp to freeze it!):
    <_?xml version="1.0"?_>
    <_!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "ht tp://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"_>

  • View SMPTE timecode in Flash CS5

    Does anybody know how to display SMPTE timecode instead of raw framecount in Flash CS5? I don’t mean in an exported movie. I mean is it somehow possible to view SMPTE timecode in Flash as you are developing a project? There are shareware calculators that will convert one into the other, but doing it that way for every hitpoint is mindnumbingly tedious. Do any plugins do this inside of Flash? Any help would be much appreciated.

    http://www.flashandmath.com/flashcs5/rsltip/

  • Looking for a simple flip book template for Flash CS5

    Hi, I'm looking for a simple flip book template for Flash CS5 for a 20 page brochure/ booklet. Or a tutorial. Does anyone know of one?
    Thanks!

    Hi Mark,
    No need to restrict your choice to the preset Pages Templates. Do a web search and choose a Word template. Pages will open Word documents and templates. Or design your own:
    This is a Table I inserted into a blank Pages Word Processing document. Format the date column in Inspector > Table > Format > Cell Format. Select the first Date cell,then drag the fill handle down to increment the dates.
    Regards,
    Ian.

  • Air for Android template missing from Flash CS5 Professional

    I am trying to get started with developing android apps in flash.  Most tutorials begin with my selecting the Air for Android template in Flash CS5 Pro.  This option is not available to me.  When I try to install the extension I get this: http://labs.adobe.com/technologies/flashpro_extensionforair/
    I am running the latest update for CS5.
    Any suggestions?
    Thanks!
    John

    Hey James,
    Thanks for the reply.  I clicked the updates button but all I can find is the trial version of CS5.5.  Is that correct?
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=flash&promoid=EBYEX
    Cheers,
    John

  • InDesign CS5 Mac Default Templates?

    Does anyone know where the default templates that come with InDesign CS5 are located on a Mac?  I've been able to access them since I got CS5, but now I don't know where the folder is.  I've looked a lot, but can't find them... Does anyone know where they are?
    Thanks so much!

    I think they dropped them from CS5. Plenty of freebies online though.

  • Adobe Flash CS5 has encountered a problem and needs to close

    Hi,
    I have two laptops. I have installed Adobe Flash CS5 in my first laptop (Windows XP). When I start the application, it shows the following message:
    "Adobe Flash CS5 has encountered a problem and needs to close"
    I have installed the Flash CS5 in my second laptop and it worked fine.
    Error signature:
    AppName: flash.exe AppVer: 11.0.0.485 ModName: updaternotifications.dll
    ModVer: 1.0.0.64 Offset: 0006a8dc
    Can anybody help?
    Thanks.
    Housea

    try this also
    1. Reset preferences:
    To reset on Windows, delete:
    C:\Documents and Settings\username\Local Settings\Application Data Adobe\Flash CS4\
    C:\Windows\system32\Macromed\Flash\FlashAuthor.cfg
    To reset on Mac OS X, delete:
    /Users/username/Library/Preferences/Flash CS4 Preferences
    /Users/username/Library/Preferences/Flash 10 MRU
    /Users/username/Library/Preferences/com.adobe.flsh-10.0.plist
    /User/%username%/Library/Application Support/Adobe/Flash CS4/
    /Library/Application Support/Macromedia/FlashAuthor.cfg
    2. Install the latest Flash update if available.
    3. Install the latest version of Flash.
    4. Install current Windows service packs and other updates.
    5.  Run Flash in a simplified mode (Windows). / Run Flash in safe mode (MAC  OS - Refer to http://kb2.adobe.com/cps/404/kb404936.html)
    Some  applications or services may cause system errors or freezes when  running concurrently with Flash. Services are specialized programs that  perform functions to support other programs. Before starting Flash,  disable other applications, including startup items (items that start  automatically), and services.
    To disable startup items and services, see "Disable startup items and services (Windows XP)" (TechNote kb404984).
    To re-enable startup items and services:
       1. Choose Start > Run, type msconfig, and click OK.
       2. Choose Normal Startup on the General tab, click OK, and restart the computer.
    Note: If unselected items were present on the Services or Startup tab, then you will need to unselect them again
    6. Install Flash from the desktop.
    7. Reinstall Flash in a simplified/safe (for MAC OS) mode.
    8. Run Flash in a new user account.
    9. Check for font problems.
    10. Optimize handling of temporary files by Windows XP.
    11. Set the virtual memory paging file to the default size.
    12. Repair and defragment hard disks.
    13. Scan the system for viruses.
    14. Identify the file that causes the problem.
    15. Install Adobe Flash CS4 on a different computer.

  • Mac Projector Crashes When exported From Flash CS5.5

    Something strange that i noticed, when i had exported a presentation for a Mac,
    on a 64 bit windows 7 using flash cs5.5.
    the applicaton gets the paths of a few swfs from an XML file
    and loads them one after the other.. there is a small bit of interactivity.
    .. tested this projecter on various versions of MAC, it crashes often,crashes earlier if i switch applications.  what follows here is a part of a report that was generated on an  OS X 10.7.3,
    works fine if the projector is exported from flash cs5.
    i need it to work when exported from flash cs5.5.. any suggestions on what i need to change in my application so that it works when exported from flash cs5.5?
    Your help would be appreciated Thanks in Advance
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000500d98eb
    VM Regions Near 0x500d98eb:
    Memory tag=240         000000000ebd0000-000000000ec90000 [  768K] ---/rwx SM=NUL 
    -->
    __TEXT 0000000070000000-0000000070142000 [ 1288K] r-x/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    Application Specific Information:
    objc_msgSend() selector name: orderOut:
    objc[9434]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                 0x92115d47 objc_msgSend + 23
    1   com.macromedia.Flash Player.app 0x00467d96 main + 240950
    2   com.macromedia.Flash Player.app 0x0047efda main + 335738
    3   com.macromedia.Flash Player.app 0x002feae2 0x1000 + 3136226
    4   com.macromedia.Flash Player.app 0x0033a77b 0x1000 + 3381115
    5   com.macromedia.Flash Player.app 0x00462718 main + 218808
    6   com.macromedia.Flash Player.app 0x004628b2 main + 219218
    7   com.apple.CoreFoundation        0x98e0b3df __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    8   com.apple.CoreFoundation        0x98e0ad96 __CFRunLoopDoSources0 + 246
    9   com.apple.CoreFoundation        0x98e34c68 __CFRunLoopRun + 1112
    10  com.apple.CoreFoundation        0x98e3447c CFRunLoopRunSpecific + 332
    11  com.apple.CoreFoundation        0x98e34328 CFRunLoopRunInMode + 120
    12  com.apple.HIToolbox             0x9289117f RunCurrentEventLoopInMode + 318
    13  com.apple.HIToolbox             0x928984e7 ReceiveNextEventCommon + 381
    14  com.apple.HIToolbox             0x92898356 BlockUntilNextEventMatchingListInMode + 88
    15  com.apple.AppKit                0x98fe8a9c _DPSNextEvent + 678
    16  com.apple.AppKit                0x98fe8306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    17  com.apple.AppKit                0x98fe4675 -[NSApplication run] + 911
    18  com.apple.AppKit                0x99278261 NSApplicationMain + 1054
    19  com.macromedia.Flash Player.app 0x000032a2 0x1000 + 8866
    20  com.macromedia.Flash Player.app 0x000031c9 0x1000 + 8649
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib          0x97d3f90a kevent + 10
    1   libdispatch.dylib               0x99a75c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib               0x99a746a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib          0x97d3e83e __psynch_cvwait + 10
    1   libsystem_c.dylib               0x9237ce78 _pthread_cond_wait + 914
    2   libsystem_c.dylib               0x9232482a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app 0x003ff62f 0x1000 + 4187695
    4   com.macromedia.Flash Player.app 0x0001a06c 0x1000 + 102508
    5   com.macromedia.Flash Player.app 0x003ff70c 0x1000 + 4187916
    6   com.macromedia.Flash Player.app 0x003ff73a 0x1000 + 4187962
    7   com.macromedia.Flash Player.app 0x003ff847 0x1000 + 4188231
    8   libsystem_c.dylib               0x92378ed9 _pthread_start + 335
    9   libsystem_c.dylib               0x9237c6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib          0x97d3e83e __psynch_cvwait + 10
    1   libsystem_c.dylib               0x9237ce78 _pthread_cond_wait + 914
    2   libsystem_c.dylib               0x9232482a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.app 0x003ff62f 0x1000 + 4187695
    4   com.macromedia.Flash Player.app 0x0001a06c 0x1000 + 102508
    5   com.macromedia.Flash Player.app 0x003ff70c 0x1000 + 4187916
    6   com.macromedia.Flash Player.app 0x003ff73a 0x1000 + 4187962
    7   com.macromedia.Flash Player.app 0x003ff847 0x1000 + 4188231
    8   libsystem_c.dylib               0x92378ed9 _pthread_start + 335
    9   libsystem_c.dylib               0x9237c6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib          0x97d3e83e __psynch_cvwait + 10
    1   libsystem_c.dylib               0x9237ce78 _pthread_cond_wait + 914
    2   libsystem_c.dylib               0x9237cf7b pthread_cond_timedwait_relative_np + 47
    3   com.macromedia.Flash Player.app 0x003ff5f8 0x1000 + 4187640
    4   com.macromedia.Flash Player.app 0x001c58fe 0x1000 + 1853694
    5   com.macromedia.Flash Player.app 0x003ff70c 0x1000 + 4187916
    6   com.macromedia.Flash Player.app 0x003ff73a 0x1000 + 4187962
    7   com.macromedia.Flash Player.app 0x003ff847 0x1000 + 4188231
    8   libsystem_c.dylib               0x92378ed9 _pthread_start + 335
    9   libsystem_c.dylib               0x9237c6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib          0x97d3e83e __psynch_cvwait + 10
    1   libsystem_c.dylib               0x9237ce78 _pthread_cond_wait + 914
    2   libsystem_c.dylib               0x9237cf7b pthread_cond_timedwait_relative_np + 47
    3   com.macromedia.Flash Player.app 0x003ff5f8 0x1000 + 4187640
    4   com.macromedia.Flash Player.app 0x00305328 0x1000 + 3162920
    5   com.macromedia.Flash Player.app 0x003ff70c 0x1000 + 4187916
    6   com.macromedia.Flash Player.app 0x003ff73a 0x1000 + 4187962
    7   com.macromedia.Flash Player.app 0x003ff847 0x1000 + 4188231
    8   libsystem_c.dylib               0x92378ed9 _pthread_start + 335
    9   libsystem_c.dylib               0x9237c6de thread_start + 34
    Thread 6:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib          0x97d3cc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib          0x97d3c1f6 mach_msg + 70
    2   com.apple.audio.CoreAudio       0x9cd8e9fe HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, unsigned int) + 122
    3   com.apple.audio.CoreAudio       0x9cd8ea6a HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, unsigned int) + 60
    4   com.apple.audio.CoreAudio       0x9cd86e5f HALC_ProxyIOContext::IOWorkLoop() + 1145
    5   com.apple.audio.CoreAudio       0x9cd86926 HALC_ProxyIOContext::IOThreadEntry(void*) + 136
    6   com.apple.audio.CoreAudio       0x9cd86898 __HALC_ProxyIOContext_block_invoke_6 + 20
    7   com.apple.audio.CoreAudio       0x9cd8681d HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib               0x92378ed9 _pthread_start + 335
    9   libsystem_c.dylib               0x9237c6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib          0x97d3f02e __workq_kernreturn + 10
    1   libsystem_c.dylib               0x9237accf _pthread_wqthread + 773
    2   libsystem_c.dylib               0x9237c6fe start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib          0x97d3f02e __workq_kernreturn + 10
    1   libsystem_c.dylib               0x9237accf _pthread_wqthread + 773
    2   libsystem_c.dylib               0x9237c6fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00dbe0e0  ebx: 0x00dbe0e0  ecx: 0x99985548  edx: 0x500d98cb
    edi: 0x0000036e  esi: 0x00aad0e0  ebp: 0xbfffe4f8  esp: 0xbfffe488
    ss: 0x00000023  efl: 0x00010202  eip: 0x92115d47   cs: 0x0000001b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x500d98eb
    Logical CPU: 1

    Looks like it was a memory problem with the jvm.ini file.
    Pumped it up to 256 and it works now.
    Hope this helps anyone else in the future if they come across it.
    Thanks.

  • Jarsigner finding .p12 certs created by flash cs5 as 'wrong format' ??

    I have created an app using flash cs5 and a self signed cert using flash cs5
    I now must decompile the app, change the app id and recompile it.
    Then sign it using jarsigner.
    The problem I have is that when I point jarsigner to the cert I used it says that it is not formatted right.
    I know I am missing something, but what?
    Using any other cert will result in not being able to update my app.  This is bad I know but it is my last resort before unpublishing my paid app and publishing it again.
    A lesser option would be for me to reload an old flash extension for air ( probably released early in the air for android pre release ).  But I can not find it.
    Any help is much needed and thank you in advance.

    A .cer file doesn't include the private key, just the certificate that contains the public key.
    I suspect the problem is that you need to specify the alias for the private key in the keystore (which can contain more than one). Unfortunately, when AIR creates a cert, it doesn't assign this value, so you have to use the default for whatever tool you are working with. For jarsigner, this seems to be the distinguished name assigned to the cert/key, which is basically the values you used to create the cert, concatenated together.
    For example, I was able to sign a jar file with a self-signed cert/key pair generated with ADT using the following command:
    jarsigner -keystore file:\\\c:\certs\foo.p12 -storepass passwoord -storetype pkcs12 sudoku.jar "cn=charles ward,ou=learning resources,o=adobe systems\, inc.,c=us"
    That last, long bit in ""s is the alias. If I don't use it, then I get the same error you are reporting.
    I was also able to import the same keystore into a new Java keystore with the following command:
    keytool -importkeystore -srckeystore c:\certs\foo.p12 -srcstoretype pkcs12

Maybe you are looking for

  • How to access attribute value from another VO using groovy?

    Hello, I am using JDeveloper 11.1.2.3.0 I read a lot of information about this but still I am missing something. I am trying to set the value of a bind variable through Groovy expression in my VO. I want this Bind variable to have the value from an a

  • Error in Display of Text variable

    Hello gurus, I have a requirement in which power user wants to see the output as follows : Product sold of Current year for months --- to -      /  Product Sold of Previous year for months --- to - So if on Selection screen ,user enters months 01/200

  • CATS Postings to CO

    Hello, I need some guidance here. We are using CATS to record time against a WBS Element and we are maintaining a mini master for CATS. We are a having a problem. We are allowing users to record time for future and doing CATS Postings. For Example: E

  • Building Form in Acrobat with Pages

    I am building a website for a friend and my friend wants a way where a customer can order online. Before buying the domain, i am outlining the site, starting with ordering online. So i want i want it when you click on the order page, it will open a P

  • Run Labview without toolkits - Practice for CLD

    I was wondering if there is a key combination or way to start labview without any toolkits. Only load the core components. I wish to practice for the CLD and understand only the core vi's will be loaded on the grader's computer.