UltraDMD v1.4.16042401 is now available.
I have more work to do. But I wanted to make something available as soon as I could.
Please let me know if you have any issues (other than what's listed in the 'known issues' on the download page). I do not have a color DMD. So this feature has received no testing. If you need to switch back to an earlier version, you'll need to Uninstall using Control Panel first.
>>x-rotation
Are you talking about rotate by 90 degrees? I think this would be a feature for XDMD.
BTW, this version includes DisplayScoreboard00 which displays scores with a variable width font, and includes comma for large number. If you are a table author and want to take advantage of this feature, please check for the minor version >= 4.
If UltraDMD.GetMinorVersion < 4 Then
MsgBox "Incompatible Version of UltraDMD found. Please update to version 1.4 or newer."
Exit Sub
End If
Or you can put your DisplayScoreboard inside an if clause
If UltraDMD.GetMinorVersion < 4 Then
' Old scoreboard '
UltraDMD.DisplayScoreboard { parameters }
Else
' New scoreboard with commas in large numbers '
UltraDMD.DisplayScoreboard00 { parameters }
End If
Edited by UltraPeepi, 25 April 2016 - 12:13 AM.