Jump to content
Advert

nikitanova

Members
  • Posts

    18
  • Joined

  • Last visited

Recent Profile Visitors

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

nikitanova's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello friends I have a question regarding displaying a list of images. What I want is to display a list of image thumbnails in a photo gallery/album. I have used listview control to display icons with texts. I want the same thing here. But just one little difference. I want the icons to be "bigger" (and not just icons). When the user clicks on an image, a new window opens with the full view of the image. (The same thing that windows explorer does). If I am still unable to explain it properly, then, all I want is to make something like the FaceBook photo album. I know how to display a single image etc.. I wrote code to generate thumbnails. I just need help displaying the list of images (as images, not text) in a listview. (A custom listview or some other control will be fine too). I have only ~40 images to show, so performance is not an issue. Thanks a lot in advance Nikita Nova
  2. This is sooo cool! Really nice work. Exceptional!
  3. Wow! Thanks both of you. @AdmiralAlkex, just what the doctor ordered! Thanks a ton! It's nice and understandable and I can even use it without much trouble! Thanks again!
  4. Oh. thanks for the clarification. Forgot to mention, great UDF. useful too.
  5. Thanks! but it requires vlc to be installed! but i need standalone solution.
  6. Hello fellas I would like to know what is the best way to playback video on AutoIt? I want to be able to control the video flow (play/pause/rewind/seek/forward/speed+-) and if possible, support the maximum number of video formats.. Please suggest what to use? and also, if you can, kindly give me links. I searched but the number of results completely overwhelmed me..
  7. Is this faster than AutoIt's default array system?
  8. I see. Never thought it'd be inside there! I already had the information but didn't know where to look! Anyway, thanks again!
  9. Excellent! Many thanks! I feel like kissing you. BTW, Do you know where I can find a list of all available properties like that?
  10. Guys and Gals Please help me a bit in here. I'm trying to extract information from a set of link. The basic structure of the "a" element - <a href="LINK">TEXT</a> I want the "TEXT" portion of the collection. Just in the following code, I've been extracting the link with the .href property. But which property gets me the Text? #include <IE.au3> #include <Array.au3> $oIE = _IECreate("http://www.songs.pk/parineeta.html") $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended MsgBox(0, "Link Info", $iNumLinks & " links found") Global $linkArray[$iNumLinks*2 + 1] Global $count For $oLink In $oLinks ;MsgBox(0, "Link Info", $oLink.href) If StringInStr($oLink.href, "http://link.songs.pk/song.php?songid=") Then $count = $count + 2 $linkArray[$count] = $oLink.href $linkArray[$count+ 1] = $oLink ;<------HERE IS THE PROBLEM EndIf Next _ArrayDisplay($linkArray) ;http://www.songs.pk/indian/pocket_maar_1974.html ;http://link.songs.pk/song.php?songid=2080
  11. MeMeMe, You should have been running other au3 files in the archive. (i.e. right click and select "run script") GamePadEx.au3 = Core file of UDF. It doesn't do anything but let's the other scripts do things easily. (That's what UDF libs are for)
  12. // Accidental Double Post. Delete this one
  13. Hello Friends. This is Nikita. Bugging you lot again. I just have had a funny idea. This is just an idea and not a complete project. What I want to be done is that a robot fighting area simulation. You've seen RobotWars (since AppleII) and CoreWars and similar projects. Now, what about making one in AutoIt? I wanted to do it myself but couldn't figuire out how I could do that. So, anyone interested around who wants to make this? I've actually thought a basic structure but completely clueless how to even start. Here's the deal. An autoIt script (the main script) will hold the field and base. It'll have simple editboxes where you can put in AI code and simply hit the start button. The world will be randomly generated and a few obstrucles like rocks/walls will be scattered + upto four players will start from four corners. Players are simple tanks. They can turn around and move and also the canon can turn around and shoot. Tanks can anly move forward and turn 360 degree. But gun can only move 180 degree (to make coding more interesting). On the other hand other AutoIt scripts (AI) will have some specific APIS like botTurn(Degree) botForward() botStop() botTurnCannon(Degree) botFire() botGetAmmoStat() botReload() botResign() botGetLOSabjects() ; Returns objects in line of site in an array. Any object outside the line of side will not be interacted with. The scripts will communicate with mother script using one of the interprocess communication. If we use mailhost, we can even make online/overLAN robots. The whole process will be visualized with the mother script in a windows. Maybe use Graphic object or GDI to draw the tanks. Tanks do not need to be beautiful at all. Now, people. Would you like to start the project? Love you all Nikita
  14. This is really good. I've been looking for it for ages and now it is here! Thank you very much. By the way, why can't local vars be "Dynamic"???
  15. Hey, this is a great way to do this. Thanks a lot.
×
×
  • Create New...