Stuperman 0 Report post Posted March 6, 2008 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:Anyway, thanks for any help. Share this post Link to post Share on other sites
goldenix 1 Report post Posted March 6, 2008 (edited) 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 March 6, 2008 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] Share this post Link to post Share on other sites
muhmuuh 0 Report post Posted March 6, 2008 (edited) 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 March 6, 2008 by muhmuuh I ran. I ran until my muscles burned and my veins pumped battery acid. Then I ran some more. Share this post Link to post Share on other sites