External swf unload & stop not working

I am trying to load & unload external swf that contain audio & video. Problem is that when I unload the swf's, the sound continues and I get overlapping sound. This is the code I am using:
var swf_loader:Loader = new Loader();
///unload previous swf
swf_loader.unloadAndStop();
removeChild(swf_loader);
////load new swf
swf_loader.load(new URLRequest("welcome.swf"));
swf_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishLoading);
function finishLoading(e:Event):void{
if(swf_loader.content){
addChildAt(swf_loader, 0);
swf_loader.y = 75;
swf_loader.x = 0;

(welcome to the stupid-error club.  you're in good company.)
and, you're welcome.

Similar Messages

  • How to detect external SWF has stopped not using totalFrames

    Trying to find a way to detect when an externally loaded SWF has stopped. Using "totalFrames" like the example below doesn't work for what I'm trying to accomplish.
    I need something that simply listens and detects when the clip has stopped. Editing the external SWF is not an option. Thanks in advance for any insight.
    function onfrm( evnt: Event ): void
    if (newMC.currentFrame == newMC.totalFrames )
    newMC.removeEventListener( Event.ENTER_FRAME, onfrm);
    trace("End of banner");

    Just did a small test, and at least with loading a swf that has a timeline the totalFrames option works fine:
    var m:MovieClip;
    var a:Loader = new Loader();
    a.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
    a.load(new URLRequest("anim.swf"));
    function done(e:Event):void
      m = MovieClip(a.content);
      m.addEventListener(Event.ENTER_FRAME, chek);
      addChild(m);
    function chek(e:Event):void
      if(m.currentFrame == m.totalFrames){
      trace("done");
      m.removeEventListener(Event.ENTER_FRAME, chek);

  • Loading external swf into Fla. not working

    I have created a Flash page that loads an external swf into
    it when you click a button. The swf loads but the actionscript
    assigned to the swf which scrolls images across does not work. When
    i open the swf in a browser window with the direct link to it the
    scroll works but inside the fla file the swf loads but the scroll
    buttons are not working at all. Would this be something in the
    actionscripting in the swf or fla file. Any advice would be greatly
    appreciated, thank you.

    var imageRequest:URLRequest = new URLRequest("my_gallery.swf");
    var imageLoader:Loader = new Loader();
    imageLoader.load(imageRequest);
    addChild(imageLoader);
    is as3 code.  that won't work in your as2 project.
    here's the equivalent in as2:
    this.createEmptyMovieClip("targetMC",this.getNextHighestDepth());
    targetMC.loadMovie("my_gallery.swf");

  • External USB HD does not work with HAL:

    External USB HD does not work with HAL:
    From the last 10 days the HAL auto-mount with ntfs-3g file system of my external hard drive  does not woks.
    But the manual mount procedure with the command mount -t ntfs-3g /dev/sdb* /mnt/XYZ works.
    I've followed the instructions in the wiki: http://wiki.archlinux.org/index.php/HAL and the system has worked up to the last kernel or HAL update.
    My fat32 usb-stick works without any problem.
    If I try to open the device with KDE it appears an error popup wit this message:
    TODO: have to rethink extra options
    Error: kio_media_mount_helper
    The log from the kernel.log is
    Nov 6 22:03:16 myhost usb 5-1: new high speed USB device using ehci_hcd and address 4
    Nov 6 22:03:16 myhost usb 5-1: configuration #1 chosen from 1 choice
    Nov 6 22:03:17 myhost Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Nov 6 22:03:17 myhost ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Nov 6 22:03:17 myhost Initializing USB Mass Storage driver...
    Nov 6 22:03:17 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 6 22:03:17 myhost usb-storage: device found at 4
    Nov 6 22:03:17 myhost usb-storage: waiting for device to settle before scanning
    Nov 6 22:03:17 myhost usbcore: registered new interface driver usb-storage
    Nov 6 22:03:17 myhost USB Mass Storage support registered.
    Nov 6 22:03:22 myhost scsi 6:0:0:0: Direct-Access WDC WD32 00JB-00KFA0 0811 PQ: 0 ANSI: 0
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sdb: sdb1
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Attached SCSI disk
    Nov 6 22:03:22 myhost sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 6 22:03:22 myhost usb-storage: device scan complete
    and the error.log is
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Do you have some idea ....
    Bye.

    I have done the following:
    Downloaded the patched hal version.
    used makepkg in /abs/local/trunk/ to create a pkg for pacman
    used sudo pacman -U pkgname to install it.
    used sudo nano /etc/hal/fdi/policy/preferences.fdi to create the fdi file with the following content:
    saved the file and removed my ntfs entryes from fstab and rebooted. and still there is no automount off ntfs partitions.
    have i done something wrong?
    br fjodork
    WARNING: what follows is a guide of what did work for me, I'm still in an early stage of learning linux, so please correct me if anything of what follows is wrong/dangerous/stupid. As I said, this worked for me, it's not pretty, since I was learning each step on the fly and I'm sure there are better ways to do this.
    So fjodork, you seem to have done the the necessary steps, though i couldn't get it to work until i first removed hal without dependencies
    pacman -Rd hal
    it will give you some warning about the dependencies, ignore  it since we are reinstalling hal in a few steps.
    First i tried to follow Raymano's link, obviously it showed me nothing in the browser so I thought it might be a broken link.
    So I downloaded the source tarball from here http://hal.freedesktop.org/releases/hal-0.5.10.tar.gz
    unpacked it changed the /tools/hal-storage-mount.c as per Milfadoodle's instructions.
    at first I tried to compile directly from source, the process would finish without a glitch though after reboot nothing changed, as if hal weren't
    installed, i guess there were issues with paths. anyway read on
    Then repacked the source in tarball, copied it to /var/abs/extra/system/hal and modified the PKGBUILD as follows
    makedepends=('pkgconfig' 'gperf')
    options=('!libtool')
    install=hal.install
    source=(${pkgname}-${pkgver}.tar.gz #removed url so makepkg looks in the current directory for the tarball
        hal
        hal-policy.patch
        cryptsetup_location.patch
        hal-0.5.9-hide-diagnostic.patch
        ntfs3g-valid-options.patch)
    md5sums=('6641c30a27c00485c6accac5110ff911' # replace with md5sum of your package's sourceball (run md5sum filename)
             '882f67668cb14a0a9e4a27ef22278027'
             '5ba8b610aa9763a5f42b9f7cbd7a86ad'
    then makepkg (i had to add --asroot, don't ask why
    and finally pacman -U hal-0.5.10-1-i686.pkg
    another reboot and everything worked without a glitch!:D (yeah i know i still haven't got rid of the reboot mentality )
    I have also put the policy files as per the wiki instructions.
    PS: I know this is a dirty way to getting things done but as i said, I'm just starting
    If anyone could comment/correct/explain this post I'd be more than happy, the automount issue was bothering me for about a month now (you'll say why do I need ntfs in the first place? well, I only recently switched for Linux as my primary OS, these are some relics of the M$ era

  • External USB keyboard does not work with T60 after BIOS upgrade

    External USB keyboard does not work properly with T60 after 2.26-1.07 BIOS upgrade.
    It does the same with or without the docking station.
    Anyone else bumped into this problem yet? 
    Has someone found any fixes for this?
    t

    Hi and welcome the forum!
    Try uninstalling all USB hub devices from the device manager and reinstalling them again, particularly the keyboard's.
    v2.26 is supposed to fix the issue according to lenovo:- http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-63024
    Hope it helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • MY EXTERNAL SPEAKER PORT IS NOT WORKING for hp envy

     MY EXTERNAL SPEAKER PORT IS NOT WORKING .WHEN I CONNECTED TO A EXTERNAL SPEAKER ,THERE WERE NO SOUND AUDIBLE.SO WHEN I DISCONNECTED THE CABLE FROM PORT,I WAS ABLE TO HEAR WITH THE IN BUILT SPEAKERS.EXTERNAL SPEAKER IS I GOOD CONDITION.I CHEKED WITH MY HEAD SET ALSO.IT WAS NOT AUDIBLE.MY LAP IS HP ENVY .KINDLY HELP

    Hi ano87, welcome to the HP Forums. What is the model or product number? What version of Windows is installed?
    Guide to finding your product number
    Which Windows operating system am I running?
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • External hard drive is not working on airport time capsule even after 7.7.2 firmware update.

    External hard drive is not working on airport time capsule even after 7.7.2 firmware update.
    I have the latest Airpor Time capsule 2gb. I specifically bought it so that I could have an external hardrive set up to wirelessly house my itunes library and movies. When i connect the drive, all i get is that the disk needs to be repaired.
    the drive can works fine when connected to the macbook pro and I have run the verify and repair features in disk utility. I have also reset the airport timecapsule as well following these changes and still no change.
    The 7.7.2 update says that it addressed the usb issue of not showing the drives but there are still problems as I cannot get it to appear.
    Please help.
    Thanks

    How is the hard drive formatted?
    Have you tried using a powered USB hub with the drive when it is connected to the Time Capsule?
    (The USB port on the Time Capsule is borderline as far as power is concerned....you may need to use a powered hub.....even if the hard drive has its own power supply)
    If the drive is formatted correctly....and....it has ample power, it will "show up" when you open AirPort Utility, click Edit, then click the Disks tab at the top of the next window.
    In the example below, my Time Capsule drive is named "Backups" and another drive named "WD Drive" is connected to the USB port on the Time Capsule.
    You should see the name of your Time Capsule drive (named "Data" unless you have changed the name) and the name of the USB drive if you perform the same check.
    What do you see?

  • External Hard Drive does not work with Lion

    Hi
    My External Hard Drive does not work with Lion this message appears:
    NTFS-3G could not mount /dev/disk1s1
    at /Volumes/My Passport because the following problem occurred:
    /Library/Filesystems/fusefs.fs/Support/fusefs.kext failed to load - (libkern/kext) link error; check the system/kernel logs for errors or try kextutil(8).
    the MacFUSE file system is not available (71)
    can anyone help?

    Hi,
    See this Discussion:
    https://discussions.apple.com/thread/3191198?start=0&tstart=0
    Cheers,

  • Soft button STOP not working in alarm mode ver 50 ...

    I have recently update my Nokia 5800 firmware to ver 50 and found the soft button STOP not working during alarm. This was oK in ver 21.
    Anyone has any idea how to correct this issue ?
    Chris
    Solved!
    Go to Solution.

    Have u noticed that there aren't buttons but actually moving arrows? U will have to slide you finger across the screen in the moving direction.

  • SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    Can you post a link?
    Does that only happen on that website or do you have that problem with all Flash content?
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Some of my external swf flies will not load

    I am using CS6 on windows 7, 64 bit
    I work totally in code with a main class calling in library items and objects.
    I am loading an external swf, then when a button is clicked the swf is unloaded and another one is loaded in.
    Most of the swfs were produced in CS5 but I have republished them all in CS6 with the same settings as the parent swf. ( I know this can be a problem if the versions are different)
    2 of the swfs load fine and the others give the following error message
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at Main()
    when it tries to implement:
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,imageLoaded);
    Which seems to say it can't find the file. ( If I name one of the working files to be the same name as one of the failing files it works fine!)
    It doesn't matter what order the swfs are loaded in the same ones load and the same ones fail!
    By a process of elimination I think there must be something different about the swfs that don't work. As Ihave published them all using CS6 with the same settings at the parent swf I have no idea what the problem is.
    Is there anything that may cause problems and stop a swf being loaded?
    thanks

    Hi Ned,
    Thanks for the debugging tip. That has helped me move slightly further forward.
    I now have bare code that just loads in an external swf so I could test a few different ones.
    I work with graphic designers who work on the timeline and often import/copy and paste from illustrator/inDesign.
    Having tested a few different external swfs made by differnt people I have found slighly different results.
    Some load fine - hooray!
    others produce this error and get stuck in  loop but something does eventually show:
    ReferenceError: Error #1056: Cannot create property __rslLoaders on Main.
        at fl.rsl::RSLPreloader/contentComplete()
    and others produce this error after seeming to be in a loop and nothing shows, then when I close the flash player I get
    Error #2044: Unhandled ioError:. text=Error #2036: Load Never Completed.
    So I get the feeling it must be something in the external swfs that the parent swf doesn't like.

  • Swf playback controls not working correctly

    Hello all -
    When I publish the Captivate project that contains a swf file
    and an audio file everything plays well until I use the controls.
    Stop/pause works fine,but when I use rewind or ff etc the swf file
    will not rewind nor start over.
    Any help would be appreciated
    Thanks
    Rick

    Uninstalling Glimmerblocker fixed the problem of Safari being able to access all web sites.  One of the other many procedures I did must have solved the issue of the apps not launching.

  • SWF/Flash hyperlink not working in iweb

    Hi guys,
    Really really stuck with this one...
    I have a flash file of which i have placed wihin my iweb site (the flash file shows and operates perfectly)
    However - the SWF's hyperlink will not work within iweb.
    The flash file itself is fine and the nyperlink within it works perfectly when opened within a browser.
    Here is the code below - if anybody has any help I would be so grateful.
    <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/ flash/swflash.cab#version=6,0,40,0" border="0" width="800" height="600"><param name="movie" value="http://droprecords.net/drop_records/drop_circle_1_CS5_network.swf"><param name="quality" value="High"><embed src="http://droprecords.net/drop_records/drop_circle_1_CS5_network.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="400" height="200"></object>

    I've tried about 5 different codes now and although they all show the flash button - none of them allow the hyperlink within it to work properly.
    So frustrating.
    The closest one was this one;
    <iframe src="http://droprecords.net/drop_records/drop_circle_1_CS5_network.swf" allowtransparency="true"  width="400px" height="200px" frameborder="0" </iframe>
    But that opens up the link insiade a small iframe window instead of the full external window.
    ARRGGGHHHH

  • Why would the Firewire Port and/or External DVD-RW suddenly not work?

    Hi, it's me again. I swear, I must be destined to just use Windows machines...
    Anyways, I have a used/refurbished iBook G3 500MHz 320MB RAM Dual USB (1 Firewire)laptop running OS 10.2.8 that I bought a few months ago. I went and purchased an external Firewire/USB 2.0 DVD-RW drive as I only had a CD-ROM drive on my machine and I wanted the option to burn CD's or watch/read data from DVD's (I know that with my slow processor writing DVD's -other than data- would be a stretch and have other machines to do that with anyways so it wasn't a concern really). I received it and installed it, also installed the free version of Toast that came with it, and the drive worked fine. I have not needed to use the drive since then and have not used the laptop much at all since then really, but I do need to say that I did end up adding a new user account, though I can't remember if I changed the original Admin account and then still have the one I created myself when I first started the laptop after I bought it (had a fresh install of Jaguar on it, but I have no disk to re-install with if needed) or if I created a separate (new) account and ended up deleting the Original Admin accout (I know in Windows, you cannot delete the original Admin account but I do not know if that is the same for OSX or not). I did this as I wanted a master Admin account that I just wouldn't really use and then wanted the other as my main account (and use it to connect to my home windows network) and for some reason it would not let me put a check in the box to allow that account to do so (from either Apple or my user accounts) and so I know that my main user account now is set up to allow it (was it the old Apple user account or a new one, I can't remember- sorry).
    Ok, so that is the back story to my problem, which happens to be this:
    I just bought a new chip of RAM (512MB to make it a machine with 576MB RAM total) and as I had been looking at getting OSX Tiger (but didn't want to do it without the extra ram and had been considering Panther instead as well), I thought it was necessary if I wanted to not bog down my machine. I bought the Install Disks on DVD for Panther, as well as an upgrade disk (DVD again) for Tiger, therefore letting me use the External Firewire DVD-RW to install Panther, and if I liked I could go ahead and upgrade to Tiger (and if I didn't like it too much, or it slowed things down too much etc, then I could always go back to panther and have both available for future options). The extra RAM coming in handy here definitely.
    So I was going to install the RAM today, and decided to go ahead and test out the External DVD to make sure it could boot from it (before making any changes to my system) and then go and install the RAM, and after that, install Panther to start... But I plugged all the cords and cables in, used my laptop with AC power even, and I could not get the External to show up at all... (kinda like the very current post right below mine but for the G4- it worked before, but now the firewire External just does not show up).
    I only have USB 1.1 on this laptop obviously, and I don't even know if you could do a boot from an external with USB 2.0 if my laptop had it (the DVD player does). I was recommended to boot with an external firewire DVD or firewire to another machine with DVD capabilities to do the install. So my problem right now is getting slightly bigger, as of course, I can't seem to momentarily find the stuff that came with the External (spare USB cable to check and see if the laptop will recognize it at least with that and to show it is the firewire that is not working properly, or the disk that I used to install it -might have been only used to install Toast free version if it didn't need any drivers, but I don't know where that or the instructions for installation sheet currently is -- I am looking for it, but I have switched bedrooms just last week and I also seem to be missing a few other Windows laptop disks as well so there is a good chance that they are all together, I just need to figure out where, heh.)
    I am waiting currently before installing the memory, though if I don't get the External working tonight, I may go ahead and do it first as at least I will have more memory on my laptop then, until I can get other stuff functioning and be able to do the Panther install.
    But my main question is, is there something that would cause an installed external to suddenly not show up in OSX? Since I hadn't used it since that one day, and it was unplugged from the laptop itself, would that end up doing it, or more likely, the changing of the user accounts (though I have been trying to test it with different types of media and through both of my user account (which are both "admin" ones), though I do still have one of those being an account that was on there when the External DVD was first installed, so it really shouldn't have done this at all (one would think). So how big of a chance is it that the firewire has somehow gone dead and this is the main culprit to my wasting the past 4 hours on this???
    I am currently scavenging around for an extra USB cable to try and test the External that way and will post the results when I can... I love the look and idea of macs, now I have a mac and want to upgrade it even, but why is it that whenever I attempt to use it after having not used it for a bit (and try to make the iBook feel better by using it more as I am sure it feels sad and alone sitting on the shelf while my Windows Laptop gets more attention), or try to fix it when it can be made better (and therefore used more often), the mac (all macs really), just seem to get all pissy and cause problems and make me spend hours upon hours trying to get things to work again??? You have to admit it, I am "mac cursed"... sigh I can program in 4 or 5 computer languages and am very advanced at many tech things (the ones I am not as good at I am still usually Average or Medium skilled) so it makes me wonder why I have so many tech problems with Macs when they are supposed to be the "easy" OS to use...

    Actually, I think I have it all working now. After going back to the Plextor Website, I found out that the switch between the USB and 1394 ports only gets activated (switched over to the other) with you turn the device off first, move the switch and then turn it back on. I was sure that I had done this with the ibook, but maybe not as when I went back and did it with first the USB and then the Firewire cables, it did work. I definitely knew that I had not done this with the Windows laptop, the reason it would not have the USB work for me on it.
    but back to the iBook, I was confused as it was only showing up as a DVD-ROM (which I guess is what they do until you actually open up the burning software to then be able to burn to it), and it also had the wrong Model #, which after more research, showed that it was the Internal DVD drive model version (PX-708A) compared to the actual model version (PX-708UF) which is the USB/Firewire (External) model. The firmware was really out of date as well (from June 2004 I think, v1.06) and they had v1.12 from Spet/Oct 2006 available so I went to get that (which was a hassle). They had nice easy Windows self extractor/installer packs, and then the BIN files for use for all systems (Sun OS/ Mac OSX/ Mac OS/ Linux etc as well as usable for Windows), and those needed a special Firmware Updater Application which was OS specific. Only I had the hardest time trying to get the OSX one as it would send me to a FTP site and not give me any clues as to which file(s) I needed to get and the Mac OS version was just for older 9.2 or below versions and didn't want to install under the OS Classic mode.
    I ended up using my windows computer which made it easier to view with the FTP stuff as I have FireFTP in Firefox, and downloaded the files I thought I needed (to test out), and then realized my silliness, and just downloaded (as well) the Windows Auto Extractor/Installer as the Firmware is the same for all OS's, just the way to install/update it was different... So I hooked the DVD drive to my PC and updated the firmware, checked it out on here before moving it back to the ibook, where I checked that it still worked and had the new update version showing, which it did, and now I have my fully working and newly updated drive ready for the OSX installations... I had attempted to update my Jaguar system as well while online, but it had no new updates available (I guess those were all mostly Tiger updates that were just recently released).
    I am now off to install my additional RAM, and after checking that it all shows up correctly, I will go ahead and do the Panther Install (and test it out and see if I like it or not).
    For anyone that currently uses Panther on any mac, are there still any major problems I should know about before hand, or know about things that they have mostly fixed (like the issues with Firewire ports and External Drives that they had around the time Panther was first released for example)???
    Thanks to all that helped... I now know to attempt an "eject" of any external HD (which I do have one that I will setup to use after I get Panther on the ibook) or CD/DVD drive instead of just unplugging the USB/Firewire cable.

  • External interface.call is not working

    hi, i am trying to call one java script function in
    actionscript by using External interface.call method. but its not
    working .can u pls tell me why this happend

    "angadala" <[email protected]> wrote in
    message
    news:gmpc58$g9p$[email protected]..
    > skill status.mxml
    >
    >
    > <mx:Script>
    > <![CDATA[
    > if (ExternalInterface.available) {
    > ExternalInterface.call(getDataFromXml);
    > }
    >
    > it is javascript
    > <script type="javascript">
    > var data = new Array();
    > data[0]=[1,2,3];
    > function getData()
    > {
    > return data;
    > }
    > </script>
    > </head>
    > <body>
    > <div id="SkillStatus">
    > <p>Alternative content</p>
    > </div>
    >
    > </body>
    > </HTML>
    >
    1) Your JavaScript function name and the function name you
    are calling
    don't match.
    2) On the Flex side, you are calling a JS function that I
    think you are
    expecting to return a value, but not assigning the result of
    the value to a
    function.

Maybe you are looking for

  • Mini-DVI DVI to DVI VGA adaptor issues

    So, I just bought a snazzy new black MacBook, and am wanting to connect it to my old 20" NEC monitor, which uses VGA. Since I already have a DVIVGA cable that I used with my old tower (and I figure I'll someday upgrade to a DVI monitor), I thought it

  • Animated Gif help

    I want to place an animated gif into an application. I want it to start of not animated then I click a button and it starts. I click another button and the animation stops? Where do I start? I have placed the gif into a JLabel and it starts animating

  • How to make this effect: text or image on water surface in Psunami plugin ?( AE) + video

    Look at the video. Its made in Psunami plugin for After effects. But how???? Any idea, who knows all the steps? https://m.youtube.com/watch?v=q_O_BeJWg6g

  • Is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES

    greetings all .... is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES . i have this .................... {                  OAMessageTextInputBean bi = (OAMessageTextInputBean)webBean.findIndexedChildRecursive("BI") ; System.out.println

  • Urgent! Nested If- Else statements.Help me

    Please help me, I gt a problem using a nested if else statements.I have 3 objects called bpdu objects. These 3 bpdu objects need to be compared with each other based on their Priority and Mac Address.The program below shows the program that have been