Examples of as3 application

Hi
Can you please give me the best sites/examples of as3 application..
Thanks

In addition to that:
http://active.tutsplus.com/
http://www.gotoandlearn.com/

Similar Messages

  • Examples of SAP Applications using Gamification

    Please share examples of SAP applications using gamification.
    Best regards,
    Rohit

    Gamification is the use of game thinking and game mechanics in non-game contexts to engage users in solving problems and increase users' self contributions.Gamification has been studied and applied in several domains, with some of the main purposes being to engage (improve user engagement, physical exercise, return on investment, flow,  data quality, timeliness), teach (in classrooms, the public or at work), entertain (enjoyment, fan loyalty), measure(for recruiting and employee evaluation), and to improve the perceived ease of use of information systems.A review of research on gamification shows that a majority of studies on gamification find positive effects from gamification. However, individual and contextual differences exist.
    Gamification uses an empathy-based approach (such as Design thinking) for introducing, transforming and operating a service system that allows players to enter a gameful experience to support value creation for the players and other stakeholders.Gamification designers address the user as player to indicate that the motivations and interests of the player are in the center of the gamification design.
    Gamification in a narrow sense is used in a non-game context, is built into the service system, and is aiming at an infinite experience. It does not aim at creating a game but offering a gameful experience. In a broader sense gamification also includes game context such as in serious games and finite and infinite games.
    Examples
    SAP Community Network
    Stack Overflow
    Yahoo! Answers
    LinkedIn
    Amazon.com
    MySugr
    Duolingo
    Zombies, Run!
    You can also check it here:
    http://www.bunchball.com/sites/default/files/case_study-gamification_sap_community_network-july2013.pdf

  • Example of Applet/application that..

    Can someone post an example of an applet or application that will open up an URL from a web browser as the output. I want this code to be running and not just a method

    Can someone post an example of an applet or
    application that will open up an URL from a web
    browser as the output. I want this code to be
    running and not just a methodThen write it yourself you lazy pathetic retard.

  • Integrated example of Deploy application.

    Hi everyone.
    I have a application with ADF BC and ADF Faces. And I work with preview 2.
    I can't deploy it to Standalone OC4J .
    Please provide a integrated example for me .Thanks!

    What version of OC4J are you trying to deploy to?
    For TP2, we recommend using just the embedded OC4J, or the embedded OC4J running in standalone mode.
    -- Brian

  • Need an example of AS3 to duplicate form

    I have been trying to solve this problem for 4 days to no avail. The entire site is done with the exception of this one hangup. I need to have 2 email forms on 2 different places in the timeline going to 2 different addresses. I have the PHP for both, but am having problems getting the 2nd form to function.
    When I try to reuse the same code for the 2nd email, I get a load of errors regarding duplicate functions.
    Can anybody edit, copy and paste an example of the following script (the one that works with the first form).  I believe can figure out the instance name changes, etc. if I have something to work with.
    I am a total newbie and don't know a thing about AS3 and I have a hard time understanding the explanations.  I just need a script that won't conflict with the first form as duplicating functions etc.  Thanks (PS: The string in red is for the 1st email form. I also have a PHP file "send_email_02.php" for the 2nd email form.
    stop();
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    send_button.addEventListener(MouseEvent.CLICK, submit);
    reset_button.addEventListener(MouseEvent.CLICK, reset);
    var timer:Timer;
    var var_load:URLLoader = new URLLoader;
    var URL_request:URLRequest = new URLRequest( "send_email.php" );
    URL_request.method = URLRequestMethod.POST;
    function submit(e:MouseEvent):void
    if( contact_name.text == "" || contact_email.text == "" ||
      contact_subject.text == "" || contact_message.text == "" )
      message_status.text = "Please complete all text fields.";
    else if( !validate_email(contact_email.text) )
      message_status.text = "Please enter a valid email address.";
    else
      message_status.text = "sending...";
      var email_data:String = "name=" + contact_name.text
            + "&email=" + contact_email.text
            + "&subject=" + contact_subject.text
            + "&message=" + contact_message.text;
      var URL_vars:URLVariables = new URLVariables(email_data);
      URL_vars.dataFormat = URLLoaderDataFormat.TEXT;
      URL_request.data = URL_vars;
      var_load.load( URL_request );
      var_load.addEventListener(Event.COMPLETE, receive_response );
    function reset(e:MouseEvent):void
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    function validate_email(s:String):Boolean
    var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/;
    var r:Object = p.exec(s);
    if( r == null )
      return false;
    return true;
    function receive_response(e:Event):void
    var loader:URLLoader = URLLoader(e.target);
        var email_status = new URLVariables(loader.data).success;
    if( email_status == "yes" )
      message_status.text = "Success! Your message was sent.";
      timer = new Timer(500);
      timer.addEventListener(TimerEvent.TIMER, on_timer);
      timer.start();
    else
      message_status.text = "Failed! Your message was not sent.";
    function on_timer(te:TimerEvent):void
    if( timer.currentCount >= 10 )
      contact_name.text = contact_email.text = contact_subject.text =
      contact_message.text = message_status.text = "";
      timer.removeEventListener(TimerEvent.TIMER, on_timer);

    There are several ways to do this. The way that I like best is using a User Setting.
    1) Pick a name for your setting.
    2) Enter the name of the setting in the web service configuration for the two (or more) web services that want to share the setting. Any portlet that needs to "see" the setting must have it specified its web service configuration.
    3) When a user clicks on a link in one of your portlets, set the setting: IPortletResponse.SetSettingValue(SettingType.User, "settingName", "settingValue")
    4) In another portlet, get the setting and display it: IPortetRequest.GetSettingValue(SettingType.User, "settingName")
    The nice thing about doing it this way is that even if your portlets are set to be cached "forever," they will change whenever you change the user setting (assuming you followed step 2).
    Hope this helps,
    Chris Bucchere
    [email protected]
    Bucchere Development Group
    http://www.bucchere.com| 415.516.3941

  • Examples for JClient application like Toystore?

    Hi,
    are there any examples applications for a JClient like Toystore?
    Perhaps an application with more than one form and more complex than displaying some dept-data?
    Markus
    Message was edited by:
    schmidtm

    Hi,
    am I right if I say that this document won't be available as a "preview"?
    It's urgent because we start a project and want to use 10.1.3. But with existing doc it doesn't make sense...
    Some "basic" examples could help me (but more real life, not only emp/dept and one form with one master-detail...). Perhaps an application with a menu bar from which you can open other forms, with a login dialog, etc.
    There must be such a more complex app or how do examples at Oracle look like?
    Markus

  • Qwerty example in as3

    does anyone have an example of a keyboard updating a text
    area in AS3?
    Thanks.
    Albert

    Better explanation of your problem would help. From what I
    get out of this, I would say you need to add listeners for the keys
    you want to invoke functions from.

  • Assembler code example to can application using 8051

    Hi,
    I am developing a CAN application using 8051 family microcontrollers. I need recognize the information coming through Rxdc pin. So far, I was not able to do this. Where can I get some assembler code example for this microcontroller? Someone has one ?
    Thanks.

    Hello-
    Unfortunately, we only provide source code for the NI-CAN boards in Windows under CVI and LabVIEW. The Philips site may have some examples. I believe that they actually sell a CAN chip that is integrated with an 8051.
    Randy Solomonson
    Application Engineer
    National Instruments

  • Example JAAS web application

    Hi all,
    I am new to using jaas technology in web application.
    I have seen some examples in sun which are working fine through command prompt. I am looking web examples .
    I have read the following article which explains good but where to keep the jaas.config file and configure details are not clear
    http://www.javaworld.com/javaworld/jw-09-2002/jw-0913-jaas.html?page=1
    It will be great if somebody gives some idea.
    Raghu

    Hi ,
    Can you tell me where to do this entery , in which file :
    -Djava.security.auth.login.config=D:/3110/conf/Jaas.config
    Which file has to be updated when you run jaas through web application .
    My Code is working fine for client side , but when integrated to web , error comes :
    Login Module is nort configured for Sample1 .

  • How can i use jw player in as3 application?

    i want to use jw player bcause i want to Allowing users to jump to any point in a movie without having to wait for the entire movie to download .
    dose anyone now how can i do it ?
    so you have any example source?

    :  http://www.longtailvideo.com/support/jw-player/28854/using-rtmp-streaming

  • Example of Level Application

    I have currently doing a project for college. It consists of 2 tanks and an Ultrasonic Level Probe in 1 tank. I want to be able to control the Level from 1st tank to the 2nd tank via a DAQ in Labview. Does anyone have a program for this or know where i will get this.
    I am only new to LAbview and dont know where to start to program this.
    Your help would be appreciated.
    B

    Hello,
    What you are trying to achieve should be relatively simple within LabVIEW depending on the type of measurement that your probe will return. Is it a straightforward voltage or numeric then you should be able to use simple DAQmx tasks to do this. I would recommend using the examples within LabVIEW by navigating to Help > Find Examples and go to Hardware Input & Output >  DAQmx > Analouge Measurement or Analouge Generation. Within these folders are different techniques on acquiring and generating analouge signals.
    Its likely that you will acquire your signal for tank 1, perform some analysis or computation then generate a signal for the second tank's level, is this correct? If you are simply measuring the level of the 2 tanks then this will only require Analouge Measurement.
    If you become stuck then post back with your LabVIEW and DAQ versions aswell as your hardware information.
    Regards,
    Tom
    NIUK

  • Example of XLA application

    Hi All,
    I gonna to create a XLA application. Could you please share some information about it.
    Thank you!

    There are sample programs you can follow in the TimesTen Quick Start Guide http://download.oracle.com/otn_hosted_doc/timesten/1122/quickstart/html/main/home.html
    The Quick Start Guide is shipped with the TimesTen product. It's an option at the installation time. If you didn't install it, follow the above link to check out a lot of content.
    Specifically, sample program using XLA/JMS is syncJMS.java in the following link:
    http://download.oracle.com/otn_hosted_doc/timesten/1122/quickstart/html/developer/jdbc/jdbc.html
    For ODBC, sample program xlaSimple.c
    http://download.oracle.com/otn_hosted_doc/timesten/1122/quickstart/html/developer/odbc/odbc.html
    Susan
    Edited by: scheung on Apr 19, 2012 10:44 AM

  • Is this possible in AS3?????  AS3 commercial application with speech, avatar real-time animation and innovative GUI

    Hi,
    Check out this awesome AS3 application from Umanify:
    http://www.icex.es/icex/cda/views_icexv3/asistenteVoz/asistenteVoz/0,6457,,00.html
    You can drag&drop the GUI of the assistant on the web
    page with the mouse...they are using transparent layers...and the
    avatar animation is lipsync with the speech....even they can copy
    and paste text from the web page and read it aloud with "lee"
    button...
    are those features possible in real-time with AS3??????
    how???

    Hi,
    Check out this awesome AS3 application from Umanify:
    http://www.icex.es/icex/cda/views_icexv3/asistenteVoz/asistenteVoz/0,6457,,00.html
    You can drag&drop the GUI of the assistant on the web
    page with the mouse...they are using transparent layers...and the
    avatar animation is lipsync with the speech....even they can copy
    and paste text from the web page and read it aloud with "lee"
    button...
    are those features possible in real-time with AS3??????
    how???

  • I can't to download xml example application PRODUCT CATALOG

    Hi, i'm a registered user, but i can't to download sample product catalog, http://www.oracle.com/technology/tech/xml/xdk_sample/ProductCatalogSample.html
    Please, give me advise - how to download it!
    Thanks

    Thank YOU!!!!!!!!!!!
    Can you also give links to next examples:
    * customer managment application sample and employee managment information using xsql and building product orders
    *Employee Information Management using the XSQL page publishing framework
    *Building Product Orders with New Oracle9i Database XML Features and the Oracle9i XDK
    http://www.oracle.com/technology/sample_code/tech/xml/index.html

  • Framework for creating Flash applications in AS3

    Can anyone suggest a good framework for developing Flash AS3 applications? I have worked on two Flash frameworks till date: GAIA and PureMVC.
    While GAIA is more focused on Website development and I find PureMVC a bit complex as I was not able to find anywhere the best approach to use the framework efficiently.

    Very delayed reply on this one, but I thought still worth mentioning a year after the fact.  Over the last couple of years, working in a number of ad agencies, I've progressively built my own Flash CMS framework called Redblox (http://redblox.ca). 
    It's a framework I'm positive you've never seen the likes of before!  Redblox uses XML files as a blueprint to recursively build you're entire website.  Redblox framework concentrates on separating core functionality from behavioural functionality (see website for more info on that). Every component (ie, textfield, image, menu, layout, scrollbar, video player, everything!) is represented as an XML node within a larger XML structure and therefore its parameters, animations, behaviours and functionality can be added/updated/deleted directly within the XML. Consequently, using Redblox' integrated visual XML Editor allows users the ability to make these changes directly at runtime.  Simply CTRL+CLICK on any item/component while viewing the website in editor mode and the Redblox XML Editor tool will display all the information on that component to add/update/delete. Once users have made their changes, users can then save the XML blueprint of the website back to file.  Its really that simple.
    I've only recently made this framework open-source, wanting to take a new direction in its development.  I've used this framework to build microsites for Nike Training Canada (Olympics & World Juniors Hockey), Alexandre Keiths, Rogers, Purina to name a few.
    Just check out the site, you'll love it right away!
    Cheers,
    Jason Thomas

Maybe you are looking for

  • 8 questions from new owner of Satellite Pro L300

    Hello all forum users! I bought a new Toshiba laptop, the Satellite Pro L300, and have until 14 January to test it - if it looks like it isn't working properly I'll return it to the store where I purchased it. Here's a list of questions I have: 1. Ev

  • MAJOR issue with ITUNES 7

    I use TOtal Recorder to record webcasts. Total Recorder requires that the sound card run thru TR. PREVIOUSLY to this version, I could run ITUNES and play anything with it (mp3, cds, etc) thru ITUNES with the TRec setting as above. NOW today, i upgrad

  • Creating multiple digital signatures

    When I create multiple freehand signatures in an adobe acrobat document there is an issue. Can I create multiple signatures and place them on the document without having the original signature be listed as part of an older revision? It marks a new si

  • How to center text in Pages to correctly show on iBook reader

    Hi, I am trying something really easy but could not solve it. Hope someone can help. Ok, I know that if I choose ''Chapte Name'' as a pharagraph style, iBook reader automatically puts it into a new page, so the new page starts with the chapter name o

  • BDC not working in Background mode

    Hi All, I have created a BDC. It is working fine in forground mode but not woking in background mode. Please any one know what could be the problem. thanks, Shweta