Ported to Flash 8

I've just ported a large application to Flash 8 from Flash MX
2004. I'm now targeting the Flash 8 player. Smooth sailing except
for ALL of the components! Comboboxes show and populate but wont
pull down. Lists and trees show up as a small rectangle (about 50
pixels) with a smaller square in their top left corner. Datagrids,
scrollbars, etc are all non functional.
If i start a new project and drag in those components, they
work fine. I've also tried dragging in the components anew. Each
prompts to replace the duplicate component in the library and I hit
OK.
I'm stumped. I've converted other projects of equal size
without incident. I can't figure out whats different about this
one. Thanks for any help.

I do. I've been writing in AS2 for over a year. I've checked
every publish setting and they're all the same. I installed Flash8
on the same machine that I have F2004MX on. Could that be the
issue? New projects have no problem with components or binding to
the correct code. I really don't know what's kept inside the FLA.
Are the old components somehow bound to the MX code? Like i said, I
tried dragging the new components in and replacing them. I've also
dropped in a new combobox and populated it. It shows but wont drop
open.
Thx.

Similar Messages

  • The three main hurdles to porting existing Flash projects to iOS with AIR

    The purpose of this discussion is to identify significant problems currently preventing AIR for iOS from being a viable solution for porting existing Flash apps.  These issues have been largely ignored by Adobe, so I hope that everyone will add to this discussion if you have also run into these roadblocks in targeting iOS with the AIR SDK.  I hope that Adobe staff will address and provide some much needed information with regard to fixing these problems.
    There are 3 main problems with targeting iOS currently, which are probably affecting anyone who is trying to port a project that is both medium to large in size and makes use of SWF loading.  Pretty much any project that has a MVC architecture is going to load SWF assets that are compiled against a view class, so this is likely affecting many people.
    1. Bug - ADT packager runs out of memory when packaging "large" numbers of SWF assets
    https://bugbase.adobe.com/index.cfm?event=bug&id=3511656
    This is a blocking bug that prevents packaging projects with a large number of SWF assets.  It is preventing me from being able to package all the needed assets for my project.  I provided Adobe with my project to package a couple months ago so this bug can be reproduced in house and fixed.  The Adobe employee who was handling this never tried to reproduce the issue and has stopped responding to email and comments in the bug.  Adobe, please have someone take charge of testing and fixing this bug.  It seems like it would be a straightforward fix once the failure is reproduced within a debugger.
    Has anyone who has encountered this problem determined the number of files or classes where it starts to fail.  I've spent some time trying to reverse engineer what the packager is doing when it runs out of memory, so think I can determine how many classes it's working with, but obviously the size of the classes will be variable and so this number will probably be more of a range where we start to get into the failure state.
    Please let me know if you can reproduce this issue with your project with many SWF assets and upvote the bug if you are already aware of this one.
    2. Bug - SWF reloading when doing a "real" (AOT) compile
    https://bugbase.adobe.com/index.cfm?event=bug&id=3636385 
    There is already a forum post that covers the history of this issue (http://forums.adobe.com/message/4920638) but that also covers some issues in older AIR builds with loading of any SWF asset (previously fixed), where this bug deals specifically with reloading of SWF assets that include compiled bytecode (ABC).
    The expectation here is that all versions of the Flash runtime should handle SWF reloading with ABC in the same way, so that a single codebase can be used to target web and iOS (or any other platform).  This is the only issue of the 3 that has a legitimate work around, in my opinion, because the assets can be cached within the app within a loading manager layer.  All the application code that makes loading calls can stay the same, and a compiler flag can be used to enable this caching for iOS builds, with subsequent requests returning a new instance of the cached asset.  This can potentially lead to a very bloated memory footprint for the running app after a period of time, though, which could make some apps perform poorly, so a bugfix is ultimately needed.
    3. Unimplemented feature (?) - The constraint that a single ApplicationDomain is used when running AIR for iOS 
    I did ask about this in the same forum post as SWF reloading but didn't get an Adobe response.  Why does this constraint exist?  My guess is that the AIR runtime for iOS simply hasn't implemented multiple ApplicationDomain support at this point, and that this was done to focus resources on other high priority features for the iOS runtime.  It's possible that there is some aspect of the iOS operating system that makes it difficult or impossible to implement this feature, which may be why it's been avoided to this point, but obviously this is all conjecture without hearing from Adobe on it.
    This is a major issue that needs to be addressed.  For us, the problem is that our SWFs for multiple instances of the same type of asset use the same name for the AS export.  For example, each item an avatar can equip is a single SWF with multiple sub assets -- the parts which comprise the item.  Each of the parts will have an AS export name based on the avatar facing and where it is equipped, like "fv_head".  This naming is consistent across all items, so we will load a lot of assets containing "fv_head" simultaneously.  This normally works fine because the default behavior for Flash has always been that each SWF is loaded into a new ApplicationDomain instance, but for iOS a single ApplicationDomain must be used, causing these names to collide.  The last SWF loaded containing a given AS export name overwrites the previous ones of that name.
    The work around for this, and I use that term loosely, is to go through and uniquely name every AS export in every asset where sets of assets with the same export name is used. For us that is hundreds of items with multiple exports.  Maintaining unique naming across all these parts is also a very error prone process, not to mention all the code that manipulates the parts needs to be modified to handle the new naming and make sure it's referring to the now uniquely named assets.
    The expectation here is that all versions of the Flash runtime should handle asset loading in the same way and place each loaded asset into its own ApplicationDomain container as the default behavior.  I'd like an Adobe employee to address my assumption that this is an unimplemented feature of AIR for iOS at this point, and let the community know if a solution for this will be implemented.
    Summary
    All three of these issues in combination are a major roadblock to porting existing Flash games to iOS with AIR.  Issues with one can make it hard to test and try to work around others.  All need to be fixed, but If I could only pick one of these to fix, it would have to be issue 3 -- that lack of proper ApplicationDomain support when loading assets.  This issue is completely inconsistent with standard Flash behavior and creates a major roadblock to ports of existing applications with no viable solution for a workaround.
    I look forward to Adobe's feedback on each of these issues and hopefully fixes that will allow those of us working with AIR for iOS to get our products to market.

    About the 3rd issue being an AoT design limitation, I'm not sure I understand why it's necessary to know during AoT packaging what the domain is that a child will be loaded into to be able to have SWF loading work as on the browser.
    Isn't the ApplicationDomain an internal construct in the AIR runtime that you guys define in order to manage namespaces of loaded SWFs?  To be clear, when I say "runtime" I know that the resulting code isn't being interpreted within the iOS app, but clearly you have a set of AIR libraries that get compiled into the IPA that provides support for all the Flash APIs.  If that's the case, then wouldn't it be possible for the iOS version of the AIR libraries to define a new ApplicationDomain on the fly when code that has been cross-compiled to iOS native code loads a packaged SWF?
    I don't have a clear picture of how ApplicationDomains are managed internal to the runtime of course, but a little more detail would be very helpful.  Thanks.

  • Accessing midi ports in flash

    Hi, I'd like to create an application in flash that interacts
    with my Yahama Piano Keyboard, which has midi In and Out ports.
    Does flash support this? I don't need flash to play midi sounds,
    but just receive the midi message sent by my midi keyboard.
    Thanks

    Flash does not support that. It could be that some
    third-party projector tool might provide some interface, but I
    honestly doubt it that there is an "out of the box" solution.
    Sorry
    Markus

  • Lion and USB ports and flash devices

    I noticed a curious thing today, when endeavouring to update my NavMan satnav via Parallels 6/ Win XP and USB under Lion. Basically, the satnav (which has internal flash memory) isn't recognised by the NavDesk software, WinXP or Parallels.
    Booting the iMac back into my SL clone, all works as expected - the device is recognised by WinXP and communicates. It also mounts the flash drive on the Mac desktop until it's captured by Parallels.
    Booting the iMac back into Lion, same Parallels pvm, the device doesn't mount on the Mac desktop, and is not detected by Parallels/WinXP.
    So I look into it further: in Lion, under 'About this Mac', the device does NOT show up under USB hubs, on any of the USB ports on the iMac. However, if I attach the satnav to my standard Apple wired keyboard, it IS recognised on the keyboard hub, but still doesn't mount, or is able to be detected by Parallels. I should mention that I also tested this out with other flash drives, which performed as expected, and on another iMac running Lion that also did not recognise or mount the drive.
    Not quite sure what to make of all this: works OK under SL, but not under Lion on the same hardware, so it would seem to be a USB driver issue, with Lion not playing nice with what is still a current-shipping third-party device and rendering it incompatible.

    I'm not sure I totally agree about Parallels 7.
    From the actual Parallels website:
    http://www.parallels.com/au/support/pdfm6/
    "Parallels worked closely with Apple during the development of its Lion operating system. Our testing has shown that the latest built of PDFM6 supports Lion but does not take advantage of new Lion features."
    If you do a little digging, there suuposed advantages of 7 over 6 might not be worth the upgrade cost for some. I'm not really interested in Parallels using the new Lion features like 'enhanced full screen support', new gestures and mission control interface, AES-NI encryption and Mac-on-Mac virtualisation.
    I would recommend anyone debating the issue have a Google around and also read the following link, at the end of the day for me the $50 buck upgrade isn't worth it and I will wait for Mountain Lion (OS X 10.8) and the eventual Parallels 8 before I need an upgrade.
    http://www.infoworld.com/d/virtualization/parallels-desktop-7-mac-upgrade-you-ca n-skip-172055

  • Extreme Base Station - green lights flashing in back, no light on front

    My Apple Extreme Base Station isn't broadcasting a WiFi signal and isn't creating a network for ethernet. The green lights on the back by each port are flashing about every second, but the front indicator doesn't show a light (no green, no amber, no nothin'). The base station doesn't show up on AirPort Utility, even though it's connected via Ethernet cable.
    I tried doing a hard reset (turning off station for a couple minutes, holding in reset button - plugging in power - and continuing to hold reset button) but nothing seems to be working.
    Is this dead? Or is there another solution to bring it back to life. Thanks if you have a fix!

    An internal power supply has failed on the AirPort Extreme. Unfortunately, Apple does not offer repairs or repair parts, so not much that you can do other than replace the device.
    The A1143 was discontinued in March 2009, so the device is at least 5+ years old, likely older. Unfortunately, 5 years....on average.....is about all that you can expect from routers designed for home use.

  • #2 monitor flashes static image

    I am running two monitors and the #2 monitor connected via its DVI-D port from the mini dv port is flashing/blinking with brief pulses of pixelated bars. I would best describe them as what you seen when you run a TechTool video test...lots of varied colored pixels. The monitor is a Acer X223W set to 1680x1050, 60 hertz and colors set to millions.
    Any ideas or suggestions as to what's going on?

    turn the monitor off and back on again until Apple issues a fix.

  • Flash components in Flex

    I have built an interface in Flash CS3 and now have the need
    to port it over to Flex. I am trying to do it with as little
    re-build as possible, so I need to port the Flash components over
    with it. I exported a SWC with all of the components I am using,
    and added it to the Library Path of an AS project.
    The build gives me no errors, but I do get a #2007 at
    runtime. The error seems to be stemming from a Yahoo ASTRA Flash
    component, which was included in the SWC.
    TypeError: Error #2007: Parameter child must be non-null.
    at flash.display::DisplayObjectContainer/addChildAt()
    at fl.controls::BaseButton/drawBackground()
    at fl.controls::LabelButton/draw()
    at fl.controls::Button/draw()
    at
    com.yahoo.astra.fl.controls.tabBarClasses::TabButton/draw()
    at fl.core::UIComponent/drawNow()
    at com.yahoo.astra.fl.controls::TabBar/drawButtons()
    at com.yahoo.astra.fl.controls::TabBar/draw()
    at fl.core::UIComponent/callLaterDispatcher()
    I have been searching around the net, and the majority of
    people are saying that this happens when the skins aren't included
    (so you need to set them before the component is added to the
    stage). I am using customized programmatic skins, for which the
    source files are included in the build, and the styles get set
    before the component is added to the stage (I actually replaced the
    default ones in the class).
    Does anyone have any other ideas as to how I could fix this?
    PS - It is an ASTRA TabBar component that is giving me
    issues. I know that Flex has a TabBar and TabNavigator, but I can't
    find any documentation on how to use these from an AS project (no
    MXML). I will simply rebuild using the native Flex controls if
    necessary, and if possible, but would prefer to fix the issue as it
    currently stands. (I might go back to Flash at some point, and
    don't want to tie myself to a particular solution, considering I
    can't use Flex components in Flash).
    PPS - If you are wondering why I am porting to Flex right
    now, especially if I am considering taking it back to Flash in the
    future, it is because I have the need to begin building in
    FlashPlayer 10 functionality, and the only way you can build to
    FP10 right now (as its in beta) is with a nightly build of
    Flex.

    "rritchey" <[email protected]> wrote in
    message
    news:g8ua6d$qu6$[email protected]..
    > bump: Was I not clear in my question? Or does no-one
    know the answer?
    You might want to try in the flexCoders Yahoo! group.

  • 2950 appears dead System Light Flashing stat light stays on

    I think I have a dead switch. However, I figured I would see if anyones had a similar situation. When I power the device up the stat light comes on and stays on. Then the port lights flash once then the system light starts flashing. Once the system light starts fashing the switch appears to hang. It's not responding from the console port. The other switch is I have is a 2950 as well and it's responds via the terminal emulation settings I've set up. I think I know the answer, but I'm indulging in a little wishful thinking. Lastly I hold down the mode button for 15 to 30 sec and I dont get any change in status. Should I feed this switch to my garbage can?

    If the console port does not respond, there is not a whole lot you could do. If you have a service contract, open a TAC service request and get it replaced.

  • Macbook Pro right USB port disconnects

    Hi - When using the dialup modem adapter in the right USB port it will disconnect after 3-4 minutes but works fine in the left port. Flash drives & scanner seem to work OK in the right.
    Also, a friend has computerized embroidery sewing machine and the right port does not recognized it but the left does on her MAC.
    Are Macs were bought a couple weeks apart.
    Is there a setting for each USB port that maybe wrong or is this just a defect?

    Well, does that link...
    http://lists.apple.com/archives/Usb/2006/Oct/msg00052.html
    still lock up your Mac? No way it should have any such effect.

  • Flash Player and .SWF

    I am a new upcoming Web Designer. I created two web pages for
    my web site, in Adobe Flash Pro CS3, and I published it for HTML
    view. I upload it to the server the page would play but when I'd go
    to click on the buttons that would link to the other pages of my
    website, it would not go in. So at first my first thought that
    there might have been some actionscript issue going on with the
    flash buttons. But when I went to the original .FLA file on the
    buttons it worked fine for the folder that it was in, so I figured
    let me re-route these buttons to the actual website using the
    website and its directory for the buttons to link. Still did not
    work, as a matter of fact when I re-checked it again using the
    browser this message box open up with this error message:"Adobe
    Flash Player has stopped a potentially unsafe operations the
    following local application on your computer or network:
    C:\AD%20Creative%20Media%20&%20Designs\index.swf is trying to
    communicate with this Internet-enabled location:
    www.andersondominique.com To let this application communicate with
    the Internet, Click Settings. You must restart the application
    after changing your settings." So I did clicked on the settings
    button, which lead me to the this website but on a different page.
    I changed the security settings like it asked me to for at least
    100 times today, and I am not getting a different result. Can
    somebody please help me! I really need to get this website up and
    running properly its for me to get a job. Im desperate! If anyone
    out there is familiar with this problem please answer me or better
    yet email me at: [email protected] THANK YOU!

    We've recently made a number of security-related changes to how UNC paths are handled in Flash Player, and in addition, have restricted some network requests from being made for locally-executed SWFs running with local-with-filesystem permissions.  These changes were necessary, as we found ourselves on the wrong side of a confluence of both old and emerging standards and conventions, and a very forgiving approaches to incorrectly constructed URLs in most major browsers.
    Where we could, we added good debugging messages, so installing a an ActionScript debugger version of Flash and running the application might provide you with some useful clues; however, as complexity increases, I'm not convinced that using Flash Player to execute SWFs locally in the browser is going to be smooth sailing, and I anticipate that we'll see additional churn as we evaluate and align with the expectations of the modern web in this regard.
    The good news is that we have Adobe AIR, which is designed to make it really easy to port your Flash Content, and it's specifically designed to build desktop applications, free from the complexity of browser plug-ins.  As a least-cost, long-term strategy, I'd strongly encourage you to evaluate porting your SWF over to AIR.  It may be as easy as just changing the publishing target in a current version of Flash Professional and distributing your application as an AIR payload instead.
    Alternatively, you could stand up a local webserver and host both the content and the SWF.  The really hairy edge-cases stem from the fact that we're trying to support HTTP and UNC paths simultaneously.  If you're using HTTP, things are much, much more straightforward.
    If you can narrow it down to the failing ActionScript call, I might be able to give you a more specific suggestion for a workaround.

  • Problem with N900' browser- "Update Flash Player" ...

    My Default browser doesnt play online VDO's anymore. It tells me get Flash player from Adobe site. When I go there and when I downloaded the ".deb" file. The package didnt install properly and gave an error. What should I do?
    NLobo

    Adobe make two types of plugins
    First is Flash for a platform.. This is flash for Windows, for Linux, for Android..
    If you have a device running a compatible platform, you can download and use flash
    Adobe also works with manufacturers to produce one off versions:
    Flash for the N900, Flash for the N810, Flash for the N800, Flash for Archos media players
    These versions are 99.9% of the time released with the product they were designed for, then forever left to rot.
    This second method is incredibly bad for the end user. Imagine if it were Flash for Dell laptops, not Flash for Windows.... If you bought a HP laptop you're out of luck.. If you have an old Dell you're out of luck.. It just wouldn't work
    The question is, will Meego see Flash for Meego.. or will the continue with the lame "Flash for this specific version of meego and only on this vendors hardware" approach..
    If so, the version of flash that comes with the Nokias first Meego device will not be licensed to run on older Nokia devices, so the N900 will be out of luck
    (This happened with the older internet tablets.. no back porting of flash allowed or supported)
    We will almost certainly never see Flash 10 for the N900 from Nokia or adobe... let alone an updated Flash 9 that fixes the security vulnerabilities present in the N900 flash plugin today!
    *sulk*

  • Configure client ports for RTMFP

    We are redesigning our Flash application to use RTMFP in place of RTMP, and we are interested in knowing exactly which ports our client app will try to use when connecting with RTMFP. From reading the documentation provided, it appears that the hostport element of Adaptor.xml allows for configuration of ports for Flash Media Server. Will changes to these port values have any effect on the ports being used by the client?

    Hi,
    Keystore Entry:
    Login to Visual Admin --> Server --> Services --> KeyStorage --> TrustedCAs --> Load --> Select the location where you have stored the certificate on your local system
    Load function is used as you have already got the certificate....
    Once this is done you will find an entry for your certificate in the Entries tab of your TrustedCAs section.
    This is your Keystore Entry...in other words it the name of your certificate.
    Keystore View:
    http://help.sap.com/saphelp_webas630/helpdata/en/16/c0503e1dac5b46e10000000a114084/content.htm
    Are you going to consume Logon tickets of the Third party system (which is other than SAP J2ee engine of your XI)? If yes, then you may also need to do some more settings in the J2ee Engine.
    Regards,
    Abhishek.

  • HP 6735s flashing orange led

    Hello,
    when i disconnect the power adapter cable from my 6735s notebook, the power led (the one above the power adapter
    cable connection port) starts flashing orange and it doesn't stop. I tested the battery (p/n:451086-122) on another hp notebook (6720s), the status is "ok" (i ran the test various times, and two times i got "to replace" and error id "reoow") , the values are all ok besides, perhaps, "cell 1 voltage: 0mV". Is this a faulty battery to replace or that flashing led on the 6735s is indicating some other issue?  Thanks
    values:
    cycles:49
    age: 820 days
    temp: 37c
    Design Capacity: 4400mAh
    Full Charge Capacity: 3901mAh
    Remaining Capacity: 1951mAh
    Current: 2488mA
    Terminal Voltage: 11482mV
    Design Voltage: 10800mV
    Cell Voltage 1: 0mV
    Cell Voltage 2: 3861mV
    Cell Voltage 3: 3859mV
    Cell Voltage 4: 3851mV
    Status: 80
    AC Power = True
    CT Number: NA

    Hi,
    From the test results you've posted, it certainly looks like the battery needs to be replaced as one of the cells appears to have failed.
    To help make certain this is just a 'battery issue', shutdown the notebook, remove the AC Adapter and then remove the battery.  Plug the AC Adapter back in - leave the battery out -  and start the notebook.  Does the LED above the power adapter socket show continuously White?  if it does, you can be fairly certain the battery is the problem.  Remember to shutdown the notebook and unplug the AC Adapter before re-inserting the battery.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Redraw issues after FLA imported to Flash, and Compiled in Air

    I created a test file in inDesign. It has 3 pages. The pages are pretty simple. Though there are some clipping paths and animation.
    I ported the filed to Flash, as a FLA.
    I added video in Flash, and some more animation.
    I added code so the file will go from frame to frame, (what were the pages), on mouse click in the frame.
    If I complie it is Flash, it works great.
    If I compile it in Air, which I want to do, when it gets to the last page, it starts to have redraw-issues.
    When the user clicks on page 3, there is a gotoAndStop(), which normally takes the user back to page 1. But in Air, the user gets to page one, but only sees page 3, as the redraw never occurs. I tested this very carefully, by rebuilding the whole thing and removing every element.
    The issue seems to be, if I remove all the pagespreads, which are now "movieclips" in Flash, it works fine without redraw issues.
    If I add any of the pagespread movieclips to a frame, as they were when imported, the redraw issue occurs, but only when I compile in Air.
    Have you heard of this before? I was wondering if there might be some settting in Air that is conflicting with the inDesign created pages, which are now movieclips.I am hoping there is something that I can do to fix it, as I would like to continue to create the spreads in inDesign.
    I am working on a PC in Windows Vista. I wondered if this was the issue as well. I can share the file if you want to see it, compiled in flash, and compiled in Air.
    Thanks very much,
    e

    Just to update. this is relevant for inDesign users who want to port to Flash, and compile as an app in Air.
    It turned out what was causing the problem was  my use of the TLF text. Air did not like it and caused it to error and not function. I rasterized the text on export as a FLA instead, and it compiled fine. It may be my use of kearning, hanging indents, etc. I refined the text alot in inDesign, as would most designers. Maybe the samples used in testing never had hanging indents? Anyway, it works fine, as long as I rasterize. This loses the nice TLF editing function in Flash. But at least it works and the text looks good.
    Any info on this, or if anyone reproduces the error, I'd be interested in hearing.

  • FLEX 2.0 and Flash Media Server 2.0 Unable to stream from client to server

    Hi All,
    I have been trying to put together a quick demo to stream
    and record audio from Client to Server. I get this error when
    trying to connect to FMS.
    ArgumentError: Error #2126: NetConnection object must be
    connected.
    at flash.net::NetStream/flash.net:NetStream::construct()
    at flash.net::NetStream$iinit()
    at Audio/toggle()
    at Audio/__submit_click()
    my Program fails at this line - ns = new NetStream(nc);
    Your help is greatly appreciated. Here is the MXML file
    Audio.mxml
    This file contains a simple start and stop button start and
    stop audio processing.
    This page is served from Apache Tomcat on host : demoserver1
    and port 8080
    Flash media server is also installed on the same host
    demoserver1.
    I did not do any additional config at FMS except creating an
    application called "DemoApp". All other settings are defaults.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    applicationComplete="startup()">
    <mx:Script>
    <![CDATA[
    import flash.net.NetConnection;
    import flash.net.NetStream;
    public var started:Boolean = false;
    public var nc:NetConnection;
    public var ns:NetStream;
    public var mp:Microphone;
    public function startup():void{
    lblMessage.text="Stopped";
    public function toggle():void{
    if (started==false){
    submit.label="Stop";
    started=true;
    lblMessage.text="Started";
    nc = new NetConnection();
    nc.addEventListener(NetStatusEvent.NET_STATUS,
    netStatusHandler);
    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    securityErrorHandler);
    nc.objectEncoding = flash.net.ObjectEncoding.AMF0;
    nc.connect("rtmp://demoserver1/DemoApp");
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS,
    netStatusHandler);
    mp = Microphone.getMicrophone(0);
    ns.attachAudio(mp);
    ns.publish("sample1", "record");
    else{
    started=false;
    submit.label="Start";
    lblMessage.text="Stopped";
    ns.close();
    nc.close();
    private function netStatusHandler(event:NetStatusEvent):void
    switch (event.info.code) {
    case "NetConnection.Connect.Success":
    trace(" connection success : " );
    break;
    case "NetStream.Play.StreamNotFound":
    trace("Stream not found: " );
    break;
    private function
    securityErrorHandler(event:SecurityErrorEvent):void {
    trace("securityErrorHandler: " + event);
    ]]>
    </mx:Script>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="400"
    height="300">
    <mx:HBox left="19" right="0" height="100" top="30">
    <mx:Label text="Label" id="lblMessage" width="150"/>
    <mx:Button label="Start" click="toggle()" id="submit"/>
    </mx:HBox>
    </mx:Canvas>
    </mx:Application>

    Hi,
    Are you trying to make an air app or a web application (flash) for streaming? You may want to check out the osmf framework to help you write a player for mobile platform. Check out http://www.opensourcemediaframework.com/ for more info on how you can write streaming video players using this framework. There are some good tutorials there and also you may post on the forum to get your specific queries solved.
    Thanks,
    Abhishek

Maybe you are looking for

  • Adobe Photoshop CS6 Extended 64-Bit GPU Acceleration Stopped Working

    I've been using Photoshop CS6 Extended 64-bit when one day the GPU acceleration features stopped working. I closed the application and restarted it and the GPU acceleration still didn't work. I couldn't rotate the canvas or use scrubby zoom. I reboot

  • Installing development tools like gcc

    hello everybody, i'm a linux user. i installed solaris 10 using the dvd (i need real time for threads). 1- i was surprised, it's the first time that my lan card r8169 gigabit wad not reconized. how can i intall it ? 2- how can i install gcc without d

  • Aggregation issues II

    all, I have ADS & PRO AMT* logical column in fact table and two sources Derived and aggregate the way derived is calculated is different from Aggregate for ex derived = promoAmt ( filter from another table PROMO TYPE ) where services = 'ADS & PRO' pr

  • Error while using Web services for working with Informatica

    [Status] : Initializing... [Status] : Done [Status] : Calling StartWorkflow... From : DataIntegrationServiceSoapBindingStub Reason getting : null Jun 25, 2007 6:15:06 AM org.apache.axis.encoding.ser.BeanSerializer serialize SEVERE: Exception: java.io

  • More ACR for elements questions

    After having played around with ACR 4.1 I have a few questions and observations: Not all the the features described as being in 4.1 in this article http://photoshopnews.com/2007/05/31/about-camera-raw-41/ seem to be accessible, e.g. holding down the