Jump to content

d4rk

Active Members
  • Posts

    883
  • Joined

  • Last visited

Everything posted by d4rk

  1. If StringInStr("Your HTML Source","Your KeyWord",2)<>0 then msgbox(64,"","Log in") Endif
  2. Source is in pocket once you search the web, just look _IE* in the UDFs document
  3. Check the cookies or check in the HTML sources, you can find some string like "Welcome back","Last visit at", ... anything prove his appearence
  4. Ok, logged in what? a site or his PC ?
  5. Thanks I've just figure out that the value of a key is only on the "First Line" , right after the '=' , i broke it into new line and get nothing.
  6. Hello every1, I'm having an .ini file which save my data inside ... I creat a gui, a label which will display the data in the ini file, everything goes well ... BUT if the text in the ini file is large, so the display text in label will only be on 1 LINE, And yes, I creat the label with width : 200 , height : 200 , which is large enough to have a new line if i manually add text, but it changes when i import from the ini file Thanks for your help
  7. Haven't seen any error with this $String='<div class="post-body">Player:manari<br/>Class:Swordsmen<br/>' $pos=StringInStr($String,"Player:",2) $pos1=StringTrimLeft($String,$pos+6) $pos2=StringReplace($pos1,"<br/>","") $pos3=StringReplace($pos2,"Class:","") $User=StringLeft($pos3,6) $Class=StringTrimLeft($pos3,6) MsgBox(64,"","User : " & $User & @CRLF & "Class : " & $Class)
  8. Look Here
  9. WinSetState("title","text",@SW_HIDE)
  10. Yep, you won't give him silver plate muttley
  11. I'm sorry but it's great to have an answer
  12. Resize to 50% of current : WinMove ( "title", "text", x, y [, width/2 [, height/2[, speed]]] ) sleep(3000) ;Let's back to normal WinMove ( "title", "text", x, y [, width [, height[, speed]]] ) Think you can figure out with those posts
  13. I scare my teacher with this $String="Hello, I'm Ghost !!!" $Array=StringSplit($String,"") For $i=1 to Ubound($Array)-1 Send($Array[$i]) Sleep(500) Next
  14. 1st not a smart solution but at least it can work $Size = WinGetPos("[active]") $X= $size[0] $Y= $size[1] While 1 Sleep(1000) $SizeNew=WinGetPos("[active]") if $SizeNew[0]<>$X or $SizeNew[1]<>$Y then WinMove("[active]",$X,$Y) endif Wend
  15. That's the answer for 2 and 3, the word CENTER and as i said, i don't remember exactly, so search or figure it yourself
  16. Hello evey1, I'm using Xskin , it's great but i wonder why can't i see the title var and the "X" button on it ? i see Va's demo and he has the X Thanks
  17. i don't remember exactly but maybe it's @DesktopHeight/2 @DesktopWidth/2
  18. GUICtrlSetState($CHECK,$GUI_HIDE)
  19. Fine, i've seen many of this kind, they aren't too dangerous, just write somethings to Registry , etc... and it's easier to remove them , but at least having a knowledge about it, this guy just tried to share somethings but at first he didn't know about it very well
  20. The AV read the signature in autoit, not the purpose of your script
  21. Hello every1, Sold ! But thanks every1 who've read and reply to this post
  22. Hey muttley This ones works , but in the post #7 isn't ... maybe you should release this sooner. Thx
  23. Weird, i do the same as you but i can't get the extension, it only works when i click on an already exist file ... but thanks anyway, i give up that script and start somewhere else.
×
×
  • Create New...