Summary
Objo Studio Version
macOS
Operating System
Select the operating system(s) affected as tags for this post.
Steps To Reproduce
create projet
add canvas
add event "MouseDown"
hit text:
# Show context menu on right-click
If button = 1 Then
Var menu As New ContextMenu
menu.AddItem("Cut")
menu.AddItem("Copy")
menu.AddItem("Paste")
menu.AddSeparator()
menu.AddItem("Select All")
Var selected As String = menu.ShowAt(Canvas1, x, y)
If selected = "Cut" Then
# Handle cut
ElseIf selected = "Copy" Then
# Handle copy
ElseIf selected = "Paste" Then
# Handle paste
End If
End If
run prog
click right-click mouse
nothing happen
reclick right-click mouse
oh no!! the spinning wheel of death is here 🙂
Expected Result
Actual Result
Screenshots, Logs, Or Sample Project