Jump to content
Advert

foray

Members
  • Posts

    16
  • Joined

  • Last visited

foray's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. thanks alot!!!!
  2. i mean this function below. i have not realy an idea how to describe this function. you can group serveral rows/columns and group than, than you can expand them by clicking the plus symbol or hide them by click on minus button. THANKS!
  3. :push: no one?
  4. hey there, i checked the integrated excel udf and the excelcom here in the forum, but it looks like no version supports a GROUP Command. Does someone know a workaround?! Thanks for help! Greets
  5. Hey, i tried to run a script with several send key actions on a win2003 & win2008 server. when i´m logged in via remotescreen, the script is doing stuff very well, but if i close the remote session (not user log out) it seems that the send key action doesnt work anymore?! Winactivate works, send keys not... hmm, is this bug/feature known? is there maybe a workaround i dont know?! thanks!
  6. thanks again, but the basic stuff i already know, but i have no clue howto integrate it can u gimme a little example, would be great!
  7. hmm thanks at all, but how to integrate a timer?! any ideas/hints? thanks!
  8. hey there, i got a small problem. sometimes my function call "protector($protectthreadlink[0], $hostername[0])" needs to much time or hang up at all, cause of the website isn´t reachable or something like that. is there any way to skip the current function call and go to the next $i?! best case would be a timer for about 10 seconds. if function dosnt get ready at this 10 seconds, skip to the next entry... hotkey would be also possible! maybe someone can help! Thanks! While 1 Sleep(10) WEnd Func decrypt() $SourceCode = _FFReadHTML() select Case StringInStr ($SourceCode,"protector.to") = True $protectthread = _StringBetween($SourceCode, '<div class="fileinfo">','<td class="name">') For $i = 0 To UBound($protectthread) -1 $hostername = _StringBetween($protectthread[$i], 'Hoster: ','<br') $protectthreadlink = _StringBetween($protectthread[$i], 'a href="','"') protector($protectthreadlink[0], $hostername[0]) Next EndSelect EndFunc
  9. i try to get this working "hidden", but no chance actualy with this solution. someone else has another ideas? maybe with ie.au3 or http.au3 ?! thanks!
  10. thanks for help, works fine for www.autoitscript.com but unfortanely not for my use (for example http://newsurl.de/u/hQuveeH) any ideas?!
  11. hey there i receive a sourcecode from a webpage with "_INetGetSource", due to the redirect in the startingurl the ending url isn´t the starturl i throw in "_INetGetSource". is there a way to get the ending url?! or another HIDDEN solution?! thankssss!
  12. hey everyone, i try to get a sourcecode from an iframe, but i have fucking no idea how. maybe some can help please. affect link for example http://linksave.in/mHAgkjU5lGdbMDMjMG04MDQ...OW0gOTugM2dbk2g . with firebug you can read the url from the iframe, but i have no idea how to do with autoit... extracting the html code dosnt work ..... //edit: maybe it helps.. the searched link is http://netload.in/dateioft6jlugfb/Fast.and...D.part1.rar.htm
  13. no way to edit/delete post, sorry. problem solved!
  14. hi there, i tryed the received.au3, but it didn´t work for me?! maybe someone else can check it please?! i deleted some code from the received.au3 i didn´t need, for example "online check" and so on.. skype is online, Skype4COM.dll is in the same folder like the edited *.au3, *.au3 script is running, some incoming chatevents on skype BUT it seems the code never jumped in one of these functions?! Sending a msg with another autoit script to a specified user/chat works fine! where is the mistake?! maybe someone can help please... below the code: ;// Create a Skype4COM object: $oSkype = ObjCreate("Skype4COM.Skype") $oSkypeEvent = ObjEvent($oSkype,"Skype_") $oError = ObjEvent("AutoIt.Error","MyErrFunc") ;// Declare the following Skype constants: $cAttachmentStatus_Available = $oSkype.Convert.TextToAttachmentStatus("AVAILABLE") $cMessageStatus_Sending = $oSkype.Convert.TextToChatMessageStatus("SENDING") $cMessageStatus_Received = $oSkype.Convert.TextToChatMessageStatus("RECEIVED") $cMessageType_Said = $oSkype.Convert.TextToChatMessageType("SAID") $cMessageType_Left = $oSkype.Convert.TextToChatMessageType("LEFT") ;// Sleep While 1 Sleep(1000) WEnd ;// The AttachmentStatus event handler monitors attachment status and automatically attempts to reattach to the API following loss of connection: Func Skype_AttachmentStatus($aStatus) MsgBox(0,"","Attachment status " & $oSkype.Convert.AttachmentStatusToText($aStatus)) If $aStatus = $oSkype.Convert.TextToAttachmentStatus("AVAILABLE") Then $oSkype.Attach() EndIf EndFunc ;// The MessageStatus event handler monitors message status, decodes received messages and, for those of type "Said", sends an autoresponse quoting the original message: Func Skype_MessageStatus($aMsg, $aStatus) MsgBox(0,"","Message " & $aMsg.Id & " status " & $oSkype.Convert.ChatMessageStatusToText($aStatus)) If $aStatus = $cMessageStatus_Received Then DecodeMsg($aMsg) If $aMsg.Type = $cMessageType_Said Then MsgBox(0,"","TEST") ;$oSkype.SendMessage($aMsg.FromHandle, "This is autoresponse.") $aMsg.Chat.SendMessage("You said [" & $aMsg.Body & "]") EndIf EndIf EndFunc ;// The DecodeMsg event handler decodes messages in a chat and converts leave reasons to text for messages of type "Left": Func DecodeMsg($oMsg) MsgBox(0,"","DecodeMsg TEST") $sText = $oMsg.FromHandle & " " & $oSkype.Convert.ChatMessageTypeToText($oMsg.Type) & ":" If StringLen($oMsg.Body) Then $sText = $sText & " " & $oMsg.Body EndIf Dim $oUser For $oUser In $oMsg.Users $sText = $sText & " " & $oUser.Handle Next If $oMsg.Type = $cMessageType_Left Then $sText = $sText & " " & $oSkype.Convert.ChatLeaveReasonToText($oMsg.LeaveReason) EndIf MsgBox(0,"",$sText) EndFunc Func MyErrFunc() ;Do Nothing EndFunc
  15. damn, yeah. i searched already but dind´t found this post! thanks alot! problem solved!
×
×
  • Create New...