Jump to content

Hypertrophy

Active Members
  • Posts

    330
  • Joined

  • Last visited

Everything posted by Hypertrophy

  1. Yall don't understand. I'm not the best coder in the world and I don't want people using my script and an ugly-ass autoit error comes up. Can I change it where it doesn't say "AutoIt Error"
  2. bump. any others similar to vmprotect
  3. If my autoit .exe would have an error that i don't know about it would come up with an AutoIt Error saying Line -1 etc. Is there a directive or something I can do so no error pops up it just closes the .exe?
  4. VMProtect looks really promising. Do you know if it works with Autoit as i hear sometimes there are programs that don't work with autoit compiled exe's. And I can't obfuscate my code as i'm using adlibenable and run and execute and such. Valuater: Probably going to get flamed by you from this but I have tried more than once to get XProtec to work but I simply can't. I'm just too stupid Edit: Woah just got an alert for a detection of a trojan in the VMProtect I'm trying to install? help!?
  5. Are there any programs that you can purchase that will protect my script for me? I'm not good at security and can't find anything on here that will protect my program sufficiently.
  6. well this doesn't seem to work properly. are there any programs out there (autoit related or not) that i can use to protect my script?
  7. yes but will it even be on top of the directx? Edit: $WS_EX_TOPMOST has no effect. is there ANY way to overcome this problem? drawing over directx?
  8. I am faced with a problem on making my autoit window appear as a child window on a 3rd party app that uses a class called "DxWndClass". Is there a general solution to making controls appear on top of directx controls? here's the code im using to embed the gui onto the window. i notice that the directx is drawing over it. solution? $Child_GUI = GUICreate("", $clientsize[0], $clientsize[1], 0, 0, $WS_POPUP) DllCall("user32.dll", "int", "SetParent", "hwnd", WinGetHandle($Child_GUI), "hwnd", WinGetHandle($list[$n][0])) GUISetState(@SW_SHOW, $Child_GUI)
  9. well, problem is the science fair starts in a few days, so im kinda stuck with this.
  10. I'm making a simulation using autoit about newton's first law of motion. basically, the truck looks like it's moving but its the background that is. But i've run into a problem, i have the background created many times and each background is supposed to be moving together but if you notice after moving the truck for about 15-20 seconds the background ends and if you keep going it begins again. I can't think of why my images are separated and was hoping someone could help me figure this out. if you have any suggestions i am completely open because right now i think it kinda sucks below is the link to my zipped file with project and data in it. there is no virus and i really need some help. thanks in advance! http://www.filedropper.com/scienceproject
  11. i created a picture in my autoit window, what command do i use to get it's position?
  12. thank yall both. i know its a newb question but never had this problem before.
  13. if im currently running code in a function but want to exit the entire function immediately, how do i just go back into my main While loop and quit the function?
  14. I don't think you understand. It's not counting the days the program has been running. Its counting how long the program runs each time and then eventually expires. But this way if a trial is set to 10 days it could be more like a 3 month trial depending how often they use the program. See where I'm coming from?
  15. Thank you for quick reply. And does this trial only go on when the program is running? Because I started the trial at 17 days and today (a week later from when i started it) it nows says I have 16.7 days left.
  16. been working on it and i can't figure out how to structure the code so it shows ALL windows that end in "Logging for joe99". its only showing the window that was last active $tbllist = WinList("[CLASS:SpecialClass]") For $n = 1 To $tbllist[0][0] If $tbllist[$n][0] <> "" AND IsVisible($tbllist[$n][1]) Then Opt("WinTitleMatchMode", 2) ; set window title matching mode to match any substring For $m = 1 To $tbllist[0][0] $ttitle = WinGetTitle("Logged for joe99 ") msgbox(0,"", $ttitle) ; its only displaying last active window? Next EndIf EndIf Next
  17. MrCreator, I'm trying to use it with the registration part and I don't understand how the Product Key is given to each individual user. It should be different per user and I don't even know how to generate it properly and the process of using this module to do registration. Can anyone help me? And thank you so much for this cool tool to incorporate trials into scripts. God Bless. Edit: Does this trial only go on when the program is running? Does it continue counting even when it's not running. Because it says I have 16.8 days left and i started the trial 3 days ago? PLEASE HELP
  18. i have been coding a script for a while now and im usually running a native dpi like 96 but when i ran the script on my other computer every control i created was completely messed up and in the wrong place, overlapping and cut-off. can someone help me to solve this problem i don't know what to do, is there a function that will let me run according to computers dpi or something?
  19. thank you very much for the good example. your time helping me is appreciated. God Bless you. Amen.
  20. Class won't work because the application, every window has the same exact class. And I can't change WinTitleMatchMode because it'll mess up other parts of my code where I need the whole window title.
  21. What do you mean this is not a ready module to work with? Works fine for me?
×
×
  • Create New...