Seek Bar Component Flash CS5

Hi, I've been trying to use the seek bar component in Flash CS5.
I've managed to use create my own play and pause buttons using the following code:
playbtn.addEventListener(MouseEvent.CLICK, fl_ClickToPlayVideo);
function fl_ClickToPlayVideo(event:MouseEvent):void
          // Replace video_instance_name with the instance name of the video component
          video.play();
pausebtn.addEventListener(MouseEvent.CLICK, fl_ClickToPauseVideo);
function fl_ClickToPauseVideo(event:MouseEvent):void
          // Replace video_instance_name with the instance name of the video component
          video.pause();
I've dragged the SeekBar component onto the stage and given it an instance name of "mySeekBar".
I have then referenced this in the Actionscript as follows:
video.seekBar = mySeekBar;
However, the seek bar doesn't work. It displays but there is no slider etc.
Can anyone help me out as I have very little knowledge of Actionscript!
Thanks.

Hi, couldn't quite get everything in two screenshots:
1. FLV & properties:
http://gyazo.com/df0848ed58e3b86c15a9f3ea51cd13c0
2. Seekbar selected & properties
http://gyazo.com/c54da21cfc29727f2ea0a38f5d794926
3. Actionscript in "Actions" layer
http://gyazo.com/92bd65d25dff0c027a04bd3f1b62542a
Thanks.

Similar Messages

  • Seek bar for music

    Hi!
    I know flash has seek bar component for flv videos but I'm
    streaming music from net. I have a code for loading entire song but
    is it possible to add a seek bar to show what part of song is
    playing

    Yes, if you just want to track the progress of the sound
    file's playing, its pretty simple. You'll need a couple of
    variables, one to hold the value of the sound file's duration. And
    another to define the width of the seek bar object.
    In your download complete function give the duration variable
    the value of the sound's duration property. Then assign an
    enterframe function to update the seek bar. Just take the
    soundChannel.position property value and divide it by the sound
    file's duration property value. This will give you a ratio of the
    current position relative to the total time. Then multiply that
    value by the total width of the seek bar. Position the marker at
    that point on the seek bar.

  • Export Flash CS5 component to Flash Builder

    Hello there .
    I'm having some troubles exporting a movieClip made in Flash CS5 Professionnal to Flash Builder.
    I created a simple movieclip name test : rectangle and textinput inside name "title", then command ->convert symbol for Flex. Everything looks good. I publish the .swc and import it in Flash Builder.
    Everything is good when I just add the MovieClip :
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:local="*">
    <local:test />
    </s:Application>
    but when I try to set a value to the title <local:test title="Title" />, I get the following error : (sorry it's in french =O)
    Description Resource Path Location Type
    Initialiseur pour 'test' : les valeurs du type flash.text.TextField ne peuvent pas être représentées dans le texte. TestComponent.mxml /TestComponent/src line 5 Erreur Flex
    Google translate:
    Description Resource Path Location Type
    Initializer for 'test': values of type flash.text.TextField can not be represented in the text.TestComponent.mxml / TestComponent / src line 5 Error Flex
    There are a lot of tutorial showing how to integrate Flash Builder & Flash Cs5 but not so much tutorial about how you can import Flash CS5 component into Flash builder :/
    Hope you can help me

    Nevermind stupid question
    title points on TextField and not on .text property... of course -.-

  • Creating a component in Flash CS5

    Hi,
    How can I create a component using Flash CS5? I have tried to follow various documents I have found on google and went about it in the following way:
    1. I created an empty FLA.
    2. I created a MovieClip containing some graphics, and named the MovieClip "MyTestComponent" in the Library.
    3. I selected the MovieClip's properties in the Library and selected "Export for Actionscript", and made the MovieClip inherit from fl.core.UIComponent.
    4. I saved the FLA in the directory "C:\Program Files (x86)\Adobe\Adobe Flash CS5\Common\Configuration\Components" and restarted Flash. At this point I would expect that the MyTestComponent component would show up in the Components panel, but it did not.
    5. I tried to publish the FLA as an SWC file and place the SWC file in the same file as above. According to my understanding, both this and the step above should have worked, but it did not.
    So, what am I missing?
    Also, where can I find an up-to-date documentation on how to create components to be used in Flash CS5?

    I managed to get it work at the end...
    First, the components directory was at this location:
    C:\Users\<username>\AppData\Local\Adobe\Flash CS5\en_US\Configuration\Components
    Then, to make a component out of a MovieClip, right click on the MovieClip in the library and select "Component Definition" and check the checkbox "Display in Components Panel". What I did then was to right click on the MovieClip and selected export swc file, and saved it in the directory above. This exported only one Component, which was fine for me. Probably it would be possible to do something similar to save a library of components as a .fla or .scw or so, but I don't know the details.

  • Flash CS5: unable to drag component to stage or library

    We are the developers of a complex Flash component (http://www.openspace-engine.com) which worked without issues on Flash CS3 and CS4. Now, in Flash CS5 (both Mac and Windows versions) we have found a couple of problems at author-time, so any help would be appreciated.
    -1-
    After installing the mxp file containing the component, when trying to drag the component from the Components panel to the stage, or to the Library panel, it doesn't work. There's no way to import the component!
    -2-
    If we open an existing FLA (created with Flash CS4), the component doesn't show correctly at author-time: you only get a black frame, instead of the expected result (it should show a white background with a logo in the middle). When compiling, everything works fine.
    Any ideas? Thank you.

    The described issues have been reported to Adobe, which was able to replicate and to fix them. Simply install the latest Flash update.
    Thank you to the Flash development team.

  • Custom seek bar / scrubber NOT using component

    Apparently you can't access the handle in the SeekBar
    component:
    _level0.seekBarHandle.onPress = function()
    trace ("handle!");
    this is the instance name that is displayed in the debugger
    but there's no way to connect another function to it...
    does anyone know how create a seek bar / progress bar /
    scrubber with movie clips/action script instead of a
    component?

    That's what I did but I can't apply a function to the seek
    bar handle...
    _level0.seekBarHandle.onPress = function()
    trace("handle");
    it's not the design element that I'm concerned with it's
    attaching a function the that darn handle.
    That's why I am interested in creating my own component or
    movie clips that control the FLVPlayback component.

  • Problem using a Flash MX 2004 Progress Bar Component within a Movieclip

    I'm try to setup a progress bar to show the percentage loaded
    of a mp3 audio file using the Flash MX 2004 Progress bar component.
    I can get the progress bar to the work normally by the having the
    component on the stage (not in a movie clip) with the component set
    to:
    mode: polled
    source loader
    with the following actionscript on the layer above:
    pBar.setStyle("themeColor", 0xFF0000);
    var loader:Object = new Sound();
    loader.loadSound("http:/www.mywebsite.co.uk/mymp3.mp3",
    true);
    But I won't to put the preloader inside a Movie Clip (the
    movie clip is called 'content_MC') as the website has alot of
    content. When I do this the mp3 file still streams but the Progress
    Bar doesn't work.
    I think I just need to change the action script so that it
    links with the component telling it to calculate the progress of
    the audio streaming file.
    Am I right? Where am I going wrong?

    I found the problem!!
    While exploring the Fireworks MX 2004 folder located under
    "C:\Documents and Settings\USER\Application Data\Macromedia\"
    folder I discovered that this folder was empty. So, I connected the
    old hard drive and investigated the contents of the corresponding
    folder on that drive. Discovering the wide assortment of files and
    folders in that folder, I simply copied the contents of that folder
    to the Fireworks MX 2004 folder and retried running the application
    and IT WORKED!
    Thanks for all your communications and in depth
    troubleshooting steps, I will keep them in may Application
    troubleshooting Tool Tips for future reference. I have included the
    actions used here which brought about the successful resolution of
    this issue so that if you'd like you might include them in any Help
    Desk Methods you may have. It was truly a collaborative effort
    because I would not have thought to explore the Application Data
    folder to resolve this issue without you pointing me in that
    direction.
    Thanks again!

  • Flash Player 9 and Progress Bar Component

    Can someone have a look at this:
    http://www.adobe.com/go/6a620259
    and tell me if there is any solution?
    Thanks in advance
    RC

    As of this date, iI still have not found a solution to this
    problem. In, general I have had bad experiences using the loader
    component in conjunction with the progress bar component. By itself
    the loader component works fine (loading movie clips, swf's, etc..)
    but I have found that if you want a truly reliable progress bar,
    you need to make your own. I would advise against using the one
    built into flash 8. Maybe eventually, adobe will get around to
    addressing the issue with some sort of workaround or update, but I
    think in the meantime, we are on our own (and will probably have to
    wait until Flash 9).
    If you figure anything out, please share your info with me
    and good luck hunting!
    -Pecktron2000

  • Flash CS5 component code hints?

    Does anyone know how to get code hinting to work with Flash CS5 components? Even when the components are imported it stilll doesn't give any code hinting.

    If you are reporting a bug, this is not the place to do so.  Try here instead...
    Adobe - Wishlist & Bug Report
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • FLVPlayback Seek Bar

    I am having trouble getting the seek bar to work with cue
    points on the FLVplayback component. I was able to set up slide cue
    points using the following code and the slides change when the
    video plays. But when I drag the seek bar forward or backward the
    slides do not change.
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    _level0.currentSlideName = eventObject.info.name;
    _level0.Presentation.gotoSlide(eval(_level0.curren
    tSlideName));
    _level0.Presentation.eval(_level0.currentSlideName
    ).gotoAndPlay(1);
    display.addEventListener("cuePoint", listenerObject);
    Also is there some way to get the FLVplayback component to
    work with slide cue points without using the above addEventListener
    code? Previously I used the Flash 7 MediaDisplay and MediaPlayback
    components and only needed to add the following code on loading of
    the component but it does not work with the flash 8 FLVplayback
    component: mx.controls.streamingmedia.behaviors.SlideCuePoint
    Listener.initializeListener(this, this._parent);

    In addition to where you instanciate the flvplayback instance
    where ever you have load(your_video_url) or
    play(your_video_url)
    you need to re define
    video_player.seekBar = _seekbar;
    video_player.volumeBar = _volume;
    video_player.bufferingBar = _bufferbar;
    video_player.playPauseButton = _playpausebutton;
    video_player.muteButton = _mutebutton;
    video_player.fullScreenButton = _fullscreenbutton;
    In my case my instance of the flvplayback is in another class
    so Rob's solution of a get function in that class works.
    The main point here is to re-define them within the function
    that gives the url to the flvplayback instance.

  • DVR w/ FLVPlayback 2.5.0.15 & Custom Publishing Client - Seek Bar Not Working [updated]

    [ UPDATED to include code and modified language after I discovered that everything works when I use Live Encoder.... ]
    Hello.
    So I've got the DVRCast application installed, and I am successfully streaming live-DVR content to the updated FLVPlayback component.  I'm able to access the DVR-specific metadata (e.g. "currLen") without any trouble, and so forth.
    When I record with the Flash Live Encoder, everything works correctly; the seek bar fills in as more content is published, and the playhead advances slowly across the filled-in section of the seek bar.
    But when I do the publishing with a custom client instead of Flash Live Encoder, the seek bar doesn't work right.  Specifically, when I start viewing a stream which is still being broadcast live, the seek bar shows the length of the stream at the moment I started viewing it; however, the seek bar doesn't update correctly as new content continues to be appended to the end of the stream.  What happens instead is that the "playhead" (not sure of the proper terminology here) moves along the seek bar until it reaches the end, and then it just sits at the end -- and the seek bar itself starts expanding to the right, off the edge of the stage!
    So I assume the problem here is that I need to add some code to the publishing client.  Here's the meat of the publishing code (from MyDVRPublish.as, which is the document class for MyDVRPublish.fla):
            public function MyDVRPublish()
                nc = new NetConnection();
                nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
                nc.connect("rtmp://localhost/DVRCast");
                dvrFlag = true;
                isVideoReady = false;
                streamID = null;
                vid = new Video(640, 480);
                vid.x = 0;
                vid.y = 0;
                vidMonitor.addChild(vid);
                cam = Camera.getCamera();
                cam.setQuality(0,90);
                cam.setMode(640, 480, 30);
                vid.attachCamera(cam);
            private function onNetStatus(event:NetStatusEvent):void{
                trace(event.info.code);
                if(event.info.code == "NetConnection.Connect.Success"){
                    doRecording("mystream");
            private function doRecording(sID:String) {
                isRecording = true;
                streamID = sID;
                publishCamera();
            private function stopRecording() {
                ns.close();
                isRecording = false;
                trace("Finished recording " + streamID);
            private function onAsyncError(event:AsyncErrorEvent):void{
                    trace(event.text);
            private function publishCamera() {
                ns = new NetStream(nc);
                ns.client = new CustomClient();
                ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
                ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                ns.attachCamera(cam);
                trace("Publishing Stream...");
                ns.publish(streamID, "record");
    ...What am I missing?
    Thanks,
    -dan
    Message was edited by DanMITRE.

    Hi Dan,
    Unfortunately, I don't know of a tutorial that builds a custom client that publishes to DVRCast, but Graeme Bull created a great video tutorial that should help:
    http://fmsguru.com/showtutorial.cfm?tutorialID=25
    Before Adobe published the DVRCast app, Graeme played around with FMLE3 and figured out what calls it was making to the server and built his own DVRCast app. I know this is the inverse of what you want to do, but watching him reverse engineer FMLE's calls to the server will show you how to make your own publishing client.
    Also, you check out the DVRCast code at rootinstall\applications\dvrcast_origin\scripts to see exactly what the DVRCast app expects the publishing client to call (and what it expects the subscribing client to call).
    Roughly:
    The DVRCast docs have a code example on page 11 that calls DVRSetStreamInfo. After the publisher calls DVRSetStreamInfo with the name of the DVR stream and calls NetStream.publish("streamname", "record"|"append"), the subscribing client calls DVRGetStreamInfo to get the name of the DVRStream. The subscribing client then passes the name of the DVRStream in a call to DVRSubscribe. Finally, the subscribing client calls NetStream.play("streamname", 0, -1) to play the stream.
    I'll get a tutorial up as soon as I can (unless someone beats me to it), but unfortunately I have to hit some deadlines today on other projects.
    HTH,
    Jody

  • Flash CS5 unable to play .FLV files on Macbook Pro

    I have a colleague who is trying to put together a Flash package for me  on her macbook pro.  It needs to play an flv file. She is unable to play  flv files on her computer either in Flash or using the Adobe Media  Player. I have no problem playing the same files on my macbook pro,  we're both running the latest OS and have version 1.8 of Adobe Media  Player.
    She went to the Adobe site to download the latest version of Adobe  Media Player, hoping that might include whatever component is missing on  her system. Because of Adobe's decision not to distribute AMP that  didn't help.  She has Flash Professional CS5 11.0.2 on her system.  When  she imports an flv video into a Flash project and tries to play it she  gets an error message saying it can't stream the video. Note that the  video is on her hard drive, it is NOT on the internet so no streaming  should be required.
    The actual error message is: "the video player is in the connection  error state. It enters this state when a video stream attempted to load  but was unsuccessful. There are two possible reasons for the error: no  connection to the server or the stream was not found."
    Since it's a file on her hard drive, and she has loaded the file  into the Adobe development environment successfully, the one thing we  know for certain is that neither of these reasons is correct. Something  is obviously missing on her system, what is it and what can we do to fix  it?

    I'm getting error too (Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound). I'm getting this with CS5. This file was previously made in CS4 and never got this error.
    Everything (fla and flv too) is on external hard disk.
    As this work requires to be exported to mov, I've found out that everything needs to be on the mac (don't know for pc), like on desktop.
    So, let me wrap up disadvantages I got with Flash CS5:
    - TextField.embedFont makes the font disappear in CS5, so I can't use it, so I can't "play" with text in a comfortable way (in CS4, with embedFont = true, I was able to rotate and stuff). Now I have to make a bitmap out of it. It means 3 lines of code and a new variable, instead of just an easy one.
    - I have to rebuild my entire source path structure for AS classes, as my old one (that took me years of effort to be reasonable and used to work just fine in CS4).
    - I have to move stuff from my hard drive to the desktop, to make flv be played and to make a mov out of my animation.
    CS5 is making my job harder and making me lose a lot of time to find out errors that have no good reason to exist (it was not error. just "place CS5 doesn't like").

  • Adobe Flash CS5.5 Crashes while drawing/dragging objects.

    I have experienced quite a few crashes trying out Adobe Creative Suite CS5.5 Premium when it comes to using Flash Professional CS5.5. I have documented one of the crashes at a pastebin entry, which I will link it and an earlier crash log dump below.
    Here's how the crash occurs on my iMac (27-inch, Mid-2011 with AMD 1GB Dedicated Graphics):
    1.) Create either a Flash Document - AS 2.0 or AS 3.0 does not matter, though using 3.0 makes it crash faster I've noticed.
    2.) Draw shapes. After a while of drawing shapes and making them into groups/objects/symbols...
    3.) Drag the shapes around, eventually performance starts to drop over time.
    4.) After a while, Flash will freeze and crash, complete with the beach-ball spinning.
    The most recent crash:
    http://pastebin.com/YCWKAbhp
    There is my pastebin of my latest crash, using an Adobe Flash document using ActionScript 2.0.
    Alternatively, sometimes Flash CS5.5 will crash using ActionScript 3.0 as the language of choice, and oddly much quicker. One of those crashes can be found here: http://pastebin.com/pTSerErw
    The irony in both cases is I don't primarily use Flash Professional CS5.5 for programming or scripting at all. I use it for basic vector artwork for an array of projects. Thus, I don't use AS3.0 with this program.
    Here's what I have done so far to try to remedy this:
    I have updated the Apple JRE/JDK for Mac OS X Lion to the latest revision. I also have cleared out the JRE/JDKs and have started from scratch, to clear out any possible mistakes in installation. I know Java seems to be part of the Flash complilation process, oddly enough
    Use ActionScript 2.0 documents helps keep crashes down, oddly. Yet they still happen eventually
    Booted into Safe Mode to try to fix permissions and such. No dice
    Repaired permissions manually using Disk Utility. No dice
    Edited my jvm.ini file on my install to have no memory constraints, instead defaulting to the ones I have manually set for my JRE/JDKs. Specifically for my Java 64-bit JRE/JDK: -Xmx2048m -Xms512m -Xss2048m -d64 using the Java Preferences application in /Application/Utilities/
    I have also monitored the console for any activity aside crashes. No dice
    Trashed my Preferences and Application Support files
    Deleted/Fixed corrupt or duplicate fonts - I did find some duplicates due to Microsoft Office 2011
    I also have sought out other errors here on the Adobe Forums/Community. While similar, they are usually for more complicated projects, while mine is simply drawing and copy/pasting stuff seems to be a problem.
    In short, I've done my research and still haven't been able to fix it
    Oddly enough, most of the time no corruption has been reported due to this. In fact, I usually just have to restart Flash, save often, and if it crashes, repeat until my project is done. I also don't use auto recovery because it actually makes things more confusing and I admittedly don't trust it.
    Also, I usually have Flash Professional running, as well as Adium (IM client), Safari, and iTunes. Usually no other programs are running outside background programs or menu bar items.
    Does anyone have insight, solutions or possible pointers on how to fix this? It's more of an annoyance - but this is painful since I spent good money on this product. I hope CS6 improves this with full 64-bit support and better memory management.

    Hi,
    I am not sure if this is a "Master Page since we use a French version (the functionnality is  named "Gabarit" in French), so here is a printscreen which shows what our users try to do:
    Immediately after the drop is completed, InDesign shuts down without further notice as described before.
    I fully patched one machine to 7.5.3, rebooted it and it still does not work.
    I know 2 GB is a little bit short, but since this is currently a corporate standard in my customer's organization, I will need to be sure that this is the direct and only cause before any upgrade request can be made.
    Thank you for your help.

  • 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.

  • Is it possible to Embed Youtube Widescreen windows full options on Flash CS5 AS2 Website?

    Good Day
    Does anyone know How to Embed a Youtube widescreen Video window on a Flash Website, i'm using Flash CS5 and ActionScript 2???!!
    I've seen several video tutorials on youtube and other websites about this, but they only work with a window of 480px for 385px (4:3),
    which doesn't allow the fullscreen option on the lower bar of the video, because the player still had a silver bar not a black one !!!!
    This is the one i've been using!!!  http://www.youtube.com/watch?v=wfU5Hj3uKZ4
    I would like to use a widescreen window (16:9; 16:10), like the ones youtube curently uses, 360p; 480p;720p, like in this case:
    http://www.worldcarfans.com/111102637687/filming-the-new-porsche-911-at-speed-around-lagun a-seca
    http://www.youtube.com/watch?v=ZxqcEYpKYWY; inside Porsche Channel - http://http://www.youtube.com/user/Porsche#p/c/C62AA82F9212FB59/0/ZxqcEYpKYWY
    I would very much appreciate any help you can give me!!!
    Thank you

    There are two options here that I can think of..
    1.  Preinstall AIR on their machines, and use AIR files.  That will work IF AIR is already installed.     Flash projectors have no ability to control the file system in this way, but AIR does.
    2. Use a Director projector.   There are Director Xtras that can control the file system, and you can embed a SWF in Director.  So you wouldn't have to recreate the SWF content, you'd only need to have Director and learn some basics about using SWF and making projectors.
    That's all I can think of.

Maybe you are looking for

  • Hp officejet 6500 won't scan

    I have a MacBook running OS X 10.9.5 and I'm using an HP Officejet 6500 series. I'm connected via USB cable. My scanner worked fine for months, now it's not working. The error message on the printer says "No Scan Options. Refer to device documentatio

  • How to set up KM folder with Anonymous access.

    Experts, I would like to setup a KM folder with anonymous access where any document on that folder can be viewed by anonymous users by clicking on a link specific to that document. For example: http://server/irj/go/km/docs/documents/TechDocs/file_nam

  • Does adding a second airport extreme slow the wifi speeds?

    I get 17mbps from my airport base station hardwired to uverse router. On the new 5th gen extreme.used to extend network, speeds are 7mbps at best. is a second device incapable of the same bandwidth as the originating extreme?even when well within ran

  • Webcam NX went black

    I had creative webcam nx and it worked fine before. However it went black after I installed TV turner card into my comp. Any helps would be appreciated. Thanks

  • Error msg upon exit homesite

    Hi, Appreciate it if anyone can help to give any clues why this 3 msg pop up everytime I exit homesite. The os used on the pc is Windows XP. Thanks a lot! 1) Homesite has encountered a problem and needs to close. We are sorry for the inconvenience. 2