How to put a video player swf file inside a flash file

i want to know how i can put a flash file inside a flash wbsite. i have found a tutorial http://www.ehow.com/how_4906532_within-another-flash-swf-file.html that says something like that but in this tutorial if i understand correctly it creates a new flash project and add another swf inside. i have my website created and i just want to add video gallery, image gallery etc that are already swf. how i can do that?

You can use swf inside of another swf.
If you are using Actionscript2 then learn about LoadMovie
And for AS3 it is Loader.

Similar Messages

  • Flash file inside a Flash File

    I know this may see a stupid question... But I've looked
    everywhere and haven't found an answer. How do I add a flash file
    inside another flash file? I'm interested in creating an all flash
    website, but am kinda stuck when it comes to switching pages on the
    site. What's the easiest way to do this?

    Hello Ben J.,
    loadMovie is your new best friend.
    The best way to use this is to create an empty movie symbol,
    put it on the
    timeline and give it an instance name (placeHolder for
    example). Then you
    can load another swf into that placeHolder clip with the
    following script:
    placeHolder.loadMovie("whatever.swf");
    This is a GREAT way to cut down on the initial load time of a
    site because
    you only load what you need when you need it.
    You can really have some fun when you start controlling
    objects on the main
    timeline from your loaded movies and vice versa.
    Good luck!
    Jesse H.
    Adobe Community Expert
    My site:
    http://www.jharding.com
    Free Blog Radio:
    http://www.tornadostream.com
    > I know this may see a stupid question... But I've looked
    everywhere
    > and haven't found an answer. How do I add a flash file
    inside another
    > flash file? I'm interested in creating an all flash
    website, but am
    > kinda stuck when it comes to switching pages on the
    site. What's the
    > easiest way to do this?
    >

  • How to put selected videos into one place (File)

    How to put selected videos into a File so I can only show on TV the videos in that file

    YYou have to describe your issue in more detail. Are you using iTunes? Trying to see it in Apple TV, etc, etc.

  • How ito put a video to iPod

    Hello.
    I´d like to know how to put a video inside IPod with the iTunes software.
    Thanks

    see here:
    http://www.rowan-cottage.co.uk/Site/Autoplay_Music.html
    set the values of "controller" to "false" and the values of autoplay to "true."
    max

  • Using iMovie-does anyone knows how to put two videos side by side in the same screen/

    Using iMovie-Does anyone knows how to put two videos side by side in the same screen?

    See iMovie Help here.
    http://help.apple.com/imovie/mac/10.0/#movb8c659f55

  • How to put selected videos in one place so I can only show those on my TV and not ALL of the videos I have ever taken.

    How to put SELECTED  videos in one place, so I can ONLY show the SELECTED videos on my TV and not ALL of the videos I have ever taken

    YYou have to describe your issue in more detail. Are you using iTunes? Trying to see it in Apple TV, etc, etc.

  • How to put vlc media player in i phone 4G

    how to put vlc media player in i phone 4G

    VLC Media Player no longer exists for iOS; it was removed due to a dispute between the developer of the iOS version and the original project. Unless you have a copy of the iOS version of VLC Media Player already, there is no way to put it on your iPhone.
    If you do have a copy, downloaded during that short time when it was available, then please post back and describe the difficulty you're having.
    Regards.
    By the way, just to avoid any potential confusion due to terminology, there is no "iPhone 4G". It's official name is the "iPhone 4".

  • How to speed up the loading of live data into flash file.

    How to speed up the loading of live data into flash file if the swf file size is 1.5 MB. Flash file is using 20 web service connections to load the live data.

    Hello,
    I am also facing a similar problem wherein the SWF file takes time to load the refreshed data in Infoview i.e. after exporting the xlf file to Business Objects platform. Currently I am using Xcelcius Engage/Enterprise 2008 SP3 Windows (file name: 51038212.ZIP) version 5.3.0.0 build number 12,3,0,670. Also the SWF file is approximately 2MB in size  and it uses 42 live office connections.
    Please suggest solution as to how to decrease the time it takes to refresh the live office connections.

  • How to insert a shoutbox and a counter in a flash file with html code?

    How to insert a shoutbox and a counter in a flash file with
    html code?
    Code shout box
    <!-- BEGIN MYSHOUTBOX.COM CODE -->
    <iframe src="
    http://489676.myshoutbox.com/"
    width="152" height="300" frameborder="0"
    allowTransparency="true"></iframe>
    <!-- END MYSHOUTBOX.COM CODE-->
    Code compteur
    <script type="text/javascript" src="
    http://www.123compteur.com/counterskinable01.php?votre_id=268303"></script><noscript><a
    href="
    http://www.123compteur.com"
    target="_blank">compteur</a></noscript>

    thx =D

  • How to execute a sql file inside a plsql file?

    It's easy to exec a plsql inside a sql. Simply
    start my_proc.plsql
    exec my_proc;
    But how to execute a sql file inside a plsql file?
    declare ...
    begin
    start my_sql.sql?
    end;
    Thanks.
    - Zac

    Doesn't work. Even though @ is different from start in this case but it just doesn't like the way sql and plsql are mixed. For example:
    DECLARE n NUMBER := 0;
    BEGIN
    select COUNT(*) INTO n from user_tab_partitions;
    DBMS_OUTPUT.put_line('Number of partitioned tables = ' || to_char(n));
    if n = 0 then
    DBMS_OUTPUT.put_line('createViewsProcs.sql');
    @createViewsProcs.sql
    else
    DBMS_OUTPUT.put_line('createPartitionViewsProcs.sql');
    @createPartitionViewsProcs.sql
    end of;
    END;
    SQL> @postimp.sql
    SQL> DECLARE n NUMBER := 0;
    2 BEGIN
    3 select COUNT(*) INTO n from user_tab_partitions;
    4
    5 DBMS_OUTPUT.put_line('Number of partitioned tables = ' || to_char(n));
    6
    7 if n = 0 then
    8 DBMS_OUTPUT.put_line('createViewsProcs.sql');
    9 @createViewsProcs.sql
    9 SET SERVEROUTPUT ON SIZE UNLIMITED;
    10 SET TERM ON;
    11 SET ECHO ON;
    12 EXEC DBMS_OUTPUT.put_line('STARTING VIEWS, PROCS, ETC, THIS MAY TAKE A FEW MINUTES');
    13 EXEC DBMS_OUTPUT.put_line(SYSTIMESTAMP());
    14
    15
    16 CREATE OR REPLACE PACKAGE db_convert AS
    17 FUNCTION ......
    32 END;
    33 /
    SET SERVEROUTPUT ON SIZE UNLIMITED;
    ERROR at line 9:
    ORA-06550: line 9, column 5:
    PL/SQL: ORA-00922: missing or invalid option
    ...

  • How to read, write file inside the JAR file?

    Hi all,
    I want to read the file inside the jar file, use following method:
    File file = new File("filename");
    It works if not in JAR file, but it doesn't work if it's in a JAR file.
    I found someone had the same problem, but no reply.
    http://forum.java.sun.com/thread.jsp?forum=22&thread=180618
    Can you help me ? I have tried this for all night !
    Thanks in advance
    Leo

    If you want to read a file from the JAR file that the
    application is packaged in (rather than a separate
    external JAR file) you do it like this ...
    InputStream is =
    ClassLoader.getSystemResourceAsStream("filename");Better to use
    this.getClass().getClassLoader().getResourceAsStream();
    From a class near to where the data is. This deals with multiple classloaders properly.

  • Java Files inside the jar file cannot be read or accessed through Eclpse

    The Java File inside the jar file of the eclipse cannot be accessed through the Eclipse . It shows error for the modules in the jar file .
    But when compiled with adding the jar files to the class path the compilation is successful .
    How can i browse through the files in the jar like going into the function definition .
    TIA ,
    Imran

    Open MPlayer OSX and show the playlist (command-shift-p) then drag the file into the playlist. Click the file in the playlist and click the "i"nfo button. What does it list for file, video and audio format?
    Not all of the codecs used in avi and wmv files are available for OS X so I'm guessing your file happens to be using one that isn't...

  • I am having Html help files inside my Jar file

    Dear Friends;
    i am having Html help files inside my Jar file.
    how will open the html file using Java Help.
    Thank u

    http://java.sun.com/products/javahelp/reference/docs/index.html

  • How to Put DVD/Video on iPod, PSP, Computer, Zune,...

    Many Mac users have iPod, PSP and other portable devices, but they can only enjoy songs and videos from iTunes or buy them from internet, because there is seldom nice Mac DVD and Video covnerter for iPod, PSP and other devices. Today I will introduce you an excellent DVD/Video converter for Mac: Aiseesoft DVD Converter for Mac It allows you to put your own DVDs and you own videos on your iPod, PSP, Mac Computer and other players on Mac.
    This article aims to show you how to put your DVDs and videos on your iPod, PSP, Computer, Zune, Xbox and other players for Mac users.
    Part 1. Convert DVD for Mac with AiseesoftDVD Ripper for Mac
    Step 1. Load DVD
    Insert DVD into your DVD-ROM, run DVD Ripper for Mac, click “Load DVD”, find the DVD folder of the movie you want to add from your DVD-ROM, and Click “Open”.
    Step 2. Set output format.
    This best DVD ripper for Mac provides you output formats as many as you want. Just choose one from the drop down list “profile” according to your portable player.
    If you are very professional with your player, you can also set your output parameter values such as Resolution, Frame Rate, Bitrate and Sample Rate and so on.
    Tips:
    1. Trim:
    If you want to rip only a part of the DVD movie, please click “Trim” button and drag the “Start trim slider” to set the start time and “End trim slider” to set the end time. (a). You can also do that by clicking the “Start trim button” and “End trim button”(b). The third way you do that is set the exact Start/End time at the right of the pop-up window and click “OK”.
    2. Crop:
    If you want to remove the black edges or you want to rip a certain area of your video, please click the “Crop” button. You can do this either by drag the frame around the movie (a) or set the crop value: “Top, Left, Bottom, Right”.(b). Another way to do that is choose mode from “Crop Mode”(c).DVD Ripper for Mac also allows you to choose the output aspect ratio above the crop panel, “Keep Original, full screen, 16:9 and 4:3” are available.
    3. Effect:
    If you want to adjust the effect of your movie, please click the “Effect” button and a pop-up effect window will appear. It allows you to edit your movie’s effect including “Brightness, Contrast, Hue, Saturation and Volume”.
    Click “Start” to begin your conversion.
    Part 2. Convert videos for Mac with AiseesoftVideo Converter for Mac
    Step 1. Choose “Video Converter for Mac” on the main interface.
    Step 2. Add video
    Click “Add File” to load your video that you want to put.
    Step 3. Choose output profile and settings.
    You can choose your output format from the drop down list and you can set the exact values of your output videos, such as Resolution, Frame Rate and so on.
    You can do the video editing as the same way of convert DVDs.
    After getting your satisfying video, then click “Start” button to start your conversion.
    If you are a window user, Aiseesoft DVD Converter Suite is your best choice.
    It is the perfect combination of Aiseesoft DVD Ripper, Aiseesoft Total Video Converter and Aiseesoft iPod to Computer Transfer. With this powerful DVD Converter Suite, you can easily convert DVD and video to all the popular formats: MP4, H.264, AVI, MP3, WMV, WMA, FLV, MKV, MPEG-1, MPEG-2, 3GP, 3GPP, VOB, DivX, Mov, RM, RMVB, M4A, AAC, WAV, etc
    And transfer your iPod songs and videos to your computer easily.

    You should post your question in either the iTunes or iPod discussions

  • How to embed HTML5 video player in web page

    I have developed a video player using html, javascript and jquery. depending upon the browser type and mobile/non-mobile device, it creats the html5 video tags or redirect to a fall back flash player). I am using Adobe media server
    this player works well on all the browsers.
    videoplayer.html
    <!DOCTYPE html>
        <html>
           <head>
    </head>
    <body>
    <video controls="controls" poster="http://sandbox.thewikies.com/vfe-generator/images/big-buck-bunny_poster.jpg" width="640" height="360">
              <source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4" />
              <source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.webm" type="video/webm" />
              <source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.ogv" type="video/ogg" />
                        <object type="application/x-shockwave-flash" data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" width="640" height="360">
                        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
                        <param name="allowFullScreen" value="true" />
                        <param name="wmode" value="transparent" />
                        <param name="flashVars" value="config={'playlist':['http%3A%2F%2Fsandbox.thewikies.com%2Fvfe-generator%2Fimages%2 Fbig-buck-bunny_poster.jpg',{'url':'http%3A%2F%2Fclips.vorwaerts-gmbh.de%2Fbig_buck_bunny. mp4','autoPlay':false}]}" />
                        <img alt="Big Buck Bunny" src="http://sandbox.thewikies.com/vfe-generator/images/big-buck-bunny_poster.jpg" width="640" height="360" title="No video playback capabilities, please download the video below" />
              </object>
                        </video>
    </body>
        </html>
    ============================================
    If I embed this video player in any of the aspx page using <EMBED></EMBED>, the redirection to flash player does not happen.(it works fine on chrome and safari but not on IE and firefox)
    <EMBED height=360 width=250 src="http://localhost/videoplayer.html"></Embed>

    I used <object> to make it work in IE and Firefox
    <object type="text/html" data="http://64.165.34.7:8134/videoplayer.html?size=1&playlist=2" style="width:460px; height:260px"></object>

Maybe you are looking for

  • My iPhone 5 won't let me use my apps until I connect them with iTunes after downloading ios7. Solutions?

    My iPhone 5 won't let me use my apps until I connect them with iTunes after downloading ios7.  There's just a thing that pops up and says that in order to activate banners and push notifications I have to connect the app with iTunes. The thing won't

  • Advice on how i can set up an office network with 40 computers.

    I am planning on setting up an office network with 40 computers. What do you think is the best way i can do this? Thank you in advance.

  • Access MovieClip in the stage

    Hello, I am using the ActionScript 3 in a aplication and i have problem to access the MovieClips that is on the Stage. Let me explain. I the stage i have two MovieClips, with instance of mc1 and mc2. Inside of mc1 i try to access some proprerties fro

  • IDN domains and upload (IO & Security errors)

    I have site with a file-uploader created in Flash. It works great, I have never encountered any security issues, nor would I expect too, because the swf and the serverside files (in this case ASP.NET) are all in the same domain. My site can be access

  • Valueset problem in alv

    hi guys, I made a value set for a dropdown in a certain column in alv and have several questions: 1. I have the value set as an attribute of the node (cardinality 0...n) which contains the shown data in alv which is bound to the alv data node.     So