المشاركة الأصلية بواسطة ثامر أبو بلقيس
مشاهدة المشاركة
وجزاك الله خيرا
posicion = 0;
for belkis = posicion, 101 do
Progress.SetCurrentPos("Progress1", posicion);
Progress.SetText("Progress1", posicion.."%");
posicion = posicion +1;
if (belkis > 0 and belkis <=20) then
Label.SetText("Label1", "% 20");
elseif (belkis > 20 and belkis <= 40) then
Label.SetText("Label1", "% 40");
elseif (belkis > 40 and belkis <= 60) then
Label.SetText("Label1", "% 60");
elseif (belkis > 60 and belkis <= 80) then
Label.SetText("Label1", "% 80");
elseif (belkis > 80 and belkis <= 90) then
Label.SetText("Label1", "% 90");
elseif (belkis > 90 and belkis <= 97) then
Label.SetText("Label1", "% 97");
elseif (belkis > 97 and belkis <= 100) then
else
Label.SetText("Label1", "% 100");
end
Application.Sleep(50);
end
Audio.Load(CHANNEL_NARRATION, "AutoPlay\\Audio\\120.mp3", true, false);
Progress.SetCurrentPos("Progress1", 0);
Label.SetText("Label1", "");

تعليق