Flash

FLV play back 시간 출력하자.

OJR 2008. 12. 2. 16:16

import mx.video.*;
var listenerObject:Object = new Object();
listenerObject.stateChange = function(eventObject:Object):Void {
    trace(my_FLVPlybk.state + ": playhead time is: " + my_FLVPlybk.playheadTime);
};
my_FLVPlybk.addEventListener("stateChange", listenerObject);
my_FLVPlybk.contentPath = "http://www.helpexamples.com/flash/video/water.flv";

F1 에 있는 내용

스킨경로도 사용자 정의URL로 바꿀수 있다.

'Flash' 카테고리의 다른 글

flash LoadVars  (0) 2008.12.28
Flash AS2 두 날짜 연산하기  (0) 2008.12.17
[Flash] 초간단 RadioButton  (0) 2008.11.22
[Flash] 풀스크린시 입력이 안된다.  (0) 2008.11.21
[Flash] AS2 초기설정  (0) 2008.11.19