Issues in running a flash app inside a flex application

I am trying to load and run an AS3 SWF inside my Flex app. I am using SWFLoader component. This SWF file is an animation which has several clickable buttons, drag and drop of items inside the swf and some text boxes. Can some one please help me in identifying how to do this in Flex? I am able to load the swf, but when I try to drag one of the items and put it in another spot within the swf stage, it does not work an dthe buttons do not appear to be working. Do I have to know the functions within the AS3 SWF? Any help is appreciated. Thanks, Ramesh

I tried with some of the AS3 files from Adobe samples (http://www.adobe.com/devnet/actionscript/samples.html), for eg., the Drawing API. There are slider components in the flash app that don't show up either. Does that give anyone a clue as to what might be wrong? Thanks, Ramesh

Similar Messages

  • Error while loading a swf created in flash cs4, inside a flex application

    Hi there,
    I have created a rotating logo in flash cs4 using motion presets, named logoRotar.swf. I have used this inside my flex application:
    <mx:SWFLoader width="33.33%" height="100%" source="assets/logoRotar.swf">
    When I execute the flex application, I get this runtime error message:
    VerifyError: Error #1014: Class flash.geom::Matrix3D could not be found.
        at global$init()
        at fl.motion::AnimatorFactory3D/getNewAnimator()
        at fl.motion::AnimatorFactoryBase/addTargetInfo()
        at logoRotar_fla::MainTimeline()
    I also tried adding import flash.geom.*; statement in my flex application, I still get the same message.
    Flash player 10,0,22,87 is running in my browser.
    Please help me out....
    Cheers!
    Deepak

    Get Flex 3.3 and use -target-player=10
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Running old Flash panel inside an HTML5 panel

    Is it possible to run the SWF file of my old flash panel inside a new HTML5 panel and let the SWF communicate with Photoshop? Or do I have to write some intermediate code that passes the SWF commands to Photoshop? Is something like that possible at all? I am looking for an easy way to convert my flash panel to an HTML5 panel without having to recode its UI.

    Ok, I tried it myself. Where the Flash content should be there is only a "Couldn't load plugin" text. So why not
    support the Flash Player plugin inside HTML5 extensions in Photoshop CC 2014?

  • Run a ADF app inside a frame

    Hi,
    We have a ADF app developed with Jdeveloper 11g. It runs fine.
    When we try to add it inside a html frame, it gives this error
    Warning: Unable to load content in a frame. Frame content will load at the top level.
    Any ideas how to work around this.
    Thanks

    Hi Frank,
    Correct. These are not ADF buttons. Here is how it is implemented.
    We are developing a new adf application, ""Employee Maint"" and adding to our existing site page.
    The existing html web page has top and bottom frames.
    The buttons are in the top frame which when clicked show the corresponding page in the bottom frame.
    Button code looks like this
    It is an hyperlink with href="# " onClick="showPage('mypage.html')"><img src="button1.gif">
    The java script, go_main looks like this
    function showPage(url1) {
    parent.frames.bottom.location.href = url1;
    Here is how the page looks.
    Button1 Button2 <<<<< top frame - name "head"
    mypage.html <<<<< bottom frame - name "bottom"
    In the mypage.html(in the bottom frame), "Employee Maint" link is there which points to the new ADF application.
    When clicked this link pulls up a Jdev Application in the bottom frame. THIS WORKS FINE.
    But, after the Jdeveloper page is loaded, when we try to use the "Button2" in the top frame to pull up other page,
    it does not work.
    The reason I see is that ONCE THE ADF APPLICATION HAS SHOWN IN THE BOTTOM FRAME, THAT FRAME is not accessable
    by the javascript when the Button2 is clicked. The parent.frames.bottom.location is inaccessible.
    This works well in IE but an issue with Safari/Chrome/Firefox.
    Is there any solution for this so that the top buttons continue to work even after clicking on the Jdeveloper App.
    PS: The ADF app has the below code in the web.xml (without this code it does not pull up in the bottom frame)
    <context-param>
    <param-name>oracle.adf.view.rich.security.FRAME_BUSTING</param-name>
    <param-value>never</param-value>
    </context-param>
    Thanks
    Edited by: user5156030 on Mar 14, 2011 7:29 PM
    Edited by: user5156030 on Mar 14, 2011 7:30 PM

  • Using flash debugger player with Flex application

    I am building my first Flex app and have run into a problem that I can't figure out.  When publishing a .swf in Flash I sometimes run the debugger to generate the swf.  When I do so, I can view the swf through my browser (using the debugger version of flash player) and the exceptions that are thrown include a stack trace (complete with line numbers) of any error that occurred.  I have tried running the debug compiled version of my swf from Flex and it does not show the line numbers.
    Is there some way to do this?  I have several thousand lines and the location of the error is tough to figure out becuase it is an instance where I am casting an event to the wrong type through my typed params for a function.  So, for example, I am dispatching a MouseEvent but the listener function has a typed parameter of Event instead.
    Can someone please point me in the right direction?
    Thanks.

    Thanks for the feedback.  Our debugger documentation definitely needs to be refreshed.  The PPAPI debugger on Chrome is even more complex.  I blocked some time out on my calendar for Friday to try and get these revised.

  • How can I display Flash Videos without any Flex application decoration

    I develop a flv video player with Flex3 and have problems to
    get rid of the application decoration (frame, border and the like)
    that is part of a standard Flex application. My video player is
    200px x 200px and I only wanna see what the video shows, so that
    the Flex application allocates 200px x 200px.
    It is not clear to me if this can be reached through special
    tags resp. attributes or if I have to do something in the CSS
    area.

    copy and compile this one taken from www.theflexteam.com with
    a couple of extra things, is that it?:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical" backgroundColor="#000000"
    backgroundGradientColors="[#000000, #000000]">
    <mx:Script>
    <![CDATA[
    private function playVideo():void
    videoPod.play();
    private function pauseVideo():void
    videoPod.pause();
    private function stopVideo():void
    videoPod.stop();
    ]]>
    </mx:Script>
    <mx:VideoDisplay id="videoPod" source="
    http://www.theflexteam.com/gfx/flvs/gorillaz_high.flv"
    backgroundColor="#000000" backgroundAlpha="0"
    shadowDistance="0" shadowDirection="center"
    />
    <mx:ControlBar>
    <mx:Button id="stopBtn" label="Stop"
    click="stopVideo();"/>
    <mx:Button id="playBtn" label="Play"
    click="playVideo();"/>
    <mx:Button id="pauseBtn" label="Pause"
    click="pauseVideo();"/>
    </mx:ControlBar>
    </mx:Application>
    /cujino

  • Flash Video in flex Applications

    I'm working on making a web cast template for my clients in
    flex and I'd like to do the entire template in flex, however, I'm
    not sure about the best way to go about importing flash video into
    a flex application. Is it the same as flash 8? Does it include all
    the automatic play controls that flash 8 offered?
    The flv will be delivered via progressive download.

    Hi
    Flash and J2me both can be use differently, not together till now. We can either use Flash or J2ME as a development tool.
    Cheers,
    Rohan Chandane

  • Is it possible to run flash apps in different plugin-containers?

    I usually have 3-4 opened windows of firefox with quite a few tabs in each window. There are at least 3 or 4 flash apps running at the same time. So when one app crashes and plugin-container fails, I lose progress for each application. Now I'm thinking, that openning one flash plugin-container for each flash application can help me with it. But i can't find any information how can i do that.
    I do understand that there may be tons of flash content in each web page, and so that would be nice to have an option to run only selected app in different container. Can i do that now? Or will i be able to do that in future? If not thats ok though, just sad =)

    There was actually an old issue with this: [https://bugzilla.mozilla.org/show_bug.cgi?id=633427] and more than one install of Firefox may be silly.

  • Flash app converted to AIR/desktop app: actionscript not running

    Hi there,
    I have a flash app that runs on a browser useing actionscript and webservices for getting data, converted to a AIR desktop app. It access a local database for data. I have opened the .fla file and changed the publishing setting to AIR and set the document class to the Main.as. Also, I have added the following .swc files - framework.swc and rpc.swc. While trying to debug it is showing that "Your swf does not have action script to debug". While running it, I am getting a blank screen. Could you guys please help me out in what I am missing or doing wrong ????????
    HELP PLEASE!!!

    Hi there,
    I have a flash app that runs on a browser useing actionscript and webservices for getting data, converted to a AIR desktop app. It access a local database for data. I have opened the .fla file and changed the publishing setting to AIR and set the document class to the Main.as. Also, I have added the following .swc files - framework.swc and rpc.swc. While trying to debug it is showing that "Your swf does not have action script to debug". While running it, I am getting a blank screen. Could you guys please help me out in what I am missing or doing wrong ????????
    HELP PLEASE!!!

  • Running an external app packed inside a jar

    Hi!
    I'm using these code that I found for executing an external application:
    Runtime runtime = Runtime.getRuntime();
    Process process = runtime.exec("//home//guest//myNativeApp");
    InputStream is = process.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line;
    System.out.println("[INFO] Output of Runtime.exec() is:");
    while ((line = br.readLine()) != null) {
    System.out.println(line);
    Now I'm trying to include "myNativeApp" inside the jar. So when I "call java -jar packedApp.jar" and
    the external application should be executed. I know we can use this.getClass().getResourceAsStream("/myNativeApp") to have the path inside the jar file but
    I couldn't spawn it. Any ideas? Thanks in advance.

    Thank you for reply. I already checked that page. Actually I did not handle the errors in the example to keep the idea simple. I want to put my app inside the jar because later I will use its output and I need to distribute the jar with all the resources inside included the app. I know I will lost all my portability but is an specific need. Do you have a clue?

  • My 2009 macbookpro has begun running very slowly, apps freeze and pages hang ... i've run EtreCheck and there are problems but don't know how to sort

    my 2009 macbookpro has begun running very slowly, apps freeze and pages hang ... i've run EtreCheck and there are problems but don't know how to sort ... ran CleanMyMac and freed up about 30GB of space but didn't help ... ran AdwareMedic so that's been sorted but the other issues that came up on the EtreCheck I need help with however i can't figure out how to paste the results on this page

    thanks thomas ... here it comes
    EtreCheck version: 2.1.5 (108)
    Report generated December 29, 2014 at 5:03:07 PM GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (17-inch, Early 2009) (Verified)
        MacBook Pro - model: MacBookPro5,2
        1 2.66 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400M - VRAM: 256 MB
            Color LCD 1920 x 1200
        NVIDIA GeForce 9600M GT - VRAM: 512 MB
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Uptime: 0:5:36
    Disk Information: ℹ️
        FUJITSU MHZ2320BH FFS G1 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            [redacted]'s world too (disk0s2) / : 319.21 GB (30.39 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        MATSHITADVD-R   UJ-868 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Inc. iPhone
        Logitech USB Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple, Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Configuration files: ℹ️
        /etc/hosts - Count: 29 - Corrupt!
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Application Support/Roxio
        [not loaded]    com.roxio.TDIXController (1.7) [Support]
            /System/Library/Extensions
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriver (3.0) [Support]
            /System/Library/Extensions/KensingtonMouseDriver.kext/Contents/PlugIns
        [not loaded]    com.kensington.mouseworks.driver.ADBID32Mouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID32MouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4Mouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4MouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothOldHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWUSBHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.USBMouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriverX1 (3.0) [Support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Firewall: Path: /Library/StartupItems/Firewall
        RetroRun: Path: /Library/StartupItems/RetroRun
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Support]
        [invalid?]    com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [invalid?]    com.adobe.SwitchBoard.plist [Support]
        [loaded]    com.adobe.versioncueCS3.plist [Support]
        [loaded]    com.adobe.versioncueCS4.plist [Support]
        [running]    com.atomicbird.macaroni.launchd.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Support]
        [invalid?]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.prosofteng.DriveGenius.locum.plist [Support]
        [loaded]    com.skype.skypeinstaller.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Support]
        [running]    com.prosofteng.DGMonitor.plist [Support]
        [running]    ws.agile.1PasswordAgent.plist [Support]
    User Login Items: ℹ️
        CNQL1210_ButtonManager    ApplicationHidden (/Library/CFMSupport/CNQL1210_ButtonManager.app)
        System Events    ApplicationHidden (/System/Library/CoreServices/System Events.app)
        Mail    Application (/Applications/Mail.app)
        Firefox    Application (/Applications/Firefox.app)
        AdobeResourceSynchronizer    ApplicationHidden (/Applications/Adobe Reader 9/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Calendar    Application (/Applications/Calendar.app)
        Skype    Application (/Applications/Skype.app)
        Dropbox    Application (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    ApplicationHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        MouseWorks Background    Application (/Library/Application Support/Kensington/MouseWorks.prefPane/Contents/Resources/Support/MouseWorks Background.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
        Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
        EPPEX Plugin: Version: 3.0.0.0 [Support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
        ContentUploaderPlugin: Version: 1.2 [Support]
        iPhotoPhotocast: Version: 7.0
        RealPlayer Plugin: Version: Unknown [Support]
        PDEPrint: Version: 2.0 [Support]
        DirectorShockwave: Version: 11.5.2r602 [Support]
        PDF Browser Plugin: Version: 2.4.2 - SDK 10.2 [Support]
        FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        CANONiMAGEGATEWAYDL: Version: 3.0.0.2 [Support]
        DivXBrowserPlugin: Version: 1.3 [Support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
        Google Earth Web Plug-in: Version: 6.0 [Support]
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
        OfficeLiveBrowserPlugin: Version: 12.3.6 [Support]
    User internet Plug-ins: ℹ️
        QuickTime Plugin: Version: 6.5.1
        fbplugin_1_0_0: Version: Unknown [Support]
    Safari Extensions: ℹ️
        Ultimate [Installed]
    3rd Party Preference Panes: ℹ️
        ASM  [Support]
        DivX  [Support]
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        Macaroni  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Destinations:
            G-DRIVE Mini [Local]
            Total size: 999.86 GB
            Total number of backups: 7
            Oldest backup: 2014-07-09 00:13:07 +0000
            Last backup: 2014-12-10 22:18:57 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
             6%    WindowServer
             3%    firefox
             1%    mds_stores
             0%    mdworker
             0%    Skype
    Top Processes by Memory: ℹ️
        348 MB    firefox
        137 MB    Skype
        122 MB    mds_stores
        120 MB    com.apple.IconServicesAgent
        73 MB    Dropbox
    Virtual Memory Information: ℹ️
        1.26 GB    Free RAM
        1.74 GB    Active RAM
        477 MB    Inactive RAM
        543 MB    Wired RAM
        503 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Dec 29, 2014, 04:58:09 PM    Self test - passed
        Dec 29, 2014, 10:58:04 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105804_[redacted].hang
        Dec 29, 2014, 10:54:33 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105433_[redacted].hang
        Dec 29, 2014, 10:52:33 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105233_[redacted].hang
        Dec 29, 2014, 10:50:24 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105024_[redacted].hang
        Dec 29, 2014, 10:50:24 AM    /Library/Logs/DiagnosticReports/Skype_2014-12-29-105024_[redacted].hang

  • Include Air ( desktop app ) inside Mobile app permited by Apple / Android?

    Include Air ( desktop app ) inside Mobile app permited by apple / android?
    This is my question....:
    I need a "viewer" app run in a desktop machine... via p2p... ( done and working )
    I will like to include it in my iOS / Android Release, an then by example move it to the documents folder.
    Run iTunes and then copy the file from the shared document folder.
    Is this permited by apple / android / adobe ?
    Thanks....

    just tracing some kind of tests I'm doing.
    A couple of hours ago I left working 2 instances of my Application, leaving alone this computer: one instance is the Mac desktop version and the other one is the Web version. In this case both versions were running on the same computer (an iMac with OS X Mavericks):
    1) the AIR/Mac version have been recompiled yesterday with the new AIR4(.0.0.1619 - AIR 3.8 is used to fall in a equivalent way - no changes)
    2) the Web version have been compiled targeting FP 11.8 and it is running on Chrome browser with PepperFlash NOT disabled (which reports version MAC 13.0.0.80, the latest)
    I left working both the Mac and the Web versions of the Application opened on the pc screen (= not minimized) but kept totally behind some Terminal/ssh windows (= not on OS focus and the system is not asked to update any screen area of the app for sure).
    I came back after about 2 hours and I got the browser version connected&running (but it is not a rule) and I also found the AIR-based Mac version disconnected (uau, usually I found the app disconnected but with the screen freezed at last user look ->) which rapidly reconnects upon my click on the Apple dock icon (bring to front).
    Why these different behaviours? I ask to myself.
    The two versions of the software are TOTALLY the SAME application: except for the first Flash file (a 24kb swf file for the Web version and a 170kb dmg file for the Mac version), basically a platform-dependent loader, both versions loads the same remote swf modules. Of course t is AIR (or my first Flash file?).
    I attach the source code of the Mac version of the [first file] AIR-based application at the following url:
    http://92.63.230.100/others/others/wtstarter_mac.as.txt
    _Adobe_, is it a bug? isn't it?
    mc

  • Video not working on the first run of Android app

    I couldn't find any results regarding this problem. Maybe I'm just using wrong keywords as it is difficult to explain.
    Has anyone else encountered that video is not working on the first run of Android app? By first run I mean directly after installing. I'm using NetConnection, NetStream, Video objects and GPU renderMode. By working I mean it's not showing and can't hear the audio. I haven't yet debugged deeper so I don't know if the problem is actually related to the code loading the video.
    I've encountered the following issues, which may or may not be related, regarding the the first run and Video object:
    - The first run takes about 20 seconds to start. After that, the start is pretty much instant. If you clear app's cache, it again takes the 20 seconds to launch. The video works after clearing app's cache.
    - When creating the first Video object, the app flashes screen to black for a few frames. This is why I create a dummy Video object in the beginning.
    I use AIR 13, going to upgrade to 14, but I'm quite sure this problem and the issues have been for a while.

    I should add that we're using flv, not mp4. And they're progressively downloaded, not local.

  • I have a problem with my keyboard in Flash App on Android.

    I have a problem with my Flash App on Android, this app requires installing Adobe Air on Android before running. The keyboard pushing issue has troubled me for a while however I can't find a solution.
    As you know, while triggering any text box, the keyboard, no matter built-in one or others will push the screen up to a few then you can see what you are typing. However, on my app, when I trigger the built-in keyboard, it covers the half screen meanwhile I can't see what I am typing.
    Could anyone can give a light so I can completely this problem for 2 years? Is this something I can do with action script or Flash?
    Thank you.

    If you have a suggestion or answer feel free to leave a message as I will continue to check back here. Thanks.

  • Problrem running ADF 11g App LocalHost URL vs IP URL

    Hi all,
    we are using Jdeveloper 11.1.1.5 and ADF to develop or app. The issue happens in some machines, but not in others. All of them use Windows 7 Pro 32 bit, same updates, etc.
    We've checked IE9 configuration (must be IE) and is the same in all machines; all of them have the same proxy setup (corporate network).
    Problem is that when running app using localhost url, some events in some components don't execute. But they do when we run the same app using local IP url.
    It happens in a popUp window that has an editable table inside, among some other inputTexts. One of the columns on the table is a commandLink to delete the current row (so every row has its own delete link). And this is the event that de not get triggered (actionEvent). When I click on row-3-delete-link, that row gets deleted. Next I click on any other row's delete link, nothing happens. Only when i click on the add button (command button added to the popUp), table data gets refreshed.
    I've reading about this, and all i could find was the opossite behavior: app fails on local ip URL and works ok with localhost URL.
    Thanks in advance for ur help.
    Jaime

    Hi,
    have you checked the etc/host file on the Windows platform that don't work? As you say, the behavior is different on different machines and this difference is what you need to find for a reproducible testcase
    Frank

Maybe you are looking for