I made a library command called PointOut. What it does is gently point something out without being insistent (not modal). It is useful for showing gadget-specific help tips, advising of a new status, describing contents of pictures, really the possibilities are endless. Here's a small demo showing some right-click help:
http://www.networkmaestro.com/testpointout.exe
I don't know if anyone beyond me is going to be interested in it, but if you want it you're welcome to it:
http://www.networkmaestro.com/PointOut.zip
Usage: PointOut(WindowID, GadgetID, text.s [,timeoutsecs] )
It will point at the gadget you specify, located on the WindowID. Timeout is optional, there is a close link on it.
PointOut() command
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
PointOut() command
BERESHEIT
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Code: Select all
gif$="http://www.networkmaestro.com/gramma.gif"
url$ = "about:<html><body scroll='no' leftmargin='0' topmargin='0'><img src='"+gif$+"'></img></body></html>"
ContainerGadget(4,210,110,204,235,#PB_Container_Double)
WebGadget(3, 0, 0, 200, 232, url$ )
BERESHEIT