/* create an object for IE */ myIE = .OLEObject~New("InternetExplorer.Application") myIE~Width = 1000 myIE~Height = 800 myIE~Visible = .True -- now show the window myIE~Navigate("https://karmafood.at/") /* wait for 5 seconds */ Call SysSleep 5 Say "current dimensions of IE are:" myIE~Width "by" myIE~Height /* set new dimensions and browse broesl homepage */ myIE~Width = 1280 myIE~Height = 1040 Say "current dimensions of IE are:" myIE~Width "by" myIE~Height /* wait for 5 seconds */ myIE~Navigate("https://www.broesl.at/") Call SysSleep 5 /* browse baschly homepage and wait for 5 seconds */ myIE~Navigate("https://baschly.com/") Call SysSleep 5 myIE~quit tmpColl = .queue ~new tmpColl ~~queue("Anna") ~~queue("Heidi") ~~queue("Peter") SAY tmpColl~string":" DO i OVER tmpColl SAY "["i"]" END tmpColl = .queue ~new tmpColl ~~queue("Anna") ~~queue("Heidi") ~~queue("Peter") ~push("Anton") SAY tmpColl~string":" DO i OVER tmpColl SAY "["i"]" END