Jump to content

sensalim

Active Members
  • Posts

    241
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

sensalim's Achievements

Polymath

Polymath (5/7)

2

Reputation

  1. Ah yes, I searched "screen" = not much ... and "capture" = not much ... then finally "screen capture" and I found four more: '?do=embed' frameborder='0' data-embedContent>> '?do=embed' frameborder='0' data-embedContent>> '?do=embed' frameborder='0' data-embedContent>> This one sounds most promising Thanks!
  2. Hello, I know MrCreatoR's "CaptureIt" '?do=embed' frameborder='0' data-embedContent>> It works nicely. I'm just curious if there are other examples? Thanks.
  3. Hi, I have modified ANYGUIv2.8.au3 so that it works again. Only changes are: ;$sztext = _GUICtrlListGetText($nID, $dragIdx) $sztext = _GUICtrlListBox_GetText($nID, $dragIdx) ;_GUICtrlListDeleteItem($nID, $dragIdx) _GUICtrlListBox_DeleteString($nID, $dragIdx) ;_GUICtrlListInsertItem($nID, $sztext, $dragIdto) _GUICtrlListBox_InsertString($nID, $sztext, $dragIdto) ;_GUICtrlListSelectIndex($nID, $dragIdto) _GUICtrlListBox_SetCurSel($nID, $dragIdto) The following script now works (to remove title bar from existing notepad window): #include "ANYGUIv2.8.au3" Opt ("WinTitleMatchMode", 4) $xh = WinGetHandle("Untitled - Notepad") $Style = 0x00C00000 $ExStyle = -1 $result = _TargetStyle("unset", 1, $Style, $ExStyle, $xh) Btw the includes are: #include <GUIconstants.au3> #include <WindowsConstants.au3> #include <GUIListBox.au3> Thanks and enjoy. ANYGUIv2.8.au3
  4. Hi, I play Battlefield game and when not full screen, it has title bar on top. Is there a way for autoit to remove this title bar? Thanks.
  5. Hi, I read this topic but I'm having problem making modifications. I want: -infinite loop until manually closed -when a specified value in a specified section in a specified ini file changes, pops up floating text for 2 seconds -the floating text needs to go away after 2 seconds -preferably not create an autoit window while displaying the floating text but this is optional I'll spend more time by myself first but if anyone can help that will be appreciated. Thanks.
  6. Ok I didn't explain this right. The GUI needs to handle any changes made to the ini file whether by itself or by someone else editing the ini or by some other program making modification to that ini file. Sorry for any trouble. Edit: I changed it to onevent mode and put "read ini" function in the while loop and it seems to work. Is this not the right way or inefficient way?
  7. The GUI needs to be running until manually closed. In an infinite loop, it needs to handle read ini and write ini at "same time".
  8. Hi, I need help. I'm trying to create a simple GUI that contains: -several checkboxes maybe combobox and buttons -reads one ini file -if user checks a checkbox, update that ini file How would you do this? Thanks.
  9. FileInstall() seems to work but it extracts all those files when run. Sure I can delete them after that, but... Can I use Zedna's resources UDF? (I haven't tried)
  10. Let's say I want to make a program that outputs a file then compiles it as exe. Note: The client machine may not have autoit installed. Where would I start? Thanks.
  11. Let's say I have a 2D array, how do I add them using for loop? Source: 1=description 1 title=title 1 price=100 title=title 1b price=99 2=description 2 title= title 2 price=80 Desired final array: 1 // title 1 // 100 1 // title 1b // 99 2 // title 2 // 80 How do I do that? Thanks!
  12. I want to modify offset 0x58A81A to 0x3B1C of this binary file, but it writes "1C3B" instead. How do I do it? 2nd question: How do I make 0x58A81A a variable? (what kind of data type) (also would like to make 0x3B1C a variable, but that's same question as above) $modified_bin_fh = FileOpen($binary, 17) FileSetPos($modified_bin_fh, 0x58A81A, 0) FileWrite($modified_bin_fh, 0x3B1C) FileClose($modified_bin_fh) Thanks! Edit: I seem to have solved it $offset = Number("0x58A81A") $mod_to = Binary("0x3B1C") $modified_bin_fh = FileOpen($binary, 17) FileSetPos($modified_bin_fh, $offset, 0) FileWrite($modified_bin_fh, $mod_to) FileClose($modified_bin_fh) Any better suggestions?
  13. The save.exe is by sql server. It locks it indefinitely (as far as I know). It's an old backup, I don't think killing the process "save.exe" is going to cause any harm to the whole system maybe to the .bak file it's locking but since it's old we don't care.
×
×
  • Create New...