How to play flash in java

Hi,
I have a installer in java swing. I was wondering,is there some way by which I can play a flash animation file inside this app.
I searched on google,but couldn't find anything that lets you play flash embedded in java swing.
Anybody,any clues???

You can play them using JMF. But i think it supports only flash version 2.

Similar Messages

  • HOW to play flash inside java application program

    Do java provide any API for playing flash inside java application ?Pleae give me some help about it .Thank You ..

    pingyi wrote:
    Do java provide any API for playing flash inside java application ?Pleae give me some help about it .Thank You ..bro... I found out there from the internet... but you need to purchase it.
    hope it meets your expectation...
    JFlashPlayer is a Flash Player API Java package that lets developers play and interact with Adobe? Flash Player movies within Java applications. Advanced animations can improve the user experience and add to the professional appearance of an application. JFlashPlayer allows programmers to quickly add Flash movies to their Java application development for Windows.taken from: JflashPlayer

  • How to play flash player in I pad

    How to play flash player in I pad

    IOS device do not support Flash
    However Skyfire, Photon, iSwifter, Browse2Go and Puffin Web Browser will provide limited Flash capability

  • How to play flash in an C++ desktop application?

    I am designing an application that is written in C++ but a
    quarter of the screen has to play flash so that the flash part can
    communicate with Flash Media Server to get FLV video playing, how
    can this be done?
    Is there a class in C++ that is able to 'play' flash? and at
    the same time communicate with flash?

    Well, there is the C level extensibility library:
    http://livedocs.adobe.com/flash/9.0/main/00004601.html
    http://weblogs.macromedia.com/jd/archives/2004/03/flash_c-level_e.cfm
    But I don't think that will get you quite what you want,
    becuase there is no C class that embeds Flash Player that I'm aware
    of.
    If it has to be a desktop app you should be looking at Adobe
    AIR as a delivery mechanism:
    Check it out on
    http://labs.adobe.com/.

  • How to play flash files in java swings

    Hi All ,
    I have a requirement in java swings , i want to play advertisements ( flash files in swings )
    can any one provide any example for the above requirement .
    Thank you all for sharing knowledge in this great forum .
    Jerry

    I have a java desktop application which is actually a
    kiosk application. I have to run some promotion
    videos in my application when no user is using the
    kiosk.Will the kiosks all be running the same OS?
    The reason I ask is that JMF is available in both
    standard and performance pack versions. The PP
    provides a wider variety of formats, but runs only
    on Win. and *nix.
    videos can be any avi or neother which can easily be
    played in java applications.That is handy. The JMF standard pack provides
    support for a number of flavors of AVI, but not all.
    What is the best way for me to play video files in a
    java application??I would suggest checking if the 'standard' version
    of the JMF can play* the current AVI's. If it can, use
    the standard JMF for the project, if not, look to
    converting the AVI's to something the JMF can
    deal with, this might involve storing the video or
    audio of the AVI's in a different format - you
    might have to experiment to get the right
    combination, but the JMF 'supported formats'
    is a good guide.
    http://java.sun.com/products/java-media/jmf/2.1.1/formats.html
    * To check if JMF can play them, install it and
    try loading the AVI's in JMStudio - the default
    player.

  • How to play videos in java application

    Hi... every one
    I want to write a java application to play videos ....Please guide me how to go about it..
    Thanks in advance...
    Rgrds
    Ravi. N

    [http://www.cs.odu.edu/~cs778/spring04/lectures/jmfsolutions/examplesindex.html]

  • How to play flash video for 40 secs and then display webpage automatically?

    I have made a webpage, i want to show a flash video for 40 seconds when the page is opened. Then the Flash video should dissapear and the web page shall open. How should i do this?

    Hi
    This would require the use of actionscript placed inside the flash video, which would then redirect to the main site after the required time.
    (to find out how to do this you would be better advised in the flash forum - http://forums.adobe.com/community/flash/flash_general).
    PZ

  • Play Macromedia Flash inside JAVA

    I'm searching for a Framework who is able to play Flash(.swf) files inside a JAVA application. I read that JMF is able to play them but does it support the swf verision 6.0 or 7.0?

    i want to insert video into jframe please suggest me i m using jdk1.5
    but dont have additional apis necessary for it please suggest me how to do it in detail right from setting classpath i ll be very thankfull if u do the same

  • How to Play a sample sound using Java

    Hi,
    I have an mp3 music files in database. When a user chooses a particular button, all the songs are fetched from the database.
    I have two buttons namely, 'Buy' and 'Play Sample'. If I click the 'Play Sample' button, a sample of the song has to be played (not the full song). If the user likes the sample, he can buy the full song.
    My question is how to achieve the 'Play Sample' using Java Swings and Sound. I have googled, but not find any solutions. Please provide me an example or link.
    Thanks in advance.

    HI
    Actually i am trying to create a JFrame which plays an mp3 music file
    with the help of play and stop buttons in it ...
    i splitted the frame into two
    i want a music file list in the first frame (JComboBox)
    and want to have play and stop button in the second frame .
    i had tried out some code in which the frame part is fine ,,,
    but i am not knowing how to play the file with those buttons ...
    here is the code and plz help me to move further ...
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JSplitPane;
    public class AudioFile extends JFrame {
        public AudioFile() {
            setTitle("Music File");
            setSize(300, 400);
            JPanel jp1 = new JPanel();
            JPanel jp2 = new JPanel();
            JButton s= new JButton("STOP");
            JButton p= new JButton("PLAY");
            JLabel j1 = new JLabel("MusicFile");
            String[] musicfiles={"file:///home/swathi/Desktop/spot3.mp3","anitha.mp3"};
            JComboBox musiclist=new JComboBox(musicfiles);
            musiclist.setSelectedIndex(1);
            jp1.add(j1);
            jp1.add(musiclist);
            jp2.add(s);
            jp2.add(p);
            JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                    true, jp1, jp2);
            splitPane.setOneTouchExpandable(true);
            getContentPane().add(splitPane);
        public static void main(String[] args) {
          AudioFile sp = new AudioFile();
            sp.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            sp.setVisible(true);
    }

  • How do i play sound in java??

    hello,
    How do i play sound in java??
    im new to java
    thanks,

    There are crude abilities to play sound in the core of java. If you really want to make good sound apps though you should look at the JMF.
    http://java.sun.com/products/java-media/jmf/

  • Don't know how to play a flash file

    I downloaded a .FLV file, but Windows isn't associating that file with Flash. When I click it I get asked which file to open it with. I checked and I have Flash 10.x on my system. I don't know where on my system flash is located. I looked in the C:\Program Files\Adobe directory but didn't find anything there. How do I associate the file to Flash so I can play it?

    Flash Player is a web player (browser plugin), not a standalone media player.  You can use Adobe Media Player to play Flash files.

  • How to play video to be played in adobe flash player

    How to play  video to be played in adobe flash player?.

    Yes, you can install the flash-supported browsers like Photon, iSwifter, Puffin etc to view flash-based websites, to play flash games, watch flash videos, etc. If you want to play local Flash videsos, you can convert the flash videos to iPad supported video formats using video converting software. This tutorial is gonna help you: http://www.iorgsoft.com/article/ipad/mac-flash-to-ipad-converter/

  • How to get FF browser to play Flash?

    Hello
    I just updated my QT Pro to 7.2 and strangely now Firefox and
    Netscape Navigator (both latest) browsers won't display or play any
    Flash on our site. I get nothing or a quick flash (no pun intended)
    of the QT logo...
    I've tried to go to Firefox, prefs, file types, manage, but I
    can't seem to add or find any files except adobe pdf. How do I
    rectify this in FF and Navigator? These browsers played flash fine
    until I updated to QT Pro 7.2.
    Thanks
    KB

    Thanks for your follow-up. I tried it on my new Mac Pro. I
    had been getting Flash to play normally. Then, perhaps due to an
    update of FF, it stopped and started displaying the QT logo with a
    question mark. I reinstalled Flash Player 9 this morning, and
    things went back to normal. Then later in the day Flash went back
    to the QT logo and ?. I tried more reinstalls of FP 9. Tried
    trashing Firefox and working only with Safari. Tried your idea of
    upgrading to QT 7.2. No luck. BIG DIFFERENCE: I am trying to use QT
    Player, rather than QT Pro. I guess I'll try that next. Will post
    results.

  • How to play facebook game such as cityville in ipad, because it asking for flash player, but cannot download it for ipad

    How To Play facebook games in iPad Safari?
    Safari is asking for flash player to play it.
    But i can't install it to iPad.
    Or may be i must upgrade the version of safari for iPad?
    or may be there some special application that can play facebook game
    Thanks 4 ur help

    Safari on the iPad does not support Flash and will not for the forseeable future.
    Some of the FaceBook games have their own apps in the App Store that you can download.Some are the full games and some are not. For example "Cityville Hero" tells you when certain things happen in game so you can pop online on a computer and check it there, rather than letting you play it first.
    Checking the App Store is the best place to find a way around using a site that requires a flash player. A lot of sites create apps so you can use them on the iPad/iPhone/iPod touch. And if you find a site that doesn't you can always contact the website creators to see if they have or will create an app for the iOS devices.

  • How to play the local flash file in nexus one smart phone?

    In Nexus one smart phone(android 2.2), the flash file in the web site is played by browser,
    But local flash file is not played.
    How to play the local flash file?
    Does not support local swf playing yet?

    you can create from flash an AIR app that can be installed as a stand alone app on an android phone:
    tutorial here
    http://designupdate.com/blog/2010/07/27/air-for-android-access-the-microphone/

Maybe you are looking for

  • Can I download Adobe flash onto an iPad

    iis there a way to download Adobe flash onto an IPad?

  • Project in JAR does not want to run

    Hello, sorry my english is not very good. I ended a small application using rules business (with Drools) when I execute my project with Eclipse, everything works, my files are created. But when I execute the file JAR, there is no file of created, Whe

  • JSF-Security Sourceforge project

    JDev team (especially Duncan Mills) The JSF-Security library is a great little extension for JSF: http://jsf-security.sourceforge.net/ What's the future of this in respect to JDeveloper? Will it be included in JDeveloper as per the default install? I

  • Need to reboot CM server after Device Package install (suppport new phone)

    hi! we have 4.1(3)SR7 but does NOT have support for new phone model 7925G. As a result, we need to install CallManager Device Package 4.1(89.0). But I am getting conflicting message about the need to reboot CallManager server after installation. if y

  • Ipad on the upper left of the screen

    just updated my ipad2 to iOS 8 but the word "ipad" on the upper left corner of the screen went missing. In the older version, it always appear on the upper left corner of the screen beside the icon of the wifi. Please help me solve this problem. Than