subject: Example ApplicationPosted: 8:45am, Dec 6, 2007
An example application, using many of the exciting features that are now available:
JavaScript Code:// Create an application called "Simple Web Browser": var app = new Application("Simple Web Browser"); // The default window boundaries are small, this is a large app: app.resizeTo(700,400); // Now we create a web browser control: app.browser1 = new app.Controls.WebBrowser(); app.browser1.setStyle( { "width" : "100%" , "height" : "360px" , "background" : "#FFFFFF" , "border" : "none" , "position" : "absolute" , "top" : "22px" , "left" : "0px" } ); app.onResize.push( function(app) { app.browser1.setStyle("height", (app.height-40)+"px"); } ); app.Controls.Add(app.browser1); app.browser1.Navigate("http://www.jasonmillerdesign.com/");
How do I Update my Website?
How do I Make a Website?
What is the best way to Learn JavaScript?
---
What is an Online Operating System, and how does it relate to Cloud Computing?
Try the Cloud1 Blog Network.
How do I Make a Website?
What is the best way to Learn JavaScript?
---
What is an Online Operating System, and how does it relate to Cloud Computing?
Try the Cloud1 Blog Network.
There are 1 posts in this topic.
Currently Reading:
Powered byCommunitY
Visit the developer's website.
What is CommunitY?
Community is a free forum software that brings unprecedented usability and convenience to online forums.Visit the developer's website.

