Results 1 to 3 of 3

Thread: screenshot loop

  1. #1
    Join Date
    Dec 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default screenshot loop

    Code:
    program New;
    var
    n: integer;
    begin
    for n := 1 to 5 do
    begin
    wait (1000)
    SaveScreenshot(AppPath + n + 'awaaff.bmp');
    end;
    end.
    This script ain't working ( the + n + bit).
    I just want a loop that will save different screenshots.
    any help?

    cheers!

  2. #2
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Try this:
    Simba Code:
    SaveScreenshot(AppPath + ToStr(n) + 'awaaff.bmp');

  3. #3
    Join Date
    Dec 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    awesome. thanks a loT1

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •