利用Tweener製作動畫 – 其他參數

因為這陣子馬老師擔任了崇右數位媒體設計系的系主任後業務繁忙,好久沒在部落格上貼文章了,現在總算有些空檔可以繼續貼文,之前寫了有關利用Tweener製作動畫的文章,接著這篇文章來介紹在Tweener中其他可用的參數,請各位參考,不過詳細的部分還是可以參考官網的說明。


delay:可以設定在動畫完成後多久,再接續進行下一動畫(Tweener delay 範例

import caurina.transitions.Tweener

Tweener.addTween(ball, {x:150, time:1});
//用一秒鐘的時間移動ball元件至x為150的位置
Tweener.addTween(ball, {y:100, time:1, delay: 2});
//等待兩秒後用一秒鐘的時間移動ball元件至y為100的位置

getTweenCount:取得目前動畫的補間數量(Tweener getTweenCount 範例

import caurina.transitions.Tweener

Tweener.addTween(ball, {x:150, time:2});
Tweener.addTween(ball, {y:100, time:2,delay:2});
txt.text="元件Ball共有" + Tweener.getTweenCount(ball) + "段補間動畫"

getTweens:取得目前動畫所更改元件的屬性(Tweener getTweens 範例

import caurina.transitions.Tweener

Tweener.addTween(ball, {x:150, y:100, alpha:1, time:2});
txt.text="元件Ball共被製作了" + Tweener.getTweens(ball) + "的屬性變化"
//輸出元件被補間的屬性

getVersion:取得目前使用Tweener的版本(Tweener getVersion 範例

import caurina.transitions.Tweener

Tweener.addTween(ball, {x:150, y:100, time:2});
txt.text="本動畫使用Tweener版本為:" +Tweener.getVersion()
//輸出元件使用Tweener的版本

onStart、onUpdate、onComplete:分別在補間「開始」、「進行中」、「結束」呼叫不同的函數執行(Tweener complex 範例

import caurina.transitions.Tweener
import flash.events.MouseEvent;

Tweener.addTween(ball, {x:150, y:100, time:3,onStart:startFn,onUpdate:updateFn,onComplete:completeFn});
/*用三秒鐘的時間移動ball元件至x為150和y為100的位置
開始時執行startFn函數
過程中執行updateFn函數
完成後執行completeFn函數
*/
function startFn(){
	ball.alpha=0.1
}

function updateFn(){
	ball.alpha+=0.02
	txt.text="球體正在移動"
}

function completeFn(){
	ball.alpha=1
	txt.text="現在可以拖曳球體"
	ball.addEventListener(MouseEvent.MOUSE_DOWN,downFn)
	ball.addEventListener(MouseEvent.MOUSE_UP,upFn)
	function downFn(e:MouseEvent){
		ball.startDrag()
	}
	function upFn(e:MouseEvent){
		ball.stopDrag()
	}
}

addCaller:在指定的時間內呼叫某函數N次(Tweener addCaller 範例

import caurina.transitions.Tweener
var i=0
no.text=i
Tweener.addCaller(no, {onUpdate:go, time:10, count:10 , transition:"linear"});
//在10秒內針對no執行10次go函數
//Tweener.addCaller(no, {onUpdate:go, time:10, count:10 , transition:"easeinquad"});
//在10秒內針對no執行10次go函數且速度越來越慢

function go(){
	i++
	no.text=i
}

controlTweens:控制由Tweener所產生的動畫(Tweener controlTweens 範例

import caurina.transitions.Tweener

Tweener.addTween(ball, {x:280, time:20,transition:"linear"});

pauseBtn.addEventListener(MouseEvent.CLICK,pauseFn)
resumeBtn.addEventListener(MouseEvent.CLICK,resumeFn)

function pauseFn(e:MouseEvent){
	pauseBtn.visible=false
	resumeBtn.visible=true
	Tweener.pauseAllTweens(); 
}

function resumeFn(e:MouseEvent){
	pauseBtn.visible=true
	resumeBtn.visible=false
	Tweener.resumeAllTweens(); 
}

soundVolume:利用Tweener來控制音量(Tweener soundVolume 範例

import caurina.transitions.Tweener;
import caurina.transitions.properties.SoundShortcuts;
SoundShortcuts.init();

var snd:Sound = new heavy  ;
var chn:SoundChannel = new SoundChannel  ;
chn = snd.play(0,1000);

btn.addEventListener(MouseEvent.CLICK,clickFn)

function clickFn(e:MouseEvent){
	Tweener.addTween(chn, {_sound_volume:0, time:10});
}
//點選按鈕後聲音會在十秒內逐漸歸零

FilterShortcut:Tweener也可以控制Flash中的各種濾鏡,利用濾鏡來製作動畫或互動(blurFilter 範例dropShadowFilter 範例

blurFilter –

import flash.filters.*; 
import caurina.transitions.properties.FilterShortcuts;
import caurina.transitions.Tweener
FilterShortcuts.init();

var blur:BlurFilter=new BlurFilter

stage.addEventListener(MouseEvent.CLICK,clickFn)
function clickFn(e:MouseEvent){
	Tweener.addTween(ball, {time:0,_Blur_blurX:20,_Blur_blurY:20});
	Tweener.addTween(ball, {x:mouseX, y:mouseY, time:2,_Blur_blurX:0,_Blur_blurY:0, transition:"easeOutQuart"});
}

dropShadowFilter –

import caurina.transitions.properties.FilterShortcuts;
import caurina.transitions.Tweener
import roMc

FilterShortcuts.init();
stage.addEventListener(Event.ENTER_FRAME,shadowFn)
function shadowFn(e:Event){
	Tweener.addTween(ball, {time:0,_DropShadow_angle:roMc.ro(ball)+180,_DropShadow_distance:6});
}

以上是有關Tweener參數的一些範例,這邊也把Tweener Parameters 壓縮檔給各位,提供有興趣的同學參考。

You may also like...

3,978 Responses

  1. I cherished as much as you will receive performed proper here. The caricature is attractive, your authored material stylish. nonetheless, you command get got an edginess over that you would like be handing over the following. sick definitely come further formerly once more as precisely the similar nearly a lot frequently inside of case you defend this hike.

  2. sky88表示:

    I was excited to uncover this site. I wanted to thank you for your time just for this wonderful read!! I definitely enjoyed every bit of it and i also have you book marked to look at new stuff in your site.

  3. Wonderful work! This is the type of info that should be shared around the web. Shame on the search engines for not positioning this post higher! Come on over and visit my web site . Thanks =)

  4. I enjoy this website, will certainly arrive back. Make sure you carry on writing high quality posts.

  5. You must continue your writing.. Great post. A rise in A lot more Amazing.

  6. Great entry. I found the content very useful. Appreciated the method you detailed everything.

  7. Если вы искали где отремонтировать сломаную технику, обратите внимание – сервисный центр в челябинске

  8. Если вы искали где отремонтировать сломаную технику, обратите внимание – выездной ремонт бытовой техники в челябинске

  9. when it comes to video games, i enjoy playing those that have very nice graphics and story like Plantz and Zombies`

  10. Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт бытовой техники в барнаул

  11. Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт техники в барнауле

  12. There are a handful of fascinating points at some point in the following paragraphs but I do not know if they all center to heart. There exists some validity but Let me take hold opinion until I look into it further. Great post , thanks and then we want a lot more! Included in FeedBurner at the same time

  13. Jessewrify表示:

    The Cruciality of Vibrations Management Equipment in Machines
    In industrial sites, machinery along with turning systems are the backbone of output. However, one of the commonly frequent challenges which might hinder the performance along with lifetime remains vibration. Vibrations might cause a array of challenges, such as lowered perfection along with productivity to increased erosion, in the end resulting in expensive interruptions as well as maintenance. This is where resonance control apparatus becomes essential.

    The Reason Vibration Control proves Critical

    Vibration in industrial equipment might bring about multiple harmful consequences:

    Minimized Production Effectiveness: Excess resonance can cause misalignments and unbalance, lowering total productivity of the machinery. Such a scenario might cause slower production schedules and increased energy consumption.

    Increased Deterioration: Ongoing resonance accelerates the wear and tear of equipment components, leading to additional maintenance as well as the possibility of unexpected failures. This does not just heightens production expenses but also reduces the durability for the existing devices.

    Safety Risks: Excessive vibrations may pose significant dangers to both the machinery along with the workers. In severe cases, severe cases, these could bring about catastrophic equipment failure, threatening personnel and leading to significant destruction to the facility.

    Precision and Quality Issues: For industries which depend on exact measurements, such as industrial sectors and space industry, oscillations might cause errors in the manufacturing process, resulting in defective products as well as greater waste.

    Economical Solutions to Vibration Management

    Investing in oscillation control systems is not only necessary and a smart decision for any business any industry dependent on machines. Our advanced vibration management systems work to engineered to mitigate resonance within any machinery and spinning equipment, guaranteeing smooth along with efficient functioning.

    Something that sets our tools from others is its affordability. We understand the significance of cost-effectiveness in the competitive market of today, which is why we provide high-quality vibration regulation systems at costs that are reasonable.

    Opting for our equipment, you’re not only protecting your machines and increasing its productivity as well as investing into the long-term achievement of your company.

    In Conclusion

    Vibration management is a vital element of maintaining the efficiency, safety, along with lifespan of your equipment. With our affordable vibration control equipment, you can ensure that your production run smoothly, your products maintain high quality, along with your workers stay secure. Never allow oscillation jeopardize your operations—put money in the correct apparatus now.

  14. Jxiavn表示:

    mestinon 60 mg over the counter – imuran 50mg ca imuran pill

  15. Профессиональный сервисный центр по ремонту варочных панелей и индукционных плит.
    Мы предлагаем: варочная панель ремонт
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  16. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем:сервисные центры в екатеринбурге
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  17. Super post it is definitely. I have been waiting for this content.

  18. i always admire PETA, they really protect some of the helpless animals on this planet,.

  19. Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт цифровой техники челябинск

  20. Профессиональный сервисный центр по ремонту источников бесперебойного питания.
    Мы предлагаем: ремонт плат ибп
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  21. allergies can be a menacing sickness specially if you get stuffy nose and rashes all overy your body each day,

  22. Если вы искали где отремонтировать сломаную технику, обратите внимание – профи тех сервис новосибирск

  23. Если вы искали где отремонтировать сломаную технику, обратите внимание – сервисный центр в барнаул

  24. Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт бытовой техники в новосибирске

  25. I conceive other website proprietors should take this internet site as an model, very clean and good user pleasant style .

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。