Presentation is loading. Please wait.

Presentation is loading. Please wait.

Flash MovieClip Symbols Movieclip symbols are reusable pieces of flash animation هي قطع من حركات الفلاش يعاد استخدامها عدة مرات Movieclip symbols are reusable.

Similar presentations


Presentation on theme: "Flash MovieClip Symbols Movieclip symbols are reusable pieces of flash animation هي قطع من حركات الفلاش يعاد استخدامها عدة مرات Movieclip symbols are reusable."— Presentation transcript:

1 Flash MovieClip Symbols Movieclip symbols are reusable pieces of flash animation هي قطع من حركات الفلاش يعاد استخدامها عدة مرات Movieclip symbols are reusable pieces of flash animation هي قطع من حركات الفلاش يعاد استخدامها عدة مرات consisting usually of one or more graphic/button symbols عادة تتالف من واحد او اكثر من الرسوم ( ازرار رموز ) consisting usually of one or more graphic/button symbols عادة تتالف من واحد او اكثر من الرسوم ( ازرار رموز ) thus they are flash movies within your flash movie. وبالتالي هي افلام فلاش ضمن فيلم الفلاش الخاص بك thus they are flash movies within your flash movie. وبالتالي هي افلام فلاش ضمن فيلم الفلاش الخاص بك They have their own non-restricted Timeline (any number of layers and frames - just like the main timeline) that plays independent of the main movie's Timeline. وهو يملك خط زمن خاص به غير محدد ( أي عدد من الطبقات والاطر مثل خط الزمن الرئيسي ) وهي تشتغل بشكل مستقل عن خط الزمن الرئيسي They have their own non-restricted Timeline (any number of layers and frames - just like the main timeline) that plays independent of the main movie's Timeline. وهو يملك خط زمن خاص به غير محدد ( أي عدد من الطبقات والاطر مثل خط الزمن الرئيسي ) وهي تشتغل بشكل مستقل عن خط الزمن الرئيسي

2 MovieClip Symbols Example Ex) to create a movie clip symbol, follow the following steps: Ex) to create a movie clip symbol, follow the following steps: 1. First create/ او ))import the object(s) to be converted into a movieclip. Import an image onto the stage using Ctrl+R. 2. Select the object(s) and then press F8 (or Modify >> Convert to Symbol). 3. Select the Movieclip type and name the symbol, say 'mc_fade').

3 Flash MovieClip Symbols The best thing about using movieclips is that you can control them with ease. افضل شي في استخدام موفي كليب هو امكانية التحكم بها بسهولة The best thing about using movieclips is that you can control them with ease. افضل شي في استخدام موفي كليب هو امكانية التحكم بها بسهولة you can change their dimensions, position, color, and other properties and can even duplicate and delete them. يمكنك تغيير ابعادها وموقعها ولونها وخصائص اخرى كما يمكنك اضافتها بشك متكرر وحذفها you can change their dimensions, position, color, and other properties and can even duplicate and delete them. يمكنك تغيير ابعادها وموقعها ولونها وخصائص اخرى كما يمكنك اضافتها بشك متكرر وحذفها Movie clip symbols have instance names which helps in accessing them within actionscript. هو يملك instance names مما يساعدك في الوصول اليه من خلال الاكشن Movie clip symbols have instance names which helps in accessing them within actionscript. هو يملك instance names مما يساعدك في الوصول اليه من خلال الاكشن

4 MovieClip Symbols Example 3. Double-click the instance of 'mc_fade' on the stage to switch to its symbol-editing mode. 4. Now create an animation sequence (you can use simple Tweened Animation or Frame-by- Frame Animation) Tweened AnimationFrame-by- Frame AnimationTweened AnimationFrame-by- Frame Animation

5 MovieClip Symbols Example 5. The previous figure الرسمة السابقة )) shows the Timeline of the Movieclip symbol. Click Scene 1 to exit from the symbol editing mode. 6. Save your work and test the Movie (Ctrl + Enter). That's it your movieclip is ready! Its that simple. 7. Add another scene, then move the created movie clip symbol onto the stage.

6 Moving MovieClip Symbols Example Ex) This example shows how we could access movie clip symbol within action script. هذا المثال يعرض كيف يمنك الوصول الى موفي كليب من خلال الاكشن Ex) This example shows how we could access movie clip symbol within action script. هذا المثال يعرض كيف يمنك الوصول الى موفي كليب من خلال الاكشن 1. Create a new flash file 2. draw a small circle onto the stage and convert it to movie clip symbol. 3. Give this symbol an instance name (circle) اعطي هذا الرمز 4. Create four buttons. Each button will be used to move the movie clip symbol (circle) in one of the four directions(up, down, left, right) انشىء 4 ازرار كل زر يستخدم لتحريك الرمز في الموفي واحدة من الاربع الحركات ( اعلى، اسفل ،شمال،يمين )

7 Moving MovieClip Symbols Example Note: the upper-left corner has the coordinates (0,0). احداثيات الزاوية العليا اليسرى Note: the upper-left corner has the coordinates (0,0). احداثيات الزاوية العليا اليسرى To move the movieclip symbol down, increments y-axis. لتحريك رمز في موفي الى الاسفل نزيد على To move the movieclip symbol down, increments y-axis. لتحريك رمز في موفي الى الاسفل نزيد على To move the movieclip symbol up, decrements y-axis. لتحريك رمز في موفي الى الاعلى ننقص على To move the movieclip symbol up, decrements y-axis. لتحريك رمز في موفي الى الاعلى ننقص على To move the movieclip symbol right, increments x-axis. لتحريك رمز في موفي الى اليمين نزيد على To move the movieclip symbol right, increments x-axis. لتحريك رمز في موفي الى اليمين نزيد على To move the movieclip symbol left, decrements x-axis. لتحريك رمز في موفي الى اليسار ننقص على To move the movieclip symbol left, decrements x-axis. لتحريك رمز في موفي الى اليسار ننقص على

8 Moving MovieClip Symbols Example 5. Add the following code to the up button: ضف الكود التالي على زر الاعلى on( press) { circle._y = circle._y – 10; } circle._y: it is the y-axis for the circle movie clip symbol

9 Moving MovieClip Symbols Example 6. Now, by your self write the action script for the other buttons. الان بنفسك اكتب الاكشن للازرار الاخرى 7. Test the application


Download ppt "Flash MovieClip Symbols Movieclip symbols are reusable pieces of flash animation هي قطع من حركات الفلاش يعاد استخدامها عدة مرات Movieclip symbols are reusable."

Similar presentations


Ads by Google