Click to See Complete Forum and Search --> : Wednus DHTML Window, wants your advice


sundew
May 29th, 2005, 01:36 AM
Hi all,

I am developing an open source DHTML project named Wednus Window.
http://wednus.com

Wednus Window is a DHTML Web-Application Windowing System. It shells websites/web-applications with fully customizable DHTML window objects, and users also can change its skin, so it can goes well with any website layouts.

I have just released v0.3.5 beta1 and working on beta2 now, and hope to get your sugestions or any ideas on improving it.

Thanks.

Sundew Shin
Wednus Project
Manager/Developer
http://wednus.com

Dr. Script
June 1st, 2005, 08:39 PM
What's that thing about pop-up blocker detected? Its not very userfriendly from my quick usage of it ...

sundew
June 1st, 2005, 09:50 PM
Other than just popping up an alert, I guess I'd better implement some user-friendly method to notify the user that Wednus Window popup mode is unavailable because of the popup blocking feature.

thanks for your advice.

Sundew Shin
Wednus Project
Manager/Developer
http://wednus.com

Dr. Script
June 2nd, 2005, 06:45 AM
I'll try and try it on IE where I probably will have more success later today, and get some more feedback to you.

sundew
June 2nd, 2005, 10:43 AM
thanks in advance.

currently, I'm working on revising the interface to make it more intuitively.
I think I have done it about 60%, and here's a sample code using the new interface:



<html><head>
<script language='JavaScript' type='text/javascript' src='wednus.js'></script>
</head>
<body>

<script language='Javascript'>
var wwindow = new Wednus.WindowManager();

var myWW = new Wednus.Window({
title: 'WW Baek-Ho (White Tiger: v0.3.6)',
skin: 'neOS',
url: 'http://www.google.com',
top: 100,
left: 100,
width: 300,
height: 300,
resizable: 'yes',
scrollbars: 'yes',
status: 'yes',
fullscreen: 'no',
popup: 'yes',
background: 'transparent'
});

var myWW2 = new Wednus.Window({
title: 'yahoo',
skin: 'sektor',
url: 'http://www.yahoo.com',
background: 'yellow'
});


wwindow.add(myWW);
wwindow.add(myWW2);
//wwindow.open('http://www.yahoo.com');

var wwindow2 = new Wednus.WindowManager(new Wednus.Window({
title: 'momo',
skin: 'flooter',
url: 'http://www.altavista.com',
}));
</script>
</body></html>



again, thank you for your time and concern.

Sundew Shin
Wednus Project
Manager/Developer
http://wednus.com

Dr. Script
June 2nd, 2005, 03:24 PM
I wasn't able to get much more feedback. When I tried utilizing it again in Firefox, I got an unexpected error which blew the browser up. In MSIE, the page just never loaded.