Jump to content

Auto Web Sites


Recommended Posts

Does anyone know of a way to have 4 web sites, each in it's own window? Each window would maximize every 2-3 minutes or so. When the next one goes to maximize, the current maximized one would go back to this:

Posted Image

Anyway, thanks for any help.

Link to comment
Share on other sites

Couple ideas, maybe they will be halpful

umm i think it was like this: Try emulating Linux Graphical interface in VMware Workstation (i cant remember the name of the linux that had this function)

or

Try searching for mozilla firefox extensions they may have what you need.

or wait I think opera has this kind of browsing functions also

Edited by goldenix
My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
Link to comment
Share on other sites

You can use WinMove ( "title", "text", x, y [, width [, height[, speed]]] ) to arrange them as on the picture. Image you have put the windows in the array $ie[4]. You can do something like this

$begin=TimeInit()
$x=0
While 1
     sleep(1000)
     $dif = TimerDiff($begin)
     if $dif>120000 Then
         WinSetState($ie[$x], @SW_RESTORE)
         $x+=1
         $x=Mod($x, 4)
         WinSetState($ie[$x], @SW_MAXIMIZE)
         $begin=TimeInit()
    endif
Wend
Edited by muhmuuh

I ran. I ran until my muscles burned and my veins pumped battery acid. Then I ran some more.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...