-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d80b831
commit c629977
Showing
10 changed files
with
94 additions
and
36 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
function Initialize() | ||
|
||
SetMeasures() | ||
|
||
end | ||
|
||
function SetMeasures() | ||
|
||
local _temp = 0 | ||
TimeMeasure = SKIN:GetMeasure('MeasureTime') | ||
TimeValue = TimeMeasure:GetStringValue() | ||
|
||
if string.len(TimeValue) == 3 then | ||
|
||
TimeValue = " "..TimeValue | ||
|
||
end | ||
|
||
for cha in string.gmatch(TimeValue, ".") do | ||
|
||
_temp = _temp + 1 | ||
SKIN:Bang("!SetOption", "Measure".._temp.."Char", "String", cha) | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters