Animation in Forms 6i (like Flash)

Please anybody can help me. How to embed animation in forms 6i.
like (forms 6i).
pls give me complete coding or detail bcaz i am new guy in
Oracle.
If answer is ActiveX or OLE . please explain how to use them.
Muhammad Faisal

Hi,
the only chance I see is with a Java Bean that support Flash animations. I did search the Web a while ago when this question came up the first time, but wasn't able to find a bean that supports a recent version of Flash.
Frank

Similar Messages

  • Animation with motion path like flash

    Hi at all,
    is it posible to animate an object in circle move like motion path in flash?

    @resdesign
    If you were right, the example below won't work ;-)
    Rotation is  rotating an object around its origin. If the origin is outside the object, it moves in a circle.
    Here is the example: http://mcmm.com/edge/circular/circular.html
    It has been done like in my description above.
    All objects in the example are simply animated with rotation. The earth rotates around its origin and the planets do the same.
    The only difference between earth and planets is that the earth has its origin untouched while the planets have their origin outside.

  • Please help! We got a used Mac Mini and we don't have the former owner's password, so we can't install anything like flash player.  Does anyone know how to get around this?

    Please help! We got a used Mac Mini and we don't have the former owner's password, so we can't install anything like flash player.  Does anyone know how to get around this? I don't know how to wipe the hard drive, and the support online doesn't seem to work.

    As posted previously:
    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    If installing Leopard the process is similar in some respects.  If you wish to begin anew then after selecting the target disk click on the Options button and select the Erase and Install option then click on the OK button.  To install over an existing system do the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Can Edge animation scale/resize like Flash and Canvas

    One of our biggest concern right now is animation made with Adobe Edge can't scale and resize like Flash or Canvas (and we are not talking about fluid or responsive design) Is that true? Our animations need to allow user zoom in or zoom out without any restrictions, can we build our animation with Adobe Edge?
    Thanks

    The best solution I've found is to override the width of your stage div in CSS to auto!important. Then, use media queries to resize your div, using the CSS zoom property (and scale transform for Firefox).
    /*  Example CSS for an Edge stage div of 800px width  */
    #MY-EDGE-STAGE-DIV{width:auto!important;max-width:800px;}
    @media screen and (min-width: 1px) and (max-width: 480px)
              #MY-EDGE-STAGE-DIV{zoom:0.5;-moz-transform: scale(0.5);}
    @media screen and (min-width: 481px) and (max-width: 600px)
              #MY-EDGE-STAGE-DIV{zoom:0.6;-moz-transform: scale(0.6);}
    @media screen and (min-width: 601px) and (max-width: 800px)
              #MY-EDGE-STAGE-DIV{zoom:0.8;-moz-transform: scale(0.8);}
    @media screen and (min-width: 801px) and (max-width: 50000px)
              #MY-EDGE-STAGE-DIV{zoom:1;-moz-transform: scale(1);}

  • Embed/build a big "html/flash" form in a flash doc

    How I embed/build a big "html/flash" form in a flash doc,
    that needs scrolls ? What to use ? Give me and an example
    design/code ?

    Nickels55 wrote:
    > Not too difficult.
    > First create your button or movieclip with the big
    arrow.
    > Give your flv playback component an instance name like
    vid.
    > Create a new layer above the video layer. Drag your
    button/movieclip to the
    > stage.
    > Give the button/movieclip an instance name like
    vidcontrol.
    >
    > Put this actionscript on the frame (not attached to the
    button or component):
    >
    > vidcontrol.onPress = function(){
    > vidcontrol._visible= false; //makes arrow
    button/movieclip invisible
    > vid.play(); //makes video play
    > }
    >
    > Tested code and concept and it works perfect.
    Brilliant, works like a charm. Thanks very much, Nickels55!
    Is there a way I can add something like your
    "vidcontrol._visible=
    false;" to the "Mojaveexternalall.swf" skin as well? Right
    now if I
    click on the big arrow, everything works fine, but if I click
    on the
    Mojaveexternalall's small Play arrow instead, that new button
    layer
    doesn't disappear.

  • Error in CF form in a Flash format...

    Hi
    I receive the following error when loading a CF form in a
    Flash format...
    Errors, warnings or exceptions were found when compiling
    /mystore/admin/purchases_not_processed.cfm. Visit the online Flex
    documentation or API reference for further information.
    1 Error found.
    Error
    C:\Inetpub\wwwroot\MyStore\admin\purchases_not_processed.cfm:4
    A function in the code exceeds the 64K byte limit (actual
    size = '122810'). Since the problem occurs in the
    compiler-generated deferred instantiation code, please
    refactor/componentize portions of this document.
    How do i overcome this error?
    I hope someone can assist with this...
    Thanks in advance...
    Regards
    Mr Pappy

    Hi
    I receive the following error when loading a CF form in a
    Flash format...
    Errors, warnings or exceptions were found when compiling
    /mystore/admin/purchases_not_processed.cfm. Visit the online Flex
    documentation or API reference for further information.
    1 Error found.
    Error
    C:\Inetpub\wwwroot\MyStore\admin\purchases_not_processed.cfm:4
    A function in the code exceeds the 64K byte limit (actual
    size = '122810'). Since the problem occurs in the
    compiler-generated deferred instantiation code, please
    refactor/componentize portions of this document.
    How do i overcome this error?
    I hope someone can assist with this...
    Thanks in advance...
    Regards
    Mr Pappy

  • When opening in filled PDF form, the data flashes and then blanks.  Adobe  Reader XI

    When opening in filled PDF form, the data flashes and then blanks.  Adobe  Reader XI
    I filled in this form with important data.  And saved it.  I have since opened it and printed it again.  Now when I open it the fields become blank  I can see them for a split second as it clears them.
    I believe I have updated to Reader XI since I filled it in.

    Hi Pat,
    Are you using Adobe Reader XI? And not Acrobat. It does not ask me to save the form if there are unsaved changes.
    I have used previous versions of reader for saving this form data and it did allow me to save it with ctrl+s. And those versions did prompt me to save the changes before closing.
    I guess I should not have updated the reader.

  • Is it possible to override built-in forms procedures like call_form?

    hi, is it possible to override built-in forms procedures like call_form? i want to override an existing built-in procedure so i don't need to change all my .fmbs. thanks in advice

    Hi,
    You cannot override them. However, you can create a procedure within the package with the name call_form and use it as package_name.call_form instead of call_form (use the search and replace functionality to replace the call_form with package_name.call_form).
    -Arun

  • My iPad screen is jittery, strobe-like flashing.  Suggestions?

    My iPad screen is jittery, strobe-like flashing.  Suggestions?

    Not normal. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • To offer integrated forms, so like Jotform, there are templates that can be used and upload options to FTP client as well as other built in widgets.

    To offer integrated forms, so like Jotform, there are templates that can be used and upload options to FTP client as well as other built in widgets.

    What you need is merged help.
    You generate a parent and all the child projects. You always install the parent and then whichever child projects you require. The TOC, search and index automatically adjust. See the pages on my site.
    Note though that many people take another view to your Product Development. Show all the help and then people see information about something and realise they need it!
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Is there a software like flash player for ipad.what software do I exactly need in order to play videos from websites?

    Is there a software like flash player for ipad.what software do I exactly need in order to play videos from websites?

    NKafafi88-
    There may be a couple Apps that may help, but I understand they don't work very well.  The best solution would be to contact the owners of the websites and let them know they need to update their site.
    The alternative I use, is to download the problem video onto my computer, and convert it to M4V or MP4 format using a program like HandBrake <HandBrake>.  Then it can be added to iTunes and synced with the iPad.
    Fred

  • What about older versions of flash like flash mx or flash8

    Do you think that flash mx and flash 8 are outdated to learn for beginners? What do you suggest to a beginner entirely new to flash, the new ones like flash CS4 or  begin with older ones like flash 8 and slowly build up?

    Start with the newest version. Also start using the latest version of the scripting language. Use AS3. There is no need to learn to use AS2. It will not help you in the future any more than learning to groom a horse will help you to learn to drive a car.

  • How Do I Insert 2 Email Forms in a Flash Site

    Let's say I wanted to have 2 email forms in a flash site. One to go to one inbox and another to go to another inbox. That's easy enough to do by editing the PHP, but not the AS3. The following code works for the first email form, but not the 2nd because of duplicate actions.  So my question is, "What do I need to edit in the following AS3 code to get it to submit a second form?"  Thanks.
    [as]
    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);
    [/as]

    Wouldn't you just change instance names completely?

  • Do you know if solid state storage DD of MacBook Pro is like flash Storage of MacBook Air?

    Do you know if solid state storage DD of MacBook Pro is like flash Storage of MacBook Air? And do you know the specifications of MacBook Pro and MacBook Air RAM?
    Thanks
    Jorge

    eww wrote:
     .... and the flash storage in a MacBook Air is not user-removable or upgradeable.
    Uh, iFixit and the manufacturer of the upgradeable SSD Flash Storage for the 2010-2011 MBA would respectfully disagree. Yes, the volatile memory is not upgradeable, but the storage SSD (NAND Flash) is as upgradeable as it gets.
                         Scroll to the right side of the image and read the caption-------->

  • Is there a way to make a tabbed form? Like an Excel workbook, have named tabs.

    In Excel you can have multiple tabs with multiple pages connected to it.  Is it possible to create a similar experience in Adobe forms?  like how there are tabs in Livecycle to switch between Design, Master, and Preview.  Can you make tabs in the form itself?
    Thanks!

    Here's one attempt at trying to implement tabs,
    https://workspaces.acrobat.com/?d=UsJsmWCaYMMtXiGTmqmzew
    Regards
    Bruce

Maybe you are looking for

  • Instead of getting PDF got XML output Bi publisher report

    Hi , While i run the concurrent request i got the below : Executing request completion options... Output file size: 335 ------------- 1) PUBLISH ------------- Beginning post-processing of request 3715769 on node CORPT228V at 14-SEP-2012 07:50:11. Pos

  • OnMessage implementation or regular MessageConsumer which one is better?

    I am trying to figure out which way I should go in terms of reading messages from the Queue. In our project we use everything P2P domain no pub/sub domain. Should I use regular MessageConsumer which constantly polls for new messages or should I use o

  • IPhoto/iPod and Syncing Albums

    Using OS X.3.9 and iPhoto 6.x: When I sync iPhoto with my new iPod (video), will I be able to browse the photos on the iPod by the same Album names used in iPhoto? Will the iPod list my Albums? For example, can I present a slideshow of a certain Albu

  • Two computers accessing the 802.11n Basestation - problems . . .

    While trying to get my base station to allow me to "see" my new HD, I kept messing with the settings in the base station set-up. I am NOT a networking specialist by far . . . Anyway, I now have access to the disk, but anytime one of our other compute

  • INNER join with dynamic table name ?

    Hi, I have a problem with this statement. DATA: g_dso_bic_dofr TYPE tabname. SELECT t1~/bic/ziparomr        t2~/bic/zifremom INTO (wa_rater_paromr-/bic/ziparomr,        wa_rater_paromr-/bic/zifremom) *   FROM /bic/azd0bfr5100 AS t1     "equivalent to