How to make a (simple) video editing flash software

Hello,
I currently use Adobe Flash cs3 version 9.0.0.494 running in windows 8 but have, if needed, Adobe Flash cs6.
in this new project I'm working on I would like to include a feature that according to the actions of the user (just button presses), creates a video from smaller pre-existant videos, each  button corresponding to small clips that will be put toghether by its pressing order.
After this, the video created should be able to be exported.

no, they would need to be created dinamically as the possibilities are unlimited,
I was thinking of saving the inputs in variables (starting in a) with previous value 0 following this logic:
if (a==0) {a=36}
else if (b==0) {b=36}
else if (c==0) {c=36}
where 36 is the frame where this button clip starts.
then, when the user is done i would do this at the end frame of each clip
if (a=/=0) {frame=a; a=0; goto frame}
else if (b=/=0) {frame=b; b=0; goto b}
my only problem here would be how do record the video...

Similar Messages

  • How to make a music video using flash

    am trying to make a music video for a uni project, one of the things I'm trying to do in the video is to fade in a word at a time in whilst keeping them all aligned properly as a sentence - is there an easy way to do this?
    Any other hints or tips on how to make a video but one especially for music would be much appreciated !! I'm just using Adobe Flash and NOT Adobe Premier, thank you !!

    no, they would need to be created dinamically as the possibilities are unlimited,
    I was thinking of saving the inputs in variables (starting in a) with previous value 0 following this logic:
    if (a==0) {a=36}
    else if (b==0) {b=36}
    else if (c==0) {c=36}
    where 36 is the frame where this button clip starts.
    then, when the user is done i would do this at the end frame of each clip
    if (a=/=0) {frame=a; a=0; goto frame}
    else if (b=/=0) {frame=b; b=0; goto b}
    my only problem here would be how do record the video...

  • How to make a simple JPEG flash light to dark on PDF?

    Hello all. Thank you for reading this.
    Please have a look at this online magazine:
    http://viewer.zmags.com/publication/1d272263#/1d272263/1
    Notice how the "Click Here To Read" is flashing?
    Well I'm wondering how do I create that effect? I'm sure it can't be as confusing as I'm trying to learn. Basically I'm creating a online magazine, and I want a JPG/PNG File to flash from dark to light. Is this an effect I add on Adobe InDesign before I convert my (rather large 1,500 page) magazine to a PDF? Or do I open this in Adobe Acrobat X as a PDF and tweak some setting there?
    Or does this file have to be converted to a Shock-wave Flash file? Because I have NO EXPERIENCE in flash files, they seem so confusing.
    Please help if you can!

    Salah Fadlabi wrote:
    Yes that correct
    just export the page logo flashing to (SWF) than place again on indesign document to export with remaining pages to PDF.
    Hello, thank you for your help. When I place the swf file onto the correct InDesign page, I upload it onto the page viewer online, but I see that rather large Flash icon. If you click on the image below you'll be able to see it. I've print screened it.
    ?1
    Am I exporting it incorrectly? I've exported it as a interactive PDF.
    EDIT: I may be confusing you, but this is my general process. I create a magazine. Export it as a PDF, and upload it on a pdf internet viewer called FlipViewer.
    But now, some clients want certain pages/logos etc flashing. So now I need to figure out (for the next magazine that will be uploaded soon), how to make certain logos/badges etc flash. So when I follow your instructions, I upload it as a PDF, then when I open that PDF, I get that flash icon that says "...click to activate", when I click that, then the SWF effects appear over the document. But when I upload that PDF document to FlipViewer, it just appears as a unclickable link. And other magazines that have been uploaded on flipviwer has flashing logos, automatically when you open up the document. What am I doing incorrectly?
    Thank you so much for your help!

  • HOW TO MAKE A REVERSE VIDEO IN IMOVIE FOR IOS

    I woud like to know, if possible, in how to make a reverse video in my IPad.
    Thanks to everyone!
    G'day.

    Searched for a solution and I found a video tutorial about this:
    http://www.imoviehowto.com/imovie-ios-8-how-to-reverse-a-video-clip/

  • How do I install the video editing program I just bought from Adobie?

    How do I install the video editing program I just bought from Adobie?

    Mylenium
    Thanks for the response.   My system is Windows 7 with a painfully slow ATT
    high speed connection.
    I got the "Cloud" including CS6 , yesterday,after a chat with a nice Indian
    fellow who called me back from Bombay.  Surprisingly he was looking forward
    to Thanksgiving too but probably because he gets a day off.
    I now have the Adobe Premiere Pro loaded (it took nine hours) and
    installed.  Now I'm starting the tutorials.
    Hopefully I'll be editing soon.
    Thanks again
    Lyman Dave

  • How to make Mvt allowed indicator editable in CJ20N transection ?

    Dear Experts,
    How to make Mvt allowed indicator editable in CJ20N transaction ,I want to control material issue by reservations,waiting for your suggestions.
    Thanks

    What is the object status? if the status is Started, you might have problems becouse that status does not permit cost assignments.
    As the previous reply, at the moment of the release, you will have this field editable.
    Best Regards.

  • HOW TO MAKE TABLE CONTROL NON EDITABLE

    hi all
    how to make table control non editable
    Thanks & Regards
    harsha

    Hi,
    Try this code in the PBO inside the module in the LOOP...ENDLOOP.
       IF SY-TCODE EQ 'ZEMPLDISPLAY'.
        LOOP AT SCREEN.
         if screen-name eq 'column1' or screen-name eq 'column2'.  "Give the names of the columns in the table control
          SCREEN-INPUT = '0'.
          MODIFY SCREEN.
        endif.
        ENDLOOP.
      ENDIF.
    Or you can go the Layout of the table control in Change mode and for every column's attributes, make it 'Output' only field. Check  'Output only' field.

  • JDialog Problem: How to make a simple "About" dialog box?

    Hi, anyone can try me out the problem, how to make a simple "About" dialog box? I try to click on the MenuBar item, then request it display a JDialog, how? Following is my example code, what wrong code inside?
    ** Main.java**
    ============================
    publc class Main extends JFrame{
    public Main() {
              super();
              setJMenuBar();
              initialize();
    public void setJMenuBar()
         JMenuBar menubar = new JMenuBar();
            setJMenuBar(menubar);
            JMenu menu1 = new JMenu("File");      
            JMenuItem item = new JMenuItem("About");      
            item.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ae) {
                  // About about = new About(this);
               // about.show();
            menu1.add(item);
         menubar.add(menu1);
    public static void main(String args[]){
         Main main = new Main();
    }** About.java**
    =============================
    import java.awt.*;
    import javax.swing.*;
    public class About extends JDialog{
         JPanel jp_top, jp_center, jp_bottom;
         public About(JFrame owner){
              super(owner);
              setDefaultCloseOperation( DISPOSE_ON_CLOSE );
              Image img = Toolkit.getDefaultToolkit().getImage(DateChooser.class.getResource("Duke.gif"));          
              setIconImage( img );
              setSize(500,800);
              Container contentPane = getContentPane();
             contentPane.setLayout(new BorderLayout());           
             contentPane.add(getTop(), BorderLayout.NORTH);
              contentPane.add(getCenter(), BorderLayout.CENTER);
              contentPane.add(getBottom(), BorderLayout.SOUTH);
              setResizable(false);
               pack();            
               setVisible(true);
         public JPanel getTop(){
              jp_top = new JPanel();
              return jp_top;
         public JPanel getCenter(){
              jp_center = new JPanel();
              return jp_center;
         public JPanel getBottom(){
              jp_bottom = new JPanel();
              jp_bottom.setLayout(new BoxLayout(jp_bottom, BoxLayout.X_AXIS));
              JButton jb = new JButton("OK");
              jp_bottom.add(jb);
              return jp_bottom;
    }

    Code looks reasonable except
    a) the code in the actionPerformed is commment out
    b) the owner of the dialog should be the frame
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.

  • How to make a simple Quiz?

    Could anyone help me with some hints and maybe sample code (or tutorial :)) how to make a simple quiz, with multiple
    answers choices, and a score function.
    //D

    You could for example do it like this:
    import java.io.*;
    class Quiz
    public static void main (String [] args)
    BufferedReader in = new BufferedReader (new InputStreamReader(System.in));
    System.out.println("SUPERQUIZ");
    System.out.println("How many legs does a horse have?");
    System.out.println();
    System.out.println("1");
    System.out.println("2");
    System.out.println("3");
    System.out.println("4");
    int answer = Integer.parseInt(in.readLine());
    if (answer == 4)
    System.out.println("The answer is correct");
    else
    System.out.println("The answer is incorrect");
    This is just a basic program, hope you understand it (hopefully it works).
    �sbj�rn

  • How to make a select list editable or searchable like the combobox

    Does anybody know, How to make a select list editable or searchable like the combobox? Do we need a plugin here, where I can get it.

    Hi Nilesh,
    If this is what you are looking for http://apex.oracle.com/pls/apex/f?p=32395:3:1202144397644679
    get the combobox plug-in
    http://www.apex-plugin.com/oracle-apex-plugins/item-plugin/searchable-combobox.html
    I have not tried this though. Found it while searching for some other plug-ins.
    Regards,
    -Senthil

  • How to make all the rows editable in webdynpro alv output

    Hi,
    How to make all the rows editable in webdynpro alv output.
    Thanks
    Rakshar

    Hi Rakshar,
    Check this wiki:
    http://wiki.sdn.sap.com/wiki/display/WDABAP/HowtoeditconditionallyrowofaALVtableinWebDynprofor+ABAP
    Regards

  • Make a simple "cut" edit in a singular video in CS6 (one video file as opposed to multiple clips).

    I want to be able to do simple editing in CS6. I just spent three hours watching tutorial videos and reading help articles and this forum. I have never used an Adobe video editing program before. I normally use Windows Movie Maker, but it's too simple for my current needs. (Eventually I will learn effects.)
    My problem is that the tutorial videos show examples where there is more than one "clip" being placed on the timeline. That seems to pre-set editing points. I only need to import one longer video file and then cut out frames that I no longer want in the video.
    I have figured out how to set start and end points on the clip, as in at the actual beginning and actual end. But following every single method described (JKL, etc), I still cannot seem to edit frames out of the middle of my videos. I assume this is because I'm missing some very simple method for setting edit points. This is what I need to know.
    I am an extreme novice with this program though I'm somewhat computer savvy. So please no jargon. I know nothing of this program. I did all I could to find my own answers before asking here, but if this is answered somewhere else, please direct me there. Thanks.

    I'm in a similar boat -- editing family video recorded on Hi8 and captured into DV with a Canopus ADVC-300. I typically have a 2 hour clip in the timeline.  I'm separating these into clips with the razor tool, but sometimes I want to remove a garbled few seconds from within a clip.
    Today I discovered something nifty: in Keyboard options, there are two items that don't have a key assigned:
    Application->Ripple Delete->Ripple Trim Next Edit to Playhead
    Application->Ripple Delete->Ripple Trim Previous Edit to Playhead
    I assigned these to the Shift+] and Shift+[ keys.   Premiere didn't warn me about these keys being assigned already, so I guess it's ok.  At first, I used '}' and '{' but I'm afraid that it is too easy to accidently hit them.
    When I play back in the timeline, at the start of the garbled area I want to remove, I hit Ctrl+K to add an edit point (the "out point", I suppose). Then I continue playing.   When I reach where I want the video to resume, I just press Shift+[ and Premiere ripple-deletes to the edit point.
    This does leave me with an edit point, though.  I have yet to figure out how to splice the two clips together again.
    I'm sure the pros won't like this, but I find it makes things easier.

  • How to make a Poster Frame to Flash 8 Video

    Hi to all,
    I want to make a poster frame (a simple jpg)
    to display before the FLV video plays.
    So first the user to click the play button or on this poster frame.
    The code below does exactly what I need, but it is in Flash CS4.
    How could I do the same with Flash 8 Pro (ActionScript 2.0)?
    Any help?
    import fl.video.VideoEvent;
    function showPosterFrame(event:Event):void {
        myPoster.visible = true;
    function hidePosterFrame(event:Event):void {
        myPoster.visible = false;
    function playMovie(event:MouseEvent):void {
        myVideo.play();
    myPoster.addEventListener(MouseEvent.CLICK, playMovie);
    myVideo.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hidePosterFrame);
    myVideo.addEventListener(VideoEvent.COMPLETE, showPosterFrame);
    Iason_K

    are you using an flvplayback component?

  • How to make a fullscreen button for Flash Catalyst?

    Hey everyone.  I really hope someone can help me with this.  How can I make a fullscreen button in Flash Professional that would make my Flash Catalyst project go fullscreen?

    I'm sorry I really don't know Flash Catalyst as much as I'd like to. Designing interfaces is left up to me, no designers at my agency use Catalyst. Though this is the Flash forum so that's as much as I can tell you. I didn't know Catalyst didn't support basic scripts (I thought I read that it did).
    Ultimately, for a very cheap price you can do something like go to http://www.lynda.com/ and buy a membership. Dirt cheap compared to what you get. They offer many courses on all this stuff and I'm sure your answer would lie in one of the (nicely broken up by subject) video training videos.
    Just searching for Catalyst brings up a bunch of courses:
    http://www.lynda.com/search?q=catalyst&x=0&y=0
    edit:
    For instance I watched the essential CS5.5 training and I saw in 2 minutes flat that when you click on a button you should have an "Interactions" panel that lets you do things. If they didn't put fullscreen as an interaction that's another thing but I'm just pointing out it's very easy to learn how to do all sorts of things in video training. If you do not want to purchase a membership there just find a video you think would have the info in it and I'll watch it and let you know if it told me how to do it, and how to do it.

  • How do i play my videos in flash file after moving SWF file to website?

    Hello all,
    I am having some problems showing my videos in flash after moving it anywhere besides my computer.
    I published my flash file once as a exe. file and sent it to another computer, where it all worked but my videos, which didn't show up at all.
    I also published them as SWF files, then put them up on my free website (where i don't have access to the ftp) and the videos still aren't there.
    The videos will play fine in an SWF file on my computer, but i am assuming when they are away from the videos, they don't have a source to access them.
    I also tried sending the videos along with the SWF files when sending to other computers and it still doesn't work.
    I now have a free hosted website (with wix.com if that makes any difference) with my flash work on, but no videos. I even tried to embed a youtube video into the scenes the videos are meant to appear, and put the videos on youtube, then i discovered you can't put that sort of HTML into flash.
    Does anyone know how to show the videos on these sort of website, or even better, how to keep them in original file when sending them, so they show on other computers.
    Sorry if I've waffled but I'm trying to clear up my situation .
    Any help would be super, many thanks,
    Flasher87

    i am using the website wix, so in order to put the swf file up you just click the "Upload SWF" button, so i don't know how i could put the videos along with the swf, the swf is just sat on the page once i upload it.
    second, when using this type of website do you know how i'd go about giving the website the permissions to play flv files?
    Thank you.

Maybe you are looking for

  • How to use setSelectedItem (java) in jsp

    hai, iam very much new to JSP. i have a combo box which has values populated from database. i got the combo box value selected by the user. now my question is how to set a particular value in a combo as we do in java using setSelectedItem("value"); t

  • Invalid drive G error

    So I was trying to figure out a way to get all of my WMA's onto my iTunes on my iMac. So I fiugre I would use iTunes on my PC to transfer the songs that are on there to the iPod, so when I try to open it, it tells me that the file itunes in the folde

  • Jakarta Commons FileUpload ; Internet Explorer Problem

    Hi all, Environment: Tomcat 5 ;Apache 2; JDK 1.5.0; Jakarta Commons Fileupload 1.0 OS: Windoze XP Previously I've used jakarta commons fileupload package to succussfully to upload a file. However, I am trying to check the content type of the file and

  • Photoshop CS6 Installation Failure

    I have tried numerous times to install PS6 but every time I get the Installation Failed error message. Id, Fl, Ai, Dw, Acrobat X have all installed without any problems. I have a new Mac Pro 3.33 GHz 6-Core Intel Xenon with OS X 10.8.1 I do still hav

  • How to change build order in Keynote

    I've imported an existing Keynote file from my iMac to iPad2. There were some pics in the original file which went missing after importing into iPad2. I've then deleted the missing pics in the slides, and tried replacing them in iPad2. However I coul