Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/25/2013 in all areas

  1. UEZ

    AIK

    Here the full package: http://www.mediafire.com/?7f9brykv63q8l0h Br, UEZ
    2 points
  2. . i think you have a simple spelling mistake Local $oForm = _IEFormGetObjByName($oIE, "qbqf") . you look for form "gbqf", but you enter "qbqf". could that be ? E.
    1 point
  3. jaberwacky

    AutoItObject UDF

    It's an autoit thing I'm pretty sure because try this too. #include-once #include "AutoItObject.au3" _AutoItObject_StartUp() Global $this = _AutoItObject_Class() $this.AddProperty("E", $elscope_readonly, '~') ConsoleWrite($this.Object.E & @CRLF) _AutoItObject_Shutdown() E being used for exponents.
    1 point
  4. JLogan3o13

    Silly one

    Well then, Destiner, dude... How about providing some more information? What OS are you running this on? What version of AutoIt? The example I supplied works on XP 32 bit, and WIN7 both 32 and 64 bit. The fact that you're encountering a problem is why we're asking for more info. "I just want to take some data from webpage by copy/paste and type it in some application" doesn't really describe in detail what your end goal is. Not to mention that you didn't mention until now that you're trying to pull data from a webpage and not notepad. If you had, we would have suggested the built in IE functions. You're asking us to first guess at what you're trying to do, and then troubleshoot for you. How about you help us help you
    1 point
  5. We knew already for a while that you don't care about anything else than yourself, but what really puzzles me is why you stick around moaning about it all like a little kid. Why this urge to prove whatever it is you want to prove or is it just that you take pleasure from all of this? Either way... grow up or simply go a play somewhere else. Jos
    1 point
  6. Give Jon a chance, he's taken a big step back since when you left, so he can start moving forward on his own terms. So far he seems to be putting the time and effort in and I think he'll make progress. New features/functions have been almost entirely from MVP requests. Adding FuncName() is probably going to cause problems (or just return blank for anonymous functions) when/if functions do become first class, that's not a reflection on how much Jon understands what you were trying to do. You were ahead of your time, but refused to compromise, so everyone loses out unfortunately. And I think you are going to continue to see features you started implementing being "cherry picked" in a similar way to this I'm afraid.
    1 point
  7. trancexx, Quite - I was expecting a response like that from you but I am disappointed to see my expectations confirmed. And I hope that it is equally clear to you that you have now had your final warning. So please no more complaining about the way AutoIt is developing - you had your chance to influence it, but that time has now gone. Let it drop. M23
    1 point
  8. trancexx, Then you should have stayed and helped develop AutoIt rather than resigning as a developer and continually bitching from the sidelines. We have all had more than enough of this never-ending carping from you - Jos has asked and now I am telling you to stop it. AutoIt is advancing in the direction that the original author wishes and if you do not like it then you know what you can do. M23
    1 point
  9. jaberwacky

    AIK

    I was able to find the DLLs. I hope they are the right thing. I looked at the functions in DllExplorer. http://www.mediafire.com/download/pl39b9rw80w0cvp/ikpMP3.dll http://www.mediafire.com/download/w8apmnw267wuwul/ikpFlac.dll http://www.mediafire.com/download/6us1klm4kkfjvkm/AIK.dll http://www.mediafire.com/download/4z9fcsulbw7yi0z/irrKlang.dll
    1 point
  10. Ascend4nt

    Read Hex

    nice, kylomas! But what about a hex-to-braille converter. i'm sure UEZ can find some GDI+ way to pop shit out of the monitor
    1 point
  11. kylomas

    Read Hex

    You just HAD to suggest that.... local $v = ObjCreate("SAPI.SpVoice") If IsObj($v) Then $v.Speak('dd612c10f330c7e79832bf81f4cd')
    1 point
  12. Ascend4nt

    Read Hex

    What's wrong with you people. Can't you see he's blind
    1 point
  13. Labels work identically to buttons as far as being an actionable control. The only difference is that the label doesn't look like a button when it's clicked. #include <GUIConstantsEx.au3> Example() Func Example() Local $widthCell, $msg, $iOldOpt GUICreate("My GUI") ; will create a dialog box that when displayed is centered GUISetHelp("notepad.exe") ; will run notepad if F1 is typed $label = GUICtrlCreateLabel("CLICK ME", 10, 30) GUICtrlSetBkColor(-1, 0x000000) GUICtrlSetColor(-1, 0xffffff) GUISetState() ; will display an empty dialog box ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE ExitLoop case $label Run("notepad.exe") EndSwitch WEnd $iOldOpt = Opt("GUICoordMode", $iOldOpt) EndFunc ;==>Example
    1 point
×
×
  • Create New...