Re: Video PLayer

2009-01-26 Thread GWBasic

There are some video tags that you can programmatically control
through JavaScript / GWT.  (I think it's the object tag, but you'll
need to do your own research.)

Personally, when I did something similar, I ended up using an embedded
Flash object.  It's much more flexible with regard to events.

On Jan 24, 2:27 am, Venkat venkivo...@gmail.com wrote:
 Hi All,

  Is it possible to create a video player by not embedding external
 player. if its not possible can any one guide me how to integrate Java
 script  player int o GWT?

 Thanks  Regards,
 Venkat
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Suggestion: GWT port to Desktop

2008-10-25 Thread GWBasic

I don't see the point.  GWT is designed to run in a browser; if you
want to do a true desktop application, there are plenty of desktop
development systems that are much better.  C#, Java, Objective C...
They're a dime a dozen.

If all you're looking to do is get rid of the browser chrome and give
a GWT application full-control of the window, it's trivial to write a
C# (Windows) and Objective C (Mac) application that will do that.
Both C# and Objective C have browser widgets.  You can make the
browser widget fill up the window and then programmatically direct it
to a URL.  If you're ambitious, you can capture new window events, add
drop-down menus, ect.

Something to consider is that all of GWT's I/O needs to go to a web
server.  If you're trying to use GWT for something that will save
files to disk, use a local database, burn CDs, ect, you'll need to use
an embedded web server.  This is much more complicated then using a
true desktop development environment.

On Oct 17, 6:45 am, lkcl [EMAIL PROTECTED] wrote:

  does anyone want to be able to run applications written for GWT as a
 *desktop* application?

  if so, port GWT _back_ into pure java, using Java bindings to
 Webkit's DOM model to manage the screen.

  ... is that better? :)

  l.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: MySQl and GWT?!

2008-10-23 Thread GWBasic

You can only do what you can do from JavaScript.  This means that GWT
can only open connections to the web server that's serving it.

You will need to use whatever technology that you web server is
running in order to access MySQL.  This means that you'd need to write
some kind of data access script in PHP, ASP (C#), JSP, Perl, Ruby,
ect, ect.

A technique that I've used is to write queries in PHP, format the
results into XML, and then parse the XML in GWT.

Remember, GWT runs in the browser on an un-trusted computer.  For
security reasons; it's risky for the database to run any query that it
gets from GWT, as this would open your database up to hackers.

On Oct 21, 4:48 am, sumeetsahu [EMAIL PROTECTED] wrote:
 Hi,

 I an new to GWT. I just want to know if we can use MySQL with GWT.

 I want to create a web page where I will be storing user info on
 database and then query accordingly when ever required.

 Thanks
 Sumeet Sahu
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---