Load an external clip in all connected user ?

hi everybody
i have a problem and I will try to explain.. :
i load a external clip on the stage (with loadClip), and i want for all users connected (FMS) on this time to load also this clip ?
how can a triggered the load of the clip to other users ?
any help ?

Hi,
    You can try this.
<mx:HTTPService url="https://localhost/external.php" method="POST" useProxy="false" id="httpService"
            resultFormat="text" result="resultHandler(event)"/>
public function resultHandler(evt:ResultEvent):void
                var res:String=evt.result as String
Instead of res you can use your variable to assign the php result.
Thanks
Jayagopal.

Similar Messages

  • Idea of sending a message for all connected users.

    Dears,,,
    I'm trying to develop through oracle forms an idea of sending a pop-up message to all connected users.
    Example, I need to inform users to quit in 5 minutes due to a restart to the application server.
    I thought about a timer trigger that will check every 5 seconds or 10 seconds a value somewhere in a table. But I don't want to use the timer triggers associated in oracle forms.
    Is there any idea ?
    Please let me know.
    Joe

    Use Iframe tag.
    For this:
    Add an “IFRAME” in the base html file used (for example basejpi.htm file)
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Forms applet definition (end) -->
    %HTMLafterForm%
    <IFRAME SRC="/forms/java/iframe.html">
    </BODY>
    </HTML>
    Then create an html file named "iframe.html" with the following content :
    <HTML>
    <HEAD>
    <meta http-equiv="refresh" content="10">
    </HEAD>
    <BODY>
    <H1>Please disconnect, The system will go Down !!!!</H1>
    </BODY>
    </HTML>
    Every time you would like to send a message, just add it in the iframe.html file ans users will see it.
    The iframe size can be customized.

  • Loading an external clip(swf) and removing existing one

    Hi All,
    I am tearing my hair out; I simply want a button when
    clicked, to load an external swf. But I just can't seem to get my
    head around it. Here is my code:
    butt1_btn.addEventListener(MouseEvent.CLICK, swf1);
    function swf1(evt:MouseEvent):void
    loadSwf1.load(new URLRequest("swf1.swf") );
    butt1_btn.buttonMode = true;
    Any help with this would be much appreciated!
    Kind Regards,
    Boxing Boom

    Hi,
    Sorry for late response. I used the following code, which
    loads another swf and replaces the original swf;
    computerProtection_btn.addEventListener(MouseEvent.CLICK,
    removeMain, false, 0, true);
    var ld:Loader = new Loader();
    ld.load(new URLRequest("computerProtection.swf"))
    function removeMain(evt:MouseEvent):void {
    this.parent.addChild(ld);
    this.parent.removeChild(this);
    Now, the problem is that when I use the same code to get back
    to the original, it doesn't work. Obviously, I have changes the
    button name and the requested swf.
    I get an error stating something about the main timeline.
    Funny, how it works only once, loads a swf but won't load another
    swf file.
    I appreciate the time this issue has taken. But an answer
    would be nice!
    Kind Regards,
    Boxing Boom

  • Display all connected user (application)

    Hi there,
    I'm searching for a solution how to display all currently connected users.
    In a session I can use :APP_USER to geht the actual user.
    Is there an array of APP_USERS or something like this?
    Greetz
    Florian

    Florian - With APEX, users are only "connected" for the duration of a page request during which period a database session is obtained and used to execute the page and return the results to the user's browser. This connection usually lasts less than one second. You may be wanting to know which users (with or without named accounts) who have issued requests "recently" actually plan to issue another request "soon". That criteria is pretty fuzzy. Search this forum for "active sessions" for other posts about this topic.
    Scott

  • Is it possible to load an external sql script by connecting to a mysql data

    hi,
    this is ayesha parween.
    Basically we manually connect to the mysql server and go to the administrator and take the back up of the file
    and load the sql script for creating a schema creating the tables and populating the tables with the data.
    Is it possible through some java jdbc for connecting to the mysql server and creating the schema and creating the table structure and populating the tables with data.
    And if there is any error display some message.
    Regards,
    Ayesha.

    hi,
    this is ayesha parween.
    Basically we manually connect to the mysql server and go to the administrator and take the back up of the file
    and load the sql script for creating a schema creating the tables and populating the tables with the data.
    Is it possible through some java jdbc for connecting to the mysql server and creating the schema and creating the table structure and populating the tables with data.
    And if there is any error display some message.
    Regards,
    Ayesha.

  • Loading an external movie clip

    Hi team,
      Last time I wanted to load an external clip I could do it like this
    on (release) {
              unloadMovieNum(1);
              loadMovieNum("whatever.swf",1);
    So now I want to achieve exactly the same thing in AS3,
    I have been looking at examples on the web but am getting all sorts of errors and basically don't know what I am doing.  I also want to know how to navigate to .swf files in a file structure, as I have to build an old school fscommand file structure for a cd-rom.
    Any and all help greatly appreciated.
    Cheers,
    Sub

    Hey worked it out guys!
    var myLoader:Loader = new Loader();                     // create a new instance of the Loader class
    var url:URLRequest = new URLRequest("whatever.swf"); // in this case both SWFs are in the same folder
    myLoader.load(url);                                     // load the SWF file
    addChild(myLoader);                                     // add that instance to the display list, adding it to the Stage at 0,0
    But now I need to know.. How do I unload it?
    Cheers
    sub

  • Loading External Clips: Why is a new "instance" clip created?

    When I load an external movie clip using loadMovie, or the
    MovieClipLoader class, there is always a subclip named "instance"
    followed by an instance number attached to whatever clip I am
    loading the external swf into. For instance, I have a clip on the
    stage called "container". I load an external clip like this:
    container.loadMovie("clip.swf");
    "clip.swf" ends up in container.instance01, rather than
    container. Is there a way to load a clip into container, the same
    way using attachMovie with a local library clip would?

    quote:
    Originally posted by:
    Rothrock
    So obviously in your clip.swf there is a clip at the top
    level containing all your content and you haven't given it a name.
    I've seen this before, but can't quite recall the crazy thing you
    are doing that none of us here would ever think of.
    Something like, you aren't exporting or publishing from the
    file menu – instead you are doing some export directly from
    the library?
    That was the problem! I was exporting the swfs directly from
    the library. For some reason when you export a movie directly from
    the library and then load it into another clip a generic instance
    name is created on top of the clip you are loading it into. When
    you publish a clip normally and load it into another clip, it
    retains the instance name. Problem solved, thanks!

  • LoadMovie- loading an external swf into movieclip in AS3

    Im extremely frustrated.........im trying to do something
    that was once very simple, which has now become over complicated
    unecessecarily.....i want to do a simple loadMovie type action and
    load an external clip into a movieclip called ph. my AS2 code would
    be:
    loadMovie("ExternalMovieClip.swf","ph");
    or
    on(release) {
    loadMovie("ExternalMovieClip.swf","ph");
    This no longer works. Can somebody tell me the new code that
    i would use with AS3 to do exactly what i just demonstrated? I
    honestly dont even want to touch AS3. The only reason i want to use
    it is because it makes skinning the components SOOOOOO much easier
    than AS2. That is the one and only reason im trying to convert to
    AS3. All the new load movie AS3 examples ive seen on google look
    like half a page long to do what i used to do in 2 lines. There
    must be a simpler and much easier way. I am a designer. It looks to
    me like Adobe went back to making flash for programmers only again
    leaving us designers out of the mix. Someone please help me, im
    desperate. I also have other old code that im sure im going to have
    to convert to AS3 for it to still work, and i may eventually need
    help with that as well, but ill stick with this loadMovie problem
    for now. Any and all help is appreciated. Thanks

    have a look here:
    http://www.smithmediafusion.com/blog/?p=381
    use this:
    var i =new Loader();
    i.load(new URLRequest(”yourSwf.swf”));
    myMC.addChild(i)
    myMC is the name of your clip on the stage.
    Dan Smith > adobe community expert
    Flash Helps >
    http://www.smithmediafusion.com/blog/?cat=11
    http://www.dsmith.tv

  • IDM 8.0 : See connected users on Identity Manager ?

    Hi everybody.
    My client wants to see all connected users on IdM in order to upgrade the application without disturbing them.
    It is possible to see connected users on IdM ?
    If it's true, can you explain me the steps to achieve it ?
    Thanks in advance.
    Florent
    Edited by: flobR on Jun 5, 2009 2:05 PM

    Florent...
    Sun Identity Manager does not give you the ability to see who is currently connected to the application. The key is that SIM is simply a web application running on the J2EE application server. Most J2EE application servers should give you some functionality in this area. Check the documentation for your application server.
    If your application server is tomcat, you'll likely need to do some custom coding and create an implementation of HttpSessionListener to track user sessions.
    Thanks...
    -Lester
    [http://www.identityworker.com|http://www.identityworker.com]

  • Message Broadcast to all connected sessions

    Hi,
    What's the method to send message to all the user whose session are active.Need to send:
    -- Message to all users.
    -- Message to single user.

    cooluniquesunny wrote:
    I want to know:-
    If such feature of Broadcast available on Oracle 11.0.2 G or not. I want it on DB level, not on OS level.The Oracle server session is by default "passive" - meaning that such a server session will only execute and respond to explicit commands from the client.
    We can extract the connected user details from V$SESSION. Do with this info, can SYS can send a message to all connected users (Has to be done on DB level).You cannot push a server session to send "unexpected" data to the client, that the client has not requested. So you cannot force a server session to send a message to the client it is servicing, when that client has not explicitly requested that message from the server.
    It is also more complex with shared server sessions. In such a case there is no dedicated server process servicing that client. The client is connected via a dispatcher process (a single dispatcher can handle many client connections). A client request is passed by the dispatcher, via a virtual circuit, to an idle server process in the shared server pool.
    In this case, how is the unsolicited message from SYS to be send to a client? Who is going to send the message? Which shared server process? Keeping in mind that none of the shared server processes are servicing a single client sesion, and that a single client session can be serviced by a number of different shared server sessions during its lifetime?
    Bottom line. What you want to do is not possible. Oracle client sessions are not like Unix tty sessions where a root process can write a message to the display devices of all connected tty sessions - like the wall command does.
    Functionally - the business reasons for wanting this type of functionality needs to be clearly stated in detail in order to suggest possible Oracle solutions to you.
    Technically - Oracle provides a number of methods for a client to subscribe to database "messages". The most common interface for this is DBMS_ALERT. There are also more sophisticated messaging systems in Oracle like Oracle Streams Advanced Queuing (AQ). And more primitive ones like Database Pipes.
    The choice of technical solution being fully dependant on the functional requirements.

  • Disconnect Connected Users

    Dear
    How to kill the connected users' session.
    I need to do some activities on Production System and need to disconnet all connected users.
    I used SM10 to lock all users but this will disallow new connection.
    however, some users are also connected.
    kindly advice, I am following the correct steps and how to disconnect connected users.
    Regards:

    Dear
    When I select any user and click on Session, there would be a popup I click on end Session. I got a error "Make a Selection".
    what does it mean????????
    regards:

  • How can I load an external SWF into a movie clip that's inside other movie clip?

    Hi.
    I creating my first flash (actionscript 3.0) website but I'm
    stuck with a visual effect I want to create.
    I have a window on my website called contentWindow. Every
    time you click a button this window is supposed to leave the stage,
    load the requested content and return to the stage.
    The sliding window is a movie clip with 83 frames, 21 to
    enter the stage, 21 to leave the stage again, 20 for nothing (its
    just to simulate the loading time) and 21 to return to the stage.
    Now my goal is, when the user clicks on a navigation button,
    the window exits the stage, loads an external SWF with the content,
    and then returns to the stage.
    I've the "window" movie clip with an instance name of
    "contentWindow". Inside there is another movie clip with an
    instance name of "contentLoader". The content that the user
    requested should appear inside the "contentLoader".
    Now, when the contentWindow leaves the stage, I get this
    error message:
    quote:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at rwd_fla::MainTimeline/trigger()
    If I switch
    "contentWindow.contentLoader.addChild(navLoader);" for
    "contentWindow.addChild(navLoader);" it works fine, but the
    external SWF doesn't move with the window.
    How can I load an external SWF into a movie clip that's
    inside other movie clip?

    Hi,
    Recently, I have been putting together a flash presentation.
    And I am just wondering if the following might help you, in your
    communication with the said swf file:
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    onComplete);
    function onComplete(event:Event):void
    event.target.content.thinggy_mc.y -= 100;
    Not the best example, but this allows you to target a mc
    within an external swf file. I think if you look up this code, you
    will have an answer ;)
    Kind Regards,
    Boxing Boom

  • Firefox unable to connect after brand new first time installation, IE can load fine, I have followed all directions for firefox can not connect but other programs can, and it did not solve the problem

    I have downloaded Firefox for the First time, Firefox can not connect to any website (Unable to COnnect), but IE can. I have followed all the directions on the page for firefox can not load when other programs can (Firefox connection settings,IPv6,DNS Prefetching, firewall settings)
    == This happened ==
    Every time Firefox opened
    == I downloaded it for the 1st time ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MSN Optimized;US)

    http://support.mozilla.com/en-US/kb/Firewalls
    http://support.mozilla.com/en-US/kb/Cannot+connect+after+upgrading+Firefox
    http://support.mozilla.com/en-US/kb/Error+loading+web+sites
    http://kb.mozillazine.org/Error_loading_websites

  • After a UPSA connection edit, all my user profiles are "missing from import"

    Hi there,
    I've got a problem with my User Profile Service Application. I edited my existing connection to add some new OU containers to the list, after the networks team had done some
    restructuring to reflect an organizational change. Then I ran a Full Synchronization. But now all of my user profiles show up under the "Missing from Import" list. I still have 943 profiles in SharePoint, and not surprisingly, people search isn't
    working. I suspect that I did something wrong in the process of selecting the Users OU containers in the AD tree (in Populate Containers), but I cannot see what, since I replicated the selections that had been made for an unchanged department, to
    the ones that had been reorganized.
    Any help appreciated.
    Tom
    SharePoint Systems Officer, Capital Regional District, BC, Canada

    Hi  Tom ,
    According to your description, my understanding is that all the user profiles are showing up under "Profiles missing from import" list after you edited the existing User Profile Synchronization
    Connection.
    For your issue, it can be caused by that your User Profile Synchronization Connection is unable to connect to  your AD. Please make sure  the account used to connect to Active Directory to import
    profiles has access to the Organizational Unit you are importing from. By default this account is the Default Content Access account. And the Default Content Access account  must be a domain user account and it must have read access to external or secure
    content sources that you want to crawl by using this account.
    Then you need to check if the “Profile Synchronization” job status is “succeed”.
    Also please check the “Sync filter” for the service, and make sure the account are not include in the Exclusion Filter for Users.
    For a workaround, you can just delete the existing connection , recreate it and perform a full synchronization.
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • I have multiple devices (imacs, lap tops and ipads) all connected to a NAS server.  Can I create a user for myself and one for my wife, and each have our own apple ID, and Itunes accounts, but all share the same media on NAS drives?

    I have multiple devices (iMacs, Lap tops, Ipads) all connected to a Nas Drive.  Can I create a user for myself and one for my wife and we each have our own apple ID's, Itunes etc, but share the same data on the hard drives?  So when she logs in, and sync's her ipads, they will sync with her stuff and when I do the same under my user account, on the same device, my ipads will sync with my stuff?

    You can share the same Apple ID for purchasng form the iTunes and app stores without any problems, but you should all used separate iCloud accounts with separate Apple IDs.  (You are not required to use the same ID for iCloud and other services as you do for the iTunes store.)  This will prevent you from ending up with merged data.  You should also use separate Apple IDs for iMessage and FaceTime or you will end up getting each other's text messages and FaceTime calls.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/, as well as this video: http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l.

Maybe you are looking for

  • Sync Music will not sync voice memos.  Why?

    When I check "include voice memos" in Sync Music, and sync music, Voice Memos do not move into iTunes.  Memo is 33 minutes but that does not really seem, to me, to be an issue.  A search does not find it nor is there a Voice Memo Folder created in iT

  • How to get the Folders and subfolders collection in Project Manager

    Hi, I am trying to get the folders and subfolders collection in Project Manager, so that I will be able to loop through the collection and be able to create a project under the appropriate folder. Any suggestions? Thanks. Bhanu

  • Webserice to JDBC BPM scenario

    Hi Experts, I have created the below webservice to JDBC BPM scenario. IR Data Type 1. DT_SOAPRequest 2. DT_SOAPResponse 3. DT_JDBCRequest 4. DT_JDBCRequest_response Message Type 1. MT_SOAPRequest 2. MT_SOAPResponse 3. MT_JDBCRequest 4. MT_JDBCRequest

  • Min. row height table style

    A new table in Indesign is by default set with a minimum row height of 1.058 mm. This 'minimum' feature is also visible in a table style (the 'exact' feature is not for some reason). When I import a table from Word for example, it's row height might

  • Material master definition

    Sir, at which level,material master is defined? Can we maintain same material with two different names in two company codes of the same client?