Skip to main content

Posts

Showing posts from September, 2013

How to Create a MOTION TWEEN in MACROMEDIA FLASH

    If you are new to flash, and trying to animate, try this. Tweening is the easiest way to animate in the complicated world of Flash, and I have tried to show it simply. I am assuming that you are basically familiar with Flash's tools. This tutorial is intended for Windows PC & Adobe Flash 8. 1 1 Open Flash . If it is not on the start menu or on the desktop, you can find it on Computer at Boot drive\Program Files\Macromedia\Flash 8. 2 Draw a shape . This will be what you animate. 3 Select the shape you have created with the "Selection Tool" and press "CTRL + F8" . 4 The "Convert To Symbol" dialogue will appear, and you should select "Graphic" . You can name it, but that is not necessary. 5 Now click OK . 6 Go to the Timeline and click on frame 10 . 7 Now right click frame 10 and select "Insert F...

Running a Java Program from Command Prompt

Running a Java Program from  Command Prompt Create a temporary folder  C:\mywork .  Using  Notepad  or another text editor, create a small Java file  HelloWorld.java  with the following text: public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } Save your file as  HelloWorld.java  in  C:\mywork .  To make sure your file name is HeloWorld.java , (not  HelloWorld.java.txt ), first choose "Save as file type:"  All files , then type in the file name  HelloWorld.java . Run  Command Prompt  (found under All Programs/Accessories in the Start menu).  Type C:\> cd \mywork This makes C:\mywork the current directory. C:\mywork> dir This displays the directory contents.  You should see  HelloWorld.java  among the files. C:\mywork> set path=%path%;C:\Program Files\Java\jdk1.5.0_09\bin This tells the system where to ...