object-free 関数の StrToHandle は、16進数文字列をハンドルに変換します。文字列は、実際のハンドルに関連付けられている必要があります。
ハンドルの詳細や関連関数については、ハンドル を参照してください。
この例では、選択されているシーケンスのハンドル番号を16進数文字列として出力しています。また、この文字列をハンドルに変換し、これを用いてシーケンス名を出力しています。
local function main() local mySequence = SelectedSequence() -- Store the handle of the selected sequence local mySeqStr = HandleToStr(mySequence) -- Store a string with the handle converted to hex Printf("The handle for the selected sequence (string): " .. mySeqStr) Printf("The name of the selected sequence is: " .. StrToHandle(mySeqStr).name) end return main