// title: Views with sounds from somewhere in the world // author: prko // description: // inspired by the web site "https://www.window-swap.com/window" // code: ( var addr, nCol, nRow, scrW, scrH, view, aRow, rows, views; addr = "https://www.window-swap.com/window"; nCol = 3; nRow = 4; scrW = Window.screenBounds.width; scrH = Window.screenBounds.height; view = { WebView().url_(addr) }; aRow = { view ! nCol }; rows = aRow ! nRow; views = Window(bounds:Window.screenBounds.width@Window.screenBounds.height); views.layout = VLayout(*rows.collect { |x| HLayout(*x) }); views.front; )