<Style name="Image.browser"> <StyleAttribute name="imageContainerType" value="browser"/> </Style>
MAIN CALL ui.Interface.loadStyles("browser") CLOSE WINDOW SCREEN OPEN WINDOW w WITH FORM "browser" #DISPLAY "https://4js.com" TO browser #DISPLAY "http://www.google.com" TO browser -- redirection issue DISPLAY "https://4js.com/online_documentation/fjs-fgl-manual-html/" TO browser MENU "" ON ACTION close EXIT MENU END MENUEND MAIN
LAYOUT (TEXT="Browser")GRID{[browser ][ ][ ][ ][ ][ ][ ][ ][ ][ ]}ENDATTRIBUTESIMAGE browser=formonly.browser, STRETCH=BOTH,STYLE="browser";
<StyleList> <Style name="Image.browser"> <StyleAttribute name="imageContainerType" value="browser"/> </Style></StyleList>
<Grid name="grid2" width="47" height="23"> <Image name="browser" width="43" height="20" image="http://news.customs.gov.au/RSS_news_feed.asp?CAT=1" style="browser" posY="1" posX="3" gridWidth="43" gridHeight="20"/> </Grid>
<Style name="Image.browser"> <StyleAttribute name="imageContainerType" value="browser"/></Style>
DISPLAY "http://news.customs.gov.au/RSS_news_feed.asp?CAT=1" TO browser
IMPORT comIMPORT xmlDEFINE req com.HttpRequestDEFINE resp com.HttpResponseDEFINE str STRINGDEFINE doc xml.DomDocument LET req = com.httpRequest.Create("http://news.customs.gov.au/RSS_news_feed.asp?CAT=1") CALL req.doRequest() LET resp = req.getResponse() -- Either read as string or XML LET doc =resp.getXmlResponse() #LET str = resp.getTextResponse()