أولاً نفتح عمل جديد نجعل لون المسرح أسود
ثانياً نختار أداة المربع
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]
وغير الألوان مثل الصورة
ثم نرسم مربع صغير الحجم (أي مقاس لكن المهم أن
يكون صغير الحجم)
ثالثاً نحوله إلى موفي كليب ونسميه one_bar كما
بالصورة ويجب وضع علامة صح كما في ااصورة أيضاً
بالصورة ويجب وضع علامة صح كما في ااصورة أيضاً
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]
عد تحويله إلى موفي كليب نحذفه من المسرح ويبقى في المكتبة
رابعأً نختار أداة المربع ونغير الألوان كما في الصورة
ثم نرسم مربع متوسط الحجم ثم نحوله إلى موفي كليب
ونسميه spectrum_analyzer
كما في الصورة
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]
ثم نضغط على مرتين لكي ندخل لأعدادات الموفي نضع
هذا الكود في أول فريم
Code:
spacing = 1; // Spacing between bars.
margin = 3; // Shift all bars to right.
tot_bars = 21; // Total Spectrum Bars.
max_height = 20; // Maximum height of line in bars.
// ----------------------------------
// The spectrum definitions.
// ----------------------------------
// low = lowest the line(s) will go.
// high = highest the line(s) will go.
// n = number of lines affected.
// Make sure the sum of your n's = tot_bars.
// Example Rock Spectrum.
rock_spectrum = [
{low:5,high:20,n:2},
{low:12,high:20,n:8},
{low:3,high:15,n:3},
{low:7,high:15,n:3},
{low:5,high:10,n:3},
{low:0,high:5,n:2}
];
// Start the spectrum analyzer.
analyzer(rock_spectrum);
// ----------------------------
// Simulated Spectrum Analyzer
// ----------------------------
// spectrum : Array Spectrum Definition.
// isOn : Boolean - Turn on or off Analyzer
function analyzer(spectrum){
// Index of first bar range, first {low:#, high:#, n:#}
var curRange = 0;
// Number of lines the current range will affect.
var numLines = spectrum[curRange].n;
// Generate the vertical bar lines.
for(var i = 0; i < tot_bars; i++){
// Attach a one_bar movieclip.
var bar = this.attachMovie('one_bar','bar'+i,(i+1));
// Position the movieclip based on its width,
// spacing and margin specified in our variables.
bar._x = i * (bar._width + spacing) + margin;
// Set the bar's range to the current range.
bar.r = spectrum[curRange];
// Animate the bar vertically.
bar.onEnterFrame = function(){
// Choose a random number between the range we specified.
var h = Math.round(Math.random() * (this.r.high - this.r.low) + this.r.low);
// Using the random height, we generate more bars accordingly.
for(var i = 0; i < h; i++){
// Attach another bar.
var bar = this.attachMovie('one_bar','bar'+i,(i+1));
// Put it above the last bar.
bar._y -= i * (bar._height + spacing);
// Immediatly start fading the bar.
bar.onEnterFrame = function(){
this._alpha -= 20;
// If completely faded, remove the MovieClip.
if(this._alpha == 0) this.removeMovieClip();
}
}
}
// Countdown the number of lines we setup.
numLines--;
// If we reach 0, it is time to get the next range from our spectrum array.
if(numLines == 0) curRange++, numLines = spectrum[curRange].n;;
}
}
// --------------------------
// Turning off the Analyzer.
// --------------------------
function turnOff(){
// Loop through the number of vertical lines.
for(var i = 0; i < tot_bars; i++){
var bar = this['bar'+i];
// Stop the animation.
delete bar.onEnterFrame;
// Loop through the number of bars on the line, except first one.
for(var j = 1; j < max_height; j--){
// Remove the bars.
var b = bar['bar'+j].removeMovieClip();
}
}
}
margin = 3; // Shift all bars to right.
tot_bars = 21; // Total Spectrum Bars.
max_height = 20; // Maximum height of line in bars.
// ----------------------------------
// The spectrum definitions.
// ----------------------------------
// low = lowest the line(s) will go.
// high = highest the line(s) will go.
// n = number of lines affected.
// Make sure the sum of your n's = tot_bars.
// Example Rock Spectrum.
rock_spectrum = [
{low:5,high:20,n:2},
{low:12,high:20,n:8},
{low:3,high:15,n:3},
{low:7,high:15,n:3},
{low:5,high:10,n:3},
{low:0,high:5,n:2}
];
// Start the spectrum analyzer.
analyzer(rock_spectrum);
// ----------------------------
// Simulated Spectrum Analyzer
// ----------------------------
// spectrum : Array Spectrum Definition.
// isOn : Boolean - Turn on or off Analyzer
function analyzer(spectrum){
// Index of first bar range, first {low:#, high:#, n:#}
var curRange = 0;
// Number of lines the current range will affect.
var numLines = spectrum[curRange].n;
// Generate the vertical bar lines.
for(var i = 0; i < tot_bars; i++){
// Attach a one_bar movieclip.
var bar = this.attachMovie('one_bar','bar'+i,(i+1));
// Position the movieclip based on its width,
// spacing and margin specified in our variables.
bar._x = i * (bar._width + spacing) + margin;
// Set the bar's range to the current range.
bar.r = spectrum[curRange];
// Animate the bar vertically.
bar.onEnterFrame = function(){
// Choose a random number between the range we specified.
var h = Math.round(Math.random() * (this.r.high - this.r.low) + this.r.low);
// Using the random height, we generate more bars accordingly.
for(var i = 0; i < h; i++){
// Attach another bar.
var bar = this.attachMovie('one_bar','bar'+i,(i+1));
// Put it above the last bar.
bar._y -= i * (bar._height + spacing);
// Immediatly start fading the bar.
bar.onEnterFrame = function(){
this._alpha -= 20;
// If completely faded, remove the MovieClip.
if(this._alpha == 0) this.removeMovieClip();
}
}
}
// Countdown the number of lines we setup.
numLines--;
// If we reach 0, it is time to get the next range from our spectrum array.
if(numLines == 0) curRange++, numLines = spectrum[curRange].n;;
}
}
// --------------------------
// Turning off the Analyzer.
// --------------------------
function turnOff(){
// Loop through the number of vertical lines.
for(var i = 0; i < tot_bars; i++){
var bar = this['bar'+i];
// Stop the animation.
delete bar.onEnterFrame;
// Loop through the number of bars on the line, except first one.
for(var j = 1; j < max_height; j--){
// Remove the bars.
var b = bar['bar'+j].removeMovieClip();
}
}
}
----------------------------------------------------------------------------------------------
واذا تريد تغير لون العمل تضغط عليه مرة واحدة ثم
تفعل كما بالصورة
تفعل كما بالصورة
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]
تختار أي لون تاني كما تحب
ملاحظة::
المقاسات في هذا الدرس ليست مهما جداً أيضاً كما
تحب
تحب
انتهى الدرس
31/05/14, 12:07 am من طرف hammoksha99
» ملف توسيع مدينة الاهرامات لأخر حد من غير جواهر
12/10/13, 12:24 am من طرف samerwafa
» انجاز مهمة العجائب بسعر منخفض
09/10/13, 04:38 am من طرف samerwafa
» تسريع بناء الهرم في مدينة الاهرامات
09/10/13, 04:35 am من طرف samerwafa
» برنامج Fidler اللي تحتاجة باختراق مدينة الاهرامات
20/02/13, 10:22 am من طرف هشـــــــــــــام
» حصرياً ارسال اي شيء بالمخزن بدون استثناء
25/10/12, 05:19 pm من طرف hالسيد مرسى
» ممكن ترحيب
12/08/12, 03:12 pm من طرف عاشق الرافدين
» اني مشتركة جديدة واريد ترحيب حار منكم
09/07/12, 10:47 pm من طرف غـروك وغــيروك
» برنامج لفصل صوت المغني عن اللحن
14/03/12, 02:33 am من طرف غـروك وغــيروك