B4J Question top most and fullscreen games

hossein16

New Member
hi
this is code for "setAlwaysOnTop":

top most b4j:
Sub setAlwaysOnTop(frm As Object, Value As Boolean)
    Dim frmJO As JavaObject = frm
    Dim stage As JavaObject = frmJO.GetField("stage")
    stage.RunMethod("setAlwaysOnTop", Array(Value))
End Sub

but, not working on fullscreen games
What is the solution?
tnx
 

hatzisn

Expert
Licensed User
Longtime User
Also you may want generally to take a look at this post by @stevel05

 
Upvote 0
Top