ok, try with this one.
should not do that, but have to set the slider come from down perhaps...

yep, otherwise it looks pretty stupid when it flyis accross the screen...

code:
;Used bbChecker as a source to test steal focus thingie
$m = CreateObject("kixtart.form")
$m.caption = "Steal Focus - Main"
$m.width = 200
$m.height = 100
$m.center
$fbe = $m.button("Exit",60,50,80,20)
$fbe.onclick = "$$m.visible = 0"
$Loop = $m.timer(5000)
$Loop.ontimer="$$loop.interval=0 update() $$loop.interval=2000"
$m.visible=1
While $m.visible $x=Execute($m.doevents(1)) Loop


Function update()
$p = CreateObject("kixtart.form")
$p.caption = "Steal Focus - Child"
$p.width = 200
$p.height = 100
$p.center
$p.top=$p.top+100
$pfbe = $p.button("Exit",60,50,80,20)
$pfbe.onclick = "$$p.visible = 0"
$pLoop = $p.timer(2000)
$pLoop.ontimer="$$ploop.interval=0 $$p.visible=0"
$p.show(2)
$p.ShowInTaskbar = 0
$p.show
$p.TopMost = 1
While $p.visible $y=Execute($p.doevents) Loop
EndFunction

_________________________
!

download KiXnet