| grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » SelectedTimecode() | Version 2.2 |
SelectedTimecode 関数は、選択されたタイムコード・オブジェクトのハンドルを返します。詳しくは タイムコード・ショー を参照してください。
この関数は、引数を受け取りません。
選択したタイムコード・ショーに関するすべての情報を、Dump() 関数を用いて Command Line History に出力します。
Lua |
return function () -- The following prints the dump for the selected timecode object local myTimecodeShow = SelectedTimecode() if myTimecodeShow ~= nil then Printf("=============== START OF DUMP ===============") myTimecodeShow:Dump() Printf("================ END OF DUMP ================") end end |