You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Adeola A. <awo...@ya...> - 2004-01-16 14:31:51
|
I haven't actually done this yet but what you can do is: 1. create a hidden layer with no content 2. On mouseOver of your activation area have the layer displayed with content and use the mouse position for placing the layer. The layer content could be passed from the link of maybe use the title=20= attribute to store this. <snip> <!-- in your header --> <script> function showTip(x,y,txt) { layer.moveTo(x,y); layer.setHTML(txt); layer.setVisible(true); } function hideTip() { layer.setVisible(false); } </script> <!-- in the body --> <a href=3D"#" title=3D"Haste makes waste!"=20 onmouseover=3D"showTip(mousex,mousey,this.title);"=20 onmouseout=3D"hideTip();">haste</a> </snip> I hope this is what you're looking for? Good luck! Adeola. On 5 Jan 2004, at 00:57, chris chern wrote: > Hi guys, > =A0 > I wish to implement tooltip like function in a layer (Dynapi 3x). > Does anyone know how can I do that? > =A0 > Thanks in advance. > =A0 > Regards, > Chris > --=20 "Pride only breeds quarrels, but wisdom is found in those who take=20 advice" (Proverbs 13:10). |
From: Chris H. <chr...@ea...> - 2004-01-15 02:44:32
|
Hi there- I am trying to implement the DynAPI to create layers on the fly generating javascript from PHP which loops and creates the layers. However, these layers created on the fly do not respond to the functions included in the API. For example, in the code below I can move 'testLayer' but I cannot get layer a[1] to move. I also tried changing the name of the layer to a concatenated all text name (ex: myLayer1, myLayer2) but the layers are still causing a DynAPI error. Please help! Here is the compiled code I am using: <html> <head> <title>DynAPI Distribution: Create Example</title> <script language="Javascript" src="src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('src/lib/'); DynAPI.include('dynapi.api.*'); </script> <script language="Javascript"> var divContent=[]; divContent[0] = "null"; divContent[1] ="<a href=\"#\" onclick=\"hideShow(2);\"<img src=\"images/arrow_up.gif\">Bay</a>"; divContent[2] ="<a href=\"#\" onclick=\"swapIt('theTarget','images/bay/images/bay03.jpg');\" border=0><img src=\"images/bay/thumbs/tn_bay03.jpg\" hspace=2 vspace=2></a>; divContent[3] ="<a href=\"#\" onclick=\"hideShow(4);\"<img src=\"images/arrow_up.gif\">Birthday</a>"; divContent[4] ="<a href=\"#\" onclick=\"swapIt('theTarget','images/birthday/images/birthday03.jpg');\" border=0><img src=\"images/birthday/thumbs/tn_birthday03.jpg\" hspace=2 vspace=2></a>; divContent[5] ="<a href=\"#\" onclick=\"hideShow(6);\"<img src=\"images/arrow_up.gif\">Friends</a>"; divContent[6] ="<a href=\"#\" onclick=\"swapIt('theTarget','images/friends/images/friends03.jpg');\" border=0><img src=\"images/friends/thumbs/tn_friends03.jpg\" hspace=2 vspace=2></a>; DynAPI.onLoad = function() { var a=[]; var divCount=0; for (var i=1;i<6;i=i+2){ a[i] = new DynLayer(); DynAPI.document.addChild(a[i]); a[i].setSize(400,20); a[i].setBgColor('orange'); a[i].setX(30); a[i].setY((50+25*divCount)); a[i].setHTML(divContent[i]); a[i+1] = new DynLayer(); DynAPI.document.addChild(a[i+1]); a[i+1].setSize(400,20); a[i+1].setBgColor('yellow'); a[i+1].setX(30); a[i+1].setY((75+25*divCount)); a[i+1].setVisible(false); a[i+1].setHTML(divContent[(i+1)]); divCount++; } testLayer = new DynLayer(); DynAPI.document.addChild(testLayer); testLayer.setSize(50,50); testLayer.setBgColor('yellow'); testLayer.setX(400); testLayer.setY(400); } function hideShow(thisDiv) { testLayer.moveBy(0,50); //} } </script> </head> <body bgcolor="#ffffff"> ... </body> </html> |
From: Jesse V. <je...@6t...> - 2004-01-09 13:32:00
|
Did you try the java one that's in bin\java.compressor? As far as I know, it should work. The only problem is that not all the files in dynapi (last I checked) aren't ready for compression. There are a lot of missing semi-colons. I went through some of the files and fixed them up, but not all. Let me know if you have any problems with the compressor. I've made a few (minor) changes to it that I'll check in soon. Jesse Leif Wessman wrote: > > I've tried compressing the js-files using the compression program that > was in the zip-file but I didn't succeed. (I used IE 6). Has anyone > else tried compressing them? Maby there is a compressed library out > there somwhere already? I'm only interested in version 3 beta (the > latest version). > > Leif > > _________________________________________________________________ > Hitta rätt på nätet med MSN Sök http://search.msn.se/ > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Perforce Software. > Perforce is the Fast Software Configuration Management System offering > advanced branching capabilities and atomic changes on 50+ platforms. > Free Eval! http://www.perforce.com/perforce/loadprog.html > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Leif W. <lei...@ho...> - 2004-01-09 12:43:57
|
I've tried compressing the js-files using the compression program that was in the zip-file but I didn't succeed. (I used IE 6). Has anyone else tried compressing them? Maby there is a compressed library out there somwhere already? I'm only interested in version 3 beta (the latest version). Leif _________________________________________________________________ Hitta rätt på nätet med MSN Sök http://search.msn.se/ |
From: Jeremy W. <je...@ma...> - 2004-01-06 14:36:24
|
Hi everybody. I haven't posted to the list in a while, but I'm completely stuck at this point. I'm working on a web site for my church and trying to implement HTMLMenu on the site. http://www.egcchurch.org/egcc2/ I'm designing the site to be 'liquid' (page resized proportional to the browser window) but the problem I'm having is that I cannot get the html menus to anchor to the menubar, which is a gif. I've looked through the code and as far as I can tell, you can't do a setAnchor() on a HTMLMenu because it's parent is DynElement, which doesn't have setAnchor implemented. Is there any other way to do this? Note: load the page, resize the browser, and mousover the menuoptions to see my problem. Thanks, Jeremy |
From: chris c. <chr...@we...> - 2004-01-05 00:59:39
|
Hi guys, I wish to implement tooltip like function in a layer (Dynapi 3x). Does anyone know how can I do that? Thanks in advance. Regards, Chris |
From: ToddNY <vze...@ve...> - 2004-01-01 22:30:03
|
Anyone write a PHP Soda server? Todd. |
From: Doug M. <do...@cr...> - 2003-12-29 23:58:26
|
It is possible in IE. Not in NS 4.x and unsure in Mozilla. In IE: <SCRIPT LANGUAGE=JavaScript FOR=window EVENT=onbeforeunload> var strMsg = 'Press Cancel if you wish to save your form before leaving\nIf you press OK you will lose all unsaved information.'; if (!top.ButtonClicked) { window.event.returnValue = strMsg; } </SCRIPT> ----- Original Message ----- From: "Jesse Vitrone" <je...@6t...> To: "dynapi help" <dyn...@li...> Sent: Sunday, December 28, 2003 10:50 PM Subject: [Dynapi-Help] dynapi.onUnload question > I have a page where the user is moving some layers around, and I want to > make sure they save before they leave the page, so I'd like to promt > them with a warning if the page is unloading and they haven't saved. > > To do that, I need to stop the page from unloading if they want to > save. What can I do with dynapi.onUnload to stop the page from > unloading? Is it possible? > > Thanks in advance, > Jesse Vitrone > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.556 / Virus Database: 348 - Release Date: 12/26/2003 |
From: Andy S. <in...@re...> - 2003-12-29 20:47:28
|
well you could just inform MSIE users using the document.onbeforeunload = property (all msie's) which does return false, though this sort of = negates the whole X-browser thing regards sh0rtie <snip> |
From: Jesse V. <je...@6t...> - 2003-12-29 20:16:03
|
Boo...hiss..... That's what I was afraid of. Thanks anyway. Jesse Raymond Irving wrote: >Problem: onUnload can't return false to stop the >location change like onSubmit can do. > >Workaround: Check if the page should be unloaded in >onClick in all links and in onSubmit in all forms. >It's not elegant, but it works. > >Code Example: We have a function check(), returning >true if the page should be unloaded, false otherwise. > >A link: > ><a href="p.html" onClick="return( check() );"> > >A form: > ><form action="p.pl" onSubmit="return( check() );"> > > >--- Jesse Vitrone <je...@6t...> wrote: > > >>I have a page where the user is moving some layers >>around, and I want to >>make sure they save before they leave the page, so >>I'd like to promt >>them with a warning if the page is unloading and >>they haven't saved. >> >>To do that, I need to stop the page from unloading >>if they want to >>save. What can I do with dynapi.onUnload to stop >>the page from >>unloading? Is it possible? >> >>Thanks in advance, >> Jesse Vitrone >> >> >> >> >> >------------------------------------------------------- > > >>This SF.net email is sponsored by: IBM Linux >>Tutorials. >>Become an expert in LINUX or just sharpen your >>skills. Sign up for IBM's >>Free Linux Tutorials. Learn everything from the >>bash shell to sys admin. >>Click now! >> >> >> >http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > > >>_______________________________________________ >>Dynapi-Help mailing list >>Dyn...@li... >> >> >> >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > >------------------------------------------------------- >This SF.net email is sponsored by: IBM Linux Tutorials. >Become an expert in LINUX or just sharpen your skills. Sign up for IBM's >Free Linux Tutorials. Learn everything from the bash shell to sys admin. >Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Raymond I. <xw...@ya...> - 2003-12-29 16:01:42
|
Problem: onUnload can't return false to stop the location change like onSubmit can do. Workaround: Check if the page should be unloaded in onClick in all links and in onSubmit in all forms. It's not elegant, but it works. Code Example: We have a function check(), returning true if the page should be unloaded, false otherwise. A link: <a href="p.html" onClick="return( check() );"> A form: <form action="p.pl" onSubmit="return( check() );"> --- Jesse Vitrone <je...@6t...> wrote: > I have a page where the user is moving some layers > around, and I want to > make sure they save before they leave the page, so > I'd like to promt > them with a warning if the page is unloading and > they haven't saved. > > To do that, I need to stop the page from unloading > if they want to > save. What can I do with dynapi.onUnload to stop > the page from > unloading? Is it possible? > > Thanks in advance, > Jesse Vitrone > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux > Tutorials. > Become an expert in LINUX or just sharpen your > skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the > bash shell to sys admin. > Click now! > http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Jesse V. <je...@6t...> - 2003-12-29 03:47:01
|
I have a page where the user is moving some layers around, and I want to make sure they save before they leave the page, so I'd like to promt them with a warning if the page is unloading and they haven't saved. To do that, I need to stop the page from unloading if they want to save. What can I do with dynapi.onUnload to stop the page from unloading? Is it possible? Thanks in advance, Jesse Vitrone |
From: Hallvord R. M. S. <hal...@on...> - 2003-12-25 14:42:46
|
On 23 Dec 2003 at 12:11, Doug Melvin wrote: > I presume these DHTML issues will be in the next release of Opera.. The focus for any particular release can be different, for instance sometimes we focus on stability, sometimes on new features and sometimes on plain simple display bug fixes. I will do my best to increase the priority of any bugs that make problems for a DynAPI implementation since it is such a widely used JS library but I can not promise that the fix will be in the next version. > Will you announce to the group when you de release it (or maybe a sneak > preview?) :-) Here's the announcement of the latest sneak preview, 7.50 TP1: http://my.opera.com/forums/showthread.php?threadid=39541 -- Hallvord R. M. Steen |
From: Doug M. <do...@cr...> - 2003-12-23 17:07:51
|
Lurker or not, I must say this is refreshing.. I've had a contentwidth bug open for mozilla for almost 8 months now.. That one bug has caused so may headaches.. I am glad to see The Opera people getting involved with DynAPI.. It most certainly warms the heart I'll tell you that. I presume these DHTML issues will be in the next release of Opera.. Will you announce to the group when you de release it (or maybe a sneak preview?) :-) Opera was for a long time my browser of choice, due mainly to it's blinding speed at rendering html. As well as the mouse gestures, and the "open in background window" functionality.. The only reason I moved to Mozilla/Firebird was that some my DHTML heavy sites simply didn't work right.. Maybe I'll be re-adopting Opera? Cheers and Happy Freaking holidays. Doug Melvin Webmaster and head cook. Creative-workshop.com, inc. ----- Original Message ----- From: "Hallvord Reiar Michaelsen Steen" <hal...@on...> To: <dyn...@li...> Sent: Tuesday, December 23, 2003 6:23 AM Subject: RE: [Dynapi-Help] DynAPI and Opera > > i have actually fixed a few opera bugs but i havent released the patches > > Dear Andy, > thanks for the information. I'm really glad to hear you have worked > on Opera compatibility, and that Opera seems to handle your code > well! :-) Should you come across any issues or problems you would > like to bring up with Opera developers feel free to contact me. > > > sorry for the long response but this list doesnt see much traffic thesedays > > (everyone is having fun with v3 afaik) > > Good it's so quiet - I will just stay around for a while to see how > DynAPI is getting on then :-) > > Merry Christmas, happy holidays! > -- > Hallvord R. M. Steen > 34 Quai Jayr, Lyon 9eme, France > 04 72 85 92 14 / 06 84 11 96 13 > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.554 / Virus Database: 346 - Release Date: 12/20/03 |
From: Hallvord R. M. S. <hal...@on...> - 2003-12-23 11:23:01
|
> i have actually fixed a few opera bugs but i havent released the patches Dear Andy, thanks for the information. I'm really glad to hear you have worked on Opera compatibility, and that Opera seems to handle your code well! :-) Should you come across any issues or problems you would like to bring up with Opera developers feel free to contact me. > sorry for the long response but this list doesnt see much traffic thesedays > (everyone is having fun with v3 afaik) Good it's so quiet - I will just stay around for a while to see how DynAPI is getting on then :-) Merry Christmas, happy holidays! -- Hallvord R. M. Steen 34 Quai Jayr, Lyon 9eme, France 04 72 85 92 14 / 06 84 11 96 13 |
From: Kevin B. <Kev...@bb...> - 2003-12-22 22:50:43
|
I will be out of the office starting 22.12.2003 and will not return until 05.01.2004. I am going to reply to your e-mail when I am back at the office Monday, 5th January 2004. For all matters please do not hesitate to contact Mr David Athey, dav...@bb..., +49-40-432 969 0. I wish you a Merry Christmas and a Happy New Year 2004. Best regards, Kevin Breynck ________________________________ Kevin Breynck Development BBDO InterOne GmbH Schulterblatt 58 20357 Hamburg Germany T +49.40.43 29 69-580 F +49.40.43 29 69-90 mailto:kev...@bb... http://www.bbdo-interone.de NOTE: Information contained in this message is confidential and may be legally privileged. If you are not the addressee indicated in this message (or responsible for the delivery of the message to such person), you may not copy, disclose or deliver this message or any part of it to anyone, in any form. In such case, you should delete this message and kindly notify the sender by reply e-mail. Opinions, conclusions and other information in this message that does not relate to the official business of BBDO Germany shall be understood as neither given nor endorsed by it. |
From: David S. <tra...@ho...> - 2003-12-22 22:08:59
|
development as far as i know has been stopped on 2.57 and has moved onto version 3 fork (in the CVS) i have actually fixed a few opera bugs but i havent released the patches yet, parts of the problem was Opera is "also" IE and api/browser.js didnt allow for this, after modifying with a this.opera=(this.ua.indexOf("opera")>0) && !this.ie; the debugging could begin :), the clip property needed changing so i swapped in the setClip from the V3 fork and clip now works properly in all browsers, there are a few branches in dynlayer that was also stopping it so after the correct if(is.dom||is.opera) things worked i will submit patches as soon as i can, you can view my later correct browser.js and dynLayer i modified http://just.remember.mine.nu/sh0rtie/js/dynapi/api/browser.js http://just.remember.mine.nu/sh0rtie/js/dynapi/api/dynlayer.js http://just.remember.mine.nu/sh0rtie/js/dynapi/api/dyndocument.js also dyndocument needed tweaking (IIRC) and the correct branching again (because of the opera = IE problem) and refrencing the correct dom documentElement instead of document.body to return the correct position to strict mode documents (with a doctype xhtml etc) iam also trying to work around a few event handler problems on opera (nothing really serious iirc) i have also modified events for mozilla/IE for mousewheel events be nice to have mousewheel events for opera too :) http://just.remember.mine.nu/sh0rtie/js/dynapi/events/mouse.js so far i have the modifed api running in the latest Opera and seems to be fine, i should make a few testcases as soon as i get some time, but their isnt much you can do to your browser to fix it (aside from the dhtml performance is a bit slow compared to ie6 ;) so glad you support createElement at last :) sorry for the long response but this list doesnt see much traffic thesedays (everyone is having fun with v3 afaik) anyway all the best to you at Opera Andy Short transient_data at hotmail.com >From: "Hallvord Reiar Michaelsen Steen" <hal...@on...> >Reply-To: dyn...@li... >To: dyn...@li... >Subject: [Dynapi-Help] DynAPI and Opera >Date: Mon, 15 Dec 2003 21:32:18 +0100 >MIME-Version: 1.0 >Received: from mc5-f2.hotmail.com ([65.54.252.9]) by mc5-s19.hotmail.com >with Microsoft SMTPSVC(5.0.2195.6713); Mon, 15 Dec 2003 12:33:42 -0800 >Received: from sc8-sf-mx2.sourceforge.net ([66.35.250.206]) by >mc5-f2.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Mon, 15 Dec 2003 >12:33:17 -0800 >Received: from sc8-sf-list1-b.sourceforge.net ([10.3.1.7] >helo=sc8-sf-list1.sourceforge.net)by sc8-sf-mx2.sourceforge.net with esmtp >(TLSv1:AES256-SHA:256)(Exim 4.24)id 1AVzOo-0004fU-3t; Mon, 15 Dec 2003 >12:33:02 -0800 >Received: from localhost.localdomain ([127.0.0.1] >helo=projects.sourceforge.net)by sc8-sf-list1.sourceforge.net with esmtp >(Exim 4.24)id 1AVzOn-0005Sh-UV; Mon, 15 Dec 2003 12:33:01 -0800 >Received: from sc8-sf-mx2-b.sourceforge.net ([10.3.1.12] >helo=sc8-sf-mx2.sourceforge.net)by sc8-sf-list1.sourceforge.net with esmtp >(Exim 4.24)id 1AVzO3-0005Re-5pfor dyn...@li...; Mon, >15 Dec 2003 12:32:15 -0800 >Received: from smtp3.wanadoo.fr ([193.252.22.28] >helo=mwinf0304.wanadoo.fr)by sc8-sf-mx2.sourceforge.net with esmtp (Exim >4.24)id 1AVzO2-0004Sb-R4for dyn...@li...; Mon, 15 Dec >2003 12:32:15 -0800 >Received: from hrpersocon2 (ALyon-106-1-1-94.w80-13.abo.wanadoo.fr >[80.13.135.94])by mwinf0304.wanadoo.fr (SMTP Server) with ESMTP id >715E2A803FF6for <dyn...@li...>; Mon, 15 Dec 2003 >21:32:08 +0100 (CET) >X-Message-Info: NDMZeIBu+sq440EA3203FiKwjhAudGm8bdFqhfBpMvM= >Message-ID: <3FDE2862.30052.171CB386@localhost> >Priority: normal >X-mailer: Pegasus Mail for Windows (v4.12a) >X-Spam-Score: 0.0 (/) >X-Spam-Report: Spam Filtering performed by sourceforge.net.See >http://spamassassin.org/tag/ for more details.Report problems to >https://sf.net/tracker/?func=add&group_id=1&atid=200001 >Errors-To: dyn...@li... >X-BeenThere: dyn...@li... >X-Mailman-Version: 2.0.9-sf.net >Precedence: bulk >List-Unsubscribe: ><https://lists.sourceforge.net/lists/listinfo/dynapi-help>,<mailto:dyn...@li...?subject=unsubscribe> >List-Id: <dynapi-help.lists.sourceforge.net> >List-Post: <mailto:dyn...@li...> >List-Help: <mailto:dyn...@li...?subject=help> >List-Subscribe: ><https://lists.sourceforge.net/lists/listinfo/dynapi-help>,<mailto:dyn...@li...?subject=subscribe> >List-Archive: ><http://sourceforge.net/mailarchive/forum.php?forum=dynapi-help> >X-Original-Date: Mon, 15 Dec 2003 21:32:18 +0100 >X-Spam-Score: 0.0 (/) >X-Spam-Report: Spam Filtering performed by sourceforge.net.See >http://spamassassin.org/tag/ for more details.Report problems to >https://sf.net/tracker/?func=add&group_id=1&atid=200001 >Return-Path: dyn...@li... >X-OriginalArrivalTime: 15 Dec 2003 20:33:17.0449 (UTC) >FILETIME=[ABD6E790:01C3C34A] > >Hello, >I work for Opera Software with testing and customer support, and I >have recently been looking at bug reports related to DynAPI. There is >a number of sites using older versions of the scripts, and of course >these will not be compatible - so I have written a little article >encouraging people to update or at least fix their browser sniffer (I >tested this fix on one or two sites before publishing the article but >it may not fix all issues?) >http://www.opera.com/support/search/supsearch.dml?index=740 > >I'd like to know if there are known issues with the most recent >version of DynAPI, and whether any developers or experienced >implementors would be interesting in helping me pinpoint the causes >of these problems and file bug reports on them. (I browsed the DynAPI >bug tracker but it seemed like the Opera-related items were a bit out >of date..) I have quite some experience debugging JS problems in >Opera but DynAPI seems very complex and it would be great with some >help from someone who knows it in-depth. > >An error message I get on many websites is the following: > >Expression evaluated to null or undefined and is not convertible to >Object: this.elm >Backtrace: > Line 75 of linked script >http://www.infoconnect.it/src/lib/dynapi/api/dynlayer.js > this.elm.lyrobj = this; > >Thanks in advance! >-- >Hallvord Reiar Michaelsen Steen >hal...@on... / www.hallvord.com > > > >------------------------------------------------------- >This SF.net email is sponsored by: IBM Linux Tutorials. >Become an expert in LINUX or just sharpen your skills. Sign up for IBM's >Free Linux Tutorials. Learn everything from the bash shell to sys admin. >Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help _________________________________________________________________ Enjoy the holiday season with great tips from MSN. http://special.msn.com/network/happyholidays.armx |
From: Brian H. <bg...@ke...> - 2003-12-19 15:24:29
|
Hello everyone, I have a question and I have tried several things to stop the right mouse click's but with no success. What I have is several event listeners on various objects with in select layers, in one of these layers I need to disable right mouse clicking but noting seems to work. I can however detect the mouse click being right via the below code, but nothing seems to work to stop the code when it detects the right mouse click. onmousedown : function(e){ if(e.getButton() != 'left'){ //Need to get this working.. e.getSource().ViewWindow.setVisible(false); } }, I even tried all of these, but I do not know if I fully understand them. What does happen is events become disabled, but right mouse clicking still works. e.preventBubble(); e.preventDefault(); e.stopPropagation(); return false; Does anyone know how to get this to work? Also, this is to disable the right mouse click to prevent the option "save image as" under IE in Win OS.. Thanks, Brian Hayes |
From: Hallvord R. M. S. <hal...@on...> - 2003-12-15 20:32:15
|
Hello, I work for Opera Software with testing and customer support, and I have recently been looking at bug reports related to DynAPI. There is a number of sites using older versions of the scripts, and of course these will not be compatible - so I have written a little article encouraging people to update or at least fix their browser sniffer (I tested this fix on one or two sites before publishing the article but it may not fix all issues?) http://www.opera.com/support/search/supsearch.dml?index=740 I'd like to know if there are known issues with the most recent version of DynAPI, and whether any developers or experienced implementors would be interesting in helping me pinpoint the causes of these problems and file bug reports on them. (I browsed the DynAPI bug tracker but it seemed like the Opera-related items were a bit out of date..) I have quite some experience debugging JS problems in Opera but DynAPI seems very complex and it would be great with some help from someone who knows it in-depth. An error message I get on many websites is the following: Expression evaluated to null or undefined and is not convertible to Object: this.elm Backtrace: Line 75 of linked script http://www.infoconnect.it/src/lib/dynapi/api/dynlayer.js this.elm.lyrobj = this; Thanks in advance! -- Hallvord Reiar Michaelsen Steen hal...@on... / www.hallvord.com |
From: Jesse V. <je...@6t...> - 2003-12-15 19:03:46
|
Here's the site I made using DynAPI - http://demo.6thgearsoftware.com The goal is for us to design websites for people who are non-technical, but want to be able to update their own website. Let me know what you guys think. This would have taken me forever to make cross browser if it wasn't for DynAPI. I've only tested on Firebird, Mozilla and IE, so you might see some problems or ugly things on other browsers. Thanks, Jesse |
From: Doug M. <do...@cr...> - 2003-12-11 16:48:21
|
myLayer.invokeEvent('rtmouseup'); ----- Original Message ----- From: "Stefan Keller" <ke...@pe...> To: <dyn...@li...> Sent: Monday, December 08, 2003 7:50 AM Subject: [Dynapi-Help] Firing RTMOUSEUP on space(key) > Hi there, > > i've several layers with rtmouseup listeners. > Now i want to fire that rtmouseup event when user press spacebar. > > I already capture pressing spacebar. But how firing rtmouseup? > > > Thanx > Stefan > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.550 / Virus Database: 342 - Release Date: 12/9/03 |
From: Jerry H. <jer...@ho...> - 2003-12-09 00:19:53
|
I got your Soda code up and running in JSP! That's awesome! Thanks! A few glitches though . . . 1. The ant build file initially failed because it was looking for jars in sodaservlet/logging/jars that were not there. They were, however, in sodaservlet/soda/jars. I just copied the jars folder over to the logging subdirectory and everything worked fine. 2. Your Choose a Language pull-down menu does not warn someone when no language has been selected. I kept getting a javascript error at line 44 until I used the pull-down menu and selected Java. Everything works after accounting for these two issues. Thanks also, for your advice on accessing a database. I have my form validation and business logic residing in javascript files on the client already (which sounds like what you are using soda-rpc to do on the server-side) so my database calls do take place after the business logic is applied. I send the query variables to the server and get the query results back from the server as a text string and then create loads of javascript objects from parsing the text string and applying business logic again on the client-side (I've been using Brent Ashley's JSRS up to this point in my prototype environment) with no page refresh. I'll have to see if one more layer of abstraction from the the soda-rpc allows me to do the database calls. I suspect that I'm just not thinking it through right, though - soda-rpc shouldn't care what I do on the server-side - it just needs to send some data, wait for code to be run and a result to be made available and then return that result. Its quite possible that your Java code might not "hang" the way the ASP code does. Wishful thinking? . . . Thanks again! Jerry ----Original Message Follows---- From: Andrew Gillett <an...@zo...> Reply-To: dyn...@li... To: dyn...@li... Subject: Re: [Dynapi-Help] Re: IOElement/SODA and Java Date: Mon, 08 Dec 2003 17:24:42 +1100 Jerry Hammann wrote: >Hi Andrew, > >While Raymond gets up and running, could you send your files to my e-mail >at jha...@ch.... I would love to see your work! ok > >Have you tried to do SODA-RPC to a database yet? I'm having some troubles >with server-side objects. Any advice you could give connecting to MySQL or >Access would be greatly appreciated. No. I've done the basic RPC mechanism, including all the type coercion that has to happen on the server side. File uploads are on my todo list. I haven't even looked at the database stuff. IMO, database access should be a layer that sits behind the business logic. It should happen on the server. It would never have occurred to me to try and access a database directly from a browser using SODA. I wouldn't even try to make a java servlet try to translate soda database calls into generic JDBC calls. JDBC is so messy and every JDBC driver is different and it would be a lot of work and it would probably never work properly across different databases anyway. My approach would be to put all the database access code into java classes on the server, perhaps using a proper persistence layer such as hibernate. The use SODA-RPC to fetch the data from your java classes. If all you want is quick & dirty access to a database, then you're probably better off using JScript or VBScript or some such on the server - especially if your database is "access". regards, Andrew. > >Regards, > >Jerry > > >----Original Message Follows---- >From: Andrew Gillett <an...@zo...> >Reply-To: dyn...@li... >To: dyn...@li... >Subject: Re: [Dynapi-Help] Re: IOElement/SODA and Java >Date: Mon, 08 Dec 2003 13:52:47 +1100 > >Jerry Hammann wrote: > >>Andrew Gillett mentioned on 2003-11-11 that he had created a server-side >>Java version of the SODA-RPC component using servlet technology. >> >>Just to verify, does the servlet interact with a client-side JVM or are >>JVM-less environments supported? > > >No client-side JVM. Just the standard DynAPI library. You can build a rich >browser-based UI that interacts with your server side business logic - no >page redraws - and no plugins! > >> >>Have the questions surrounding where/how to distribute this server-side >>Java version been resolved? Where can I get a copy of these files? > > >No. I would like to establish a DynAPI sub-project for the servlet, but I >haven't yet had any response from the dynapi site administrators. My >alternative is to establish a seperate sourceforge project just for the >servlet. > >Now that Raymond's back :) , perhaps he may be able to steer me in the >right direction? > >> >>I'm very excited to see this in action! > > >Yes, the DynAPI SODA / RPC mechanism certainly does open some very exciting >possibilities. > > >Andrew. > >> >>Jerry Hammann > > > > > > > >------------------------------------------------------- >This SF.net email is sponsored by: IBM Linux Tutorials. >Become an expert in LINUX or just sharpen your skills. Sign up for IBM's >Free Linux Tutorials. Learn everything from the bash shell to sys admin. >Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > >_________________________________________________________________ >Tired of slow downloads and busy signals? Get a high-speed Internet >connection! Comparison-shop your local high-speed providers here. >https://broadband.msn.com > > > >------------------------------------------------------- >This SF.net email is sponsored by: IBM Linux Tutorials. >Become an expert in LINUX or just sharpen your skills. Sign up for IBM's >Free Linux Tutorials. Learn everything from the bash shell to sys admin. >Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help _________________________________________________________________ Take advantage of our best MSN Dial-up offer of the year six months @$9.95/month. Sign up now! http://join.msn.com/?page=dept/dialup |
From: Stefan K. <ke...@pe...> - 2003-12-08 12:51:13
|
Hi there, i've several layers with rtmouseup listeners. Now i want to fire that rtmouseup event when user press spacebar. I already capture pressing spacebar. But how firing rtmouseup? Thanx Stefan |
From: Doug M. <do...@cr...> - 2003-12-08 07:25:00
|
If you are using IIS then ther is always repost scripting: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rmscpt/Html /rmscpt.asp It uses a small applet to transfer objects to and from the server. great for DB connectivity. you write the code that returns the recordset in ASP then send teh recordset backt o the client JS as an object. works in IE4+ and NS 4.x (havne't tried mozilla) The porject files are attached in zip format ----- Original Message ----- From: "Jerry Hammann" <jer...@ho...> To: <dyn...@li...> Sent: Monday, December 08, 2003 12:51 AM Subject: Re: [Dynapi-Help] Re: IOElement/SODA and Java > Hi Andrew, > > While Raymond gets up and running, could you send your files to my e-mail at > jha...@ch.... I would love to see your work! > > Have you tried to do SODA-RPC to a database yet? I'm having some troubles > with server-side objects. Any advice you could give connecting to MySQL or > Access would be greatly appreciated. > > Regards, > > Jerry > > > ----Original Message Follows---- > From: Andrew Gillett <an...@zo...> > Reply-To: dyn...@li... > To: dyn...@li... > Subject: Re: [Dynapi-Help] Re: IOElement/SODA and Java > Date: Mon, 08 Dec 2003 13:52:47 +1100 > > Jerry Hammann wrote: > > >Andrew Gillett mentioned on 2003-11-11 that he had created a server-side > >Java version of the SODA-RPC component using servlet technology. > > > >Just to verify, does the servlet interact with a client-side JVM or are > >JVM-less environments supported? > > No client-side JVM. Just the standard DynAPI library. You can build a rich > browser-based UI that interacts with your server side business logic - no > page redraws - and no plugins! > > > > >Have the questions surrounding where/how to distribute this server-side > >Java version been resolved? Where can I get a copy of these files? > > No. I would like to establish a DynAPI sub-project for the servlet, but I > haven't yet had any response from the dynapi site administrators. My > alternative is to establish a seperate sourceforge project just for the > servlet. > > Now that Raymond's back :) , perhaps he may be able to steer me in the > right direction? > > > > >I'm very excited to see this in action! > > Yes, the DynAPI SODA / RPC mechanism certainly does open some very exciting > possibilities. > > > Andrew. > > > > >Jerry Hammann > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > _________________________________________________________________ > Tired of slow downloads and busy signals? Get a high-speed Internet > connection! Comparison-shop your local high-speed providers here. > https://broadband.msn.com > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 12/5/2003 |
From: Andrew G. <an...@zo...> - 2003-12-08 06:24:55
|
Jerry Hammann wrote: > Hi Andrew, > > While Raymond gets up and running, could you send your files to my > e-mail at jha...@ch.... I would love to see your work! ok > > Have you tried to do SODA-RPC to a database yet? I'm having some > troubles with server-side objects. Any advice you could give > connecting to MySQL or Access would be greatly appreciated. No. I've done the basic RPC mechanism, including all the type coercion that has to happen on the server side. File uploads are on my todo list. I haven't even looked at the database stuff. IMO, database access should be a layer that sits behind the business logic. It should happen on the server. It would never have occurred to me to try and access a database directly from a browser using SODA. I wouldn't even try to make a java servlet try to translate soda database calls into generic JDBC calls. JDBC is so messy and every JDBC driver is different and it would be a lot of work and it would probably never work properly across different databases anyway. My approach would be to put all the database access code into java classes on the server, perhaps using a proper persistence layer such as hibernate. The use SODA-RPC to fetch the data from your java classes. If all you want is quick & dirty access to a database, then you're probably better off using JScript or VBScript or some such on the server - especially if your database is "access". regards, Andrew. > > Regards, > > Jerry > > > ----Original Message Follows---- > From: Andrew Gillett <an...@zo...> > Reply-To: dyn...@li... > To: dyn...@li... > Subject: Re: [Dynapi-Help] Re: IOElement/SODA and Java > Date: Mon, 08 Dec 2003 13:52:47 +1100 > > Jerry Hammann wrote: > >> Andrew Gillett mentioned on 2003-11-11 that he had created a >> server-side Java version of the SODA-RPC component using servlet >> technology. >> >> Just to verify, does the servlet interact with a client-side JVM or >> are JVM-less environments supported? > > > No client-side JVM. Just the standard DynAPI library. You can build a > rich browser-based UI that interacts with your server side business > logic - no page redraws - and no plugins! > >> >> Have the questions surrounding where/how to distribute this >> server-side Java version been resolved? Where can I get a copy of >> these files? > > > No. I would like to establish a DynAPI sub-project for the servlet, > but I haven't yet had any response from the dynapi site > administrators. My alternative is to establish a seperate sourceforge > project just for the servlet. > > Now that Raymond's back :) , perhaps he may be able to steer me in > the right direction? > >> >> I'm very excited to see this in action! > > > Yes, the DynAPI SODA / RPC mechanism certainly does open some very > exciting possibilities. > > > Andrew. > >> >> Jerry Hammann > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > _________________________________________________________________ > Tired of slow downloads and busy signals? Get a high-speed Internet > connection! Comparison-shop your local high-speed providers here. > https://broadband.msn.com > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |