Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/02/2013 in all areas

  1. wakillon

    Water Effects

    Browsing a Chinese AutoIt forum, i fall on a little pearl that i want to share with you ! I have already seen water effects example with autoit, but this one is very easy to create using waterctrl.dll Only BMP are supported. Position of Blob water can be set by coordinates and mouse movements (and clicks) when over bmp create traces on water. All files are embeded in script with BinaryToAu3Kompressor. WaterEffect.au3 Hope you like it !
    1 point
  2. For so few arrays, as in your example, using _ArrayConcatenate() makes little difference. However if you intend to concatenate hundreds of small arrays (perhaps within a repeated process), then you should not use _ArrayConcatenate(). It would be much faster to only use Redim once. After this you will need to loop through each array declaring the elements as you go. This can save a significantly noticable amount of time.
    1 point
  3. trancexx anyway tnx u for helping
    1 point
  4. Well it's less convoluted.
    1 point
  5. That's out of the control of the user. Actually the only annoying thing is that you link my name to my profile so when I click thinking it's useful link I end up here.Oh and "u" for "you" is also annoying and "tnx". ...Ehh now that I think about it, you are right.
    1 point
  6. Hi Thank you vfor your reply. I achieved it differently, this way: $Table.rows(5).style.display="none" Where $Table is the Table Object
    1 point
  7. @Cybernetic, I agree that my example does the same thing as yours, however the constants used (and the clear way I wrote it) make it very clear on how to solve the problem and change DBLCLCK to RDBLCLCK. Magic numbers only troubles you that's why you did not understood how it works. It's a pity you asked for the answer and someone cared to give you the solution (no offense to both), but you can't learn by this way. Br, FireFox.
    1 point
  8. Wow, it was very hard to change $NM_DBLCLK to $NM_RDBLCLK in my example...
    1 point
  9. thank you for that!
    1 point
  10. Take a look at FileFindFirstFile() in the AutoIt Help File.
    1 point
  11. Someone is on fire!
    1 point
  12. The code below will do the following: -Every second, ping google. -if google does not respond in 4 seconds, then disable the local area connection, wait 3 seconds, then re-enable it. Then wait 15 seconds before checking again -if google does respond in that time, then re-check in 1 second again Note: I only tested this on Windows 7 While True Sleep(1000) If ping("www.google.com") == 0 Then run('wmic path win32_networkadapter where NetConnectionID="Local Area Connection" call disable') sleep(3000) run('wmic path win32_networkadapter where NetConnectionID="Local Area Connection" call enable') sleep(15000) EndIf WEnd
    1 point
  13. 1 point
  14. There are much better ways to make a fileserving bot. Why not use the native scripting language that mIRC comes with?
    1 point
×
×
  • Create New...