You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(66) |
Feb
(52) |
Mar
(88) |
Apr
(27) |
May
(17) |
Jun
(18) |
Jul
(5) |
Aug
(12) |
Sep
(4) |
Oct
(4) |
Nov
(3) |
Dec
(3) |
2002 |
Jan
(6) |
Feb
|
Mar
|
Apr
(1) |
May
(5) |
Jun
(8) |
Jul
(8) |
Aug
(5) |
Sep
(8) |
Oct
(16) |
Nov
(6) |
Dec
(4) |
2003 |
Jan
(9) |
Feb
(5) |
Mar
(7) |
Apr
(6) |
May
(7) |
Jun
(12) |
Jul
(15) |
Aug
(17) |
Sep
(12) |
Oct
(16) |
Nov
(29) |
Dec
(27) |
2004 |
Jan
(65) |
Feb
(120) |
Mar
(50) |
Apr
(36) |
May
(21) |
Jun
(11) |
Jul
(20) |
Aug
(16) |
Sep
(11) |
Oct
(25) |
Nov
(22) |
Dec
(36) |
2005 |
Jan
(11) |
Feb
(25) |
Mar
(41) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: David C. <dle...@ya...> - 2001-03-14 07:04:58
|
Greetings all, This widget is just about complete. scrposit.js What it does: Returns the left x, top y, right x, bottom y, center x and center y of the visible browser screen with respect to whether the scrollbars are visible or not. These values are available to other code by using: DynAPI.sizr.vlx left x-coordinate DynAPI.sizr.vty top y-coordinate DynAPI.sizr.vrx right x-coordinate DynAPI.sizr.vby bottom y-coordinate DynAPI.sizr.vCX center x-coordinate DynAPI.sizr.vCY center y-coordinate Allows the scrollbars to be forced on or off. Allows the width or height of the scrollbars to be added to the returned co-ordinates. Returns an event on browser resize (sresize) browser scroll, even in NS (sscroll) and scroll finished (sFscroll). It creates a DynPI.onResize function that in turn fires the "sresize". Possible uses: Layer positioning to appear in the viewable area of the browser (no hiding behind the scrollbars). Layer lock for menus or help bars. The "dreaded" watermark scrolling technique. Returns the size independant of document.getWidth/getHeight so if oversize pages are being used, you can still get the browser window visible co-ordinates. Usage: 1 line at the beginning of the on load: var_name = new ScrPosit() Arguments: (add_scrollbar_val,set_scroll,set_doc_size,set_doc_width,set_doc_height,force_scrollbars_on,hide_scrollbars) add_scrollbar_val true or false use to add the scrollbar dimensions to the returned values set_scroll true or false turns on the scrolling monitor code set_doc_size true or false sets the document.width/height in ns4 also needed to save following values in ie and ns6 set_doc_width number set_doc_height number force_scrollbars_on true or false Sets a 1pixel layer at the correct position to make the browser window default to the previous settings and thus forcing on the scrollbars. hide_scrollbars true or false will force the scrollbars off I am still working on the usage page, but here are some examples. Note that sometimes it is neccesary to hit the get values to see the results if the scrolling code is not active, it updates on a lot of events, but the screen update is not part of the widget code Menu lock and scrolling watermark: http://www.merlinsworld.net/dynapi_ri_dcexamples/dc_sposit_exmpl_4.shtml Evaluation page: http://www.merlinsworld.net/dynapi_ri_dcexamples/dc_sposit_exmpl_2.shtml Scrolling Evaluation page: http://www.merlinsworld.net/dynapi_ri_dcexamples/dc_sposit_exmpl_3.shtml the widget is attached here. Note: the horizontal scrollbar is not detectable in NS6 due to a "bug" in NS6. For now it is locked to the vertical bar, and will error to the inside dimension (coordinate will never be obscured by the scrollbar) Comments? Suggestions? Cheers, Dave C. "You Changed What?!?" __________________________________________________ Do You Yahoo!? Yahoo! Auctions - Buy the things you want at great prices. http://auctions.yahoo.com/ |
From: Cheston U. <Che...@rl...> - 2001-03-13 20:15:43
|
Thanks for the reply. To address your first question, No, I won't be making concerted efforts to support Netscape. The reason is simple. Our Network Administrator won't allow Netscape of any kind to be installed on any computer owned by the school division. This makes developing and testing pages on NS virtually imopossible, so I can't really do anything about it. ( I would support it, if i could.) As for your solution to the problem... I allready tried the getWidth() and getHeight() method.....and it didnt work. For some reason, the code just doesnt seem to update the height/width, when the user resizes the browser. I am thinking of having a new window opened with resizing disabled, and automatically maximized to the user's screen resolution. So far, it seems the only viable solution. However, your suggestion for a History module is rather intriguing. If you, or anyone else have any ideas how to go about making a History module, perhapse we could all get together and start developing one. It cirtainly would solve the resize/page-reload problem, and make everything more compatable. I'm not real familiar with the guts of OOP, but I catch on to methods of programming fast. If you want a copy of what I currently have developed, send me and e-mail at: Che...@rl... and I'll respond with the page I've been developing so far. It isnt a Widget yet, just a script that I would like to someday make *into* a Widget. Until then, I want to work on getting the entire concept to work correctly...bridging the gap between webpage and webapp. The basic premise is to have frames that can be manipulated in ways that are currently not possible with conventional frames. Try clicking on a conventional frame, and have it change size, move around, dissappear, re-appear, etc......you cant do it. Nest an IFRAME within a Dynlayer...and boom....you have all the flexibility of a Dynlayer, with the external page browsing and external script handling of a completely separate frame. In my opinion, Netscape is somewhat foolish for not supporting IFRAMEs as IE has done. But I guess we'll have to see what happens in the future. Until then....Whoever has useful ideas on how to help me out, will get commendation on my site, and a link to your own (assuming it's appropriate for schoolkids to see it ;-D ...the joys of volunteering for a school-=grins=-.). Ciao -- - Cheston U. (Rainbow Lake School Webmaster) ____________________________________________________________ Online tools for small business at www.opendesk.com |
From: <AFr...@ba...> - 2001-03-13 20:15:23
|
Hello. I am looking to either implement or extend an existing widget that by and large looks like a spreadsheet. Features that I am looking for: - horizonal and vertical scrollbars - column headers - optional row numbering - single and/or multi column selection (by clicking on the col header) - single and/or multi row selection (by clicking on the row number) - row selection with a checkbox - row insertion (which requires renumbering of rows/ids) - column insertion - column freezing - ability to scroll around on the grid with the cursor keys Optionally I would like to have it have these type of features: - column based datatypes (text, number, dropdown) - column based [un]locking of cells - inline cell editing based on the colum's datatype or the cell's datatype - copy insert of a row(s) I have implemented a DOM based version, more a (poor) proof of concept, of this using a table; however, it does not implement all of the features that I need. One of the primary problems is that my version does not fix the column headers and the row numbers to the sides of the grid. This makes the grid useful with only a screenful of data. Since I have the potential to have 60 columns and 150 rows, it is very unlikely that all of the data will fit on one screen. Also, since I have more than a screenful of data, it is essential that it displays a screenful of data ASAP. I was able to accomplish this by using the setTimeout function in JS. Talk about a hack... ;) I found the example on Scott Andrew's site: http://www.scottandrew.com/dhtml/demos/dynchart.html but this does not help with the scrolling issue. I am also concerned with the number of layers his approach creates. If I have a 60x150 grid I am looking at 9000 DIV tags just for the grid. That does not take any of the other layers that may be needed in to account. Being that I am not by any stretch of the imagination familiar enough with the DynAPI and all of the changes that it has been undergoing the past several weeks to know where to start on this I would appreciate any suggestions. At this point I have looked at modifying the dynapi.gui.ScollPane but I do not know if that is really where I should be starting. I would appreciate any suggestions that anyone can offer. Thanks, Andy |
From: Mark G. <mar...@me...> - 2001-03-11 16:06:47
|
BTW, I cannot access your server anymore :(( ----- Original Message ----- From: "Michael Pemberton" <mp...@ph...> To: <dyn...@li...> Sent: Sunday, March 11, 2001 8:51 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop > i'll look intop it in the next few days. my Cell object is playing up at the > moment and I have to work out what I did wrong. > > Mark Goldin wrote: > > > Works fine here. > > ----- Original Message ----- > > From: "Michael Pemberton" <mp...@ph...> > > To: <dyn...@li...> > > Sent: Sunday, March 11, 2001 8:32 AM > > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > > > > > in that case, i'm not sure what is causing the problem, the code uses a > > > standard mouseover to change the background. > > > > > > try http://freeshell.org/~afroapi/examples/afroapi/events/mouse.html and > > > see if it is also having problems. > > > > > > Mark Goldin wrote: > > > > > > > >Do you mean highlighting the menu option when the mouse moves over > > > > itYes. > > > > > > -- > > > Michael Pemberton > > > mp...@ph... > > > ICQ: 12107010 > > > > > > > > > > > > > > > _______________________________________________ > > > Dynapi-Widgetdev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Richard B. <ma...@ri...> - 2001-03-11 15:47:14
|
I've got a few more drag/drop examples here: http://www.resass.f2s.com/dynapi/Gilles_Bayon_Examples/dragdrop.htm and here: Glen_Deas_Examples http://www.richardinfo.com/?menu=3Dexamples&node=3D8 Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of = DynAPI2) Find the DynAPI faq here: http://sourceforge.net/docman/display_doc.php?docid=3D656&group_id=3D5757= Browse the mailinglist here: http://www.mail-archive.com/index.php3?hunt=3Ddynapi ----- Original Message -----=20 From: Mark Goldin=20 To: dyn...@li...=20 Sent: Sunday, March 11, 2001 2:13 PM Subject: Re: [Dynapi-Widgetdev] Drag and Drop By selection I mean that: When IE5.5 was introduced many dynapi2 examples did not work = especially menus, listboxes. So I see same effect. To get items = highlighted I have to move a mouse over popup very slowly. Also I treid = to select 'source code' choice from Popup and did not get any. I am = using IE 5.5 on Win2000. Mark ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Saturday, March 10, 2001 7:01 PM Subject: Re: [Dynapi-Widgetdev] Drag and Drop the javascript navigation seems to only work in NS. I'm trying to = find the IE equiv. (uses history.back() etc.)=20 what do you mean be selection?=20 Mark Goldin wrote:=20 Thanks Michael. Looks cool.As for Popup. The selection is not = working properly. Is it because I am using 5.5? Also no action after I = click on any item in popup. Sorry.Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 |
From: Michael P. <mp...@ph...> - 2001-03-11 14:53:00
|
i'll look intop it in the next few days. my Cell object is playing up at the moment and I have to work out what I did wrong. Mark Goldin wrote: > Works fine here. > ----- Original Message ----- > From: "Michael Pemberton" <mp...@ph...> > To: <dyn...@li...> > Sent: Sunday, March 11, 2001 8:32 AM > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > > > in that case, i'm not sure what is causing the problem, the code uses a > > standard mouseover to change the background. > > > > try http://freeshell.org/~afroapi/examples/afroapi/events/mouse.html and > > see if it is also having problems. > > > > Mark Goldin wrote: > > > > > >Do you mean highlighting the menu option when the mouse moves over > > > itYes. > > > > -- > > Michael Pemberton > > mp...@ph... > > ICQ: 12107010 > > > > > > > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-11 14:41:57
|
Works fine here. ----- Original Message ----- From: "Michael Pemberton" <mp...@ph...> To: <dyn...@li...> Sent: Sunday, March 11, 2001 8:32 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop > in that case, i'm not sure what is causing the problem, the code uses a > standard mouseover to change the background. > > try http://freeshell.org/~afroapi/examples/afroapi/events/mouse.html and > see if it is also having problems. > > Mark Goldin wrote: > > > >Do you mean highlighting the menu option when the mouse moves over > > itYes. > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Michael P. <mp...@ph...> - 2001-03-11 14:33:25
|
in that case, i'm not sure what is causing the problem, the code uses a standard mouseover to change the background. try http://freeshell.org/~afroapi/examples/afroapi/events/mouse.html and see if it is also having problems. Mark Goldin wrote: > >Do you mean highlighting the menu option when the mouse moves over > itYes. -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-11 14:13:29
|
>Do you mean highlighting the menu option when the mouse moves over it=20 Yes. ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Sunday, March 11, 2001 7:29 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop i'm not currently using IE and I apologise if i'm missing something = here but I still do not know what you mean be selection. Do you mean = highlighting the menu option when the mouse moves over it or are you = talking text selection like selecting text to copy to the clipboard.=20 the text selection (eg to copy) is stopped in the same fashion as I = have stopped the right click menu.=20 also, as I should have said in my previous post NONE of the popup menu = items work in IE. IE doesn't want to allow me to use JS to navigate. = Why would anyone want that? : )=20 Mark Goldin wrote:=20 By selection I mean that:When IE5.5 was introduced many dynapi2 = examples did not work especially menus, listboxes. So I see same effect. = To get items highlighted I have to move a mouse over popup very slowly. = Also I treid to select 'source code' choice from Popup and did not get = any. I am using IE 5.5 on Win2000.Mark----- Original Message -----=20 From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 7:01 PM Subject: Re: [Dynapi-Widgetdev] Drag and Drop the javascript navigation seems to only work in NS. I'm trying = to find the IE equiv. (uses history.back() etc.)=20 what do you mean be selection?=20 Mark Goldin wrote:=20 Thanks Michael. Looks cool.As for Popup. The selection is not = working properly. Is it because I am using 5.5? Also no action after I = click on any item in popup. Sorry.Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 |
From: Michael P. <mp...@ph...> - 2001-03-11 14:04:18
|
it should be. that's how slideTo works. Richard Bennett wrote: > > if you want, I've got your old code and can have a go at making the > conversion. > > Feel free, I was just wondering what's the best setup, on one hand it's > nice and simple to be able to call > myLayer.grow() or > myLayer.shrink() > On the other hand the animation extension approach is more solid. > Is there an easy way to link the two? > something like: > > DynLayer.prototype.setGrow= function(dlyr,stepn,stepsize,speed) { > this.grow = new Animation.Grow(dlyr,stepn,stepsize,speed); > } > > DynLayer.prototype.grow= function() { > if(this.grow)this.grow.playAnimation(false); > } > > DynLayer.prototype.shrink= function() { > if(this.grow)this.grow.playAnimation(true); > } > > Could it be so simple, or am I missing something? > > > Also what do you think of the java like class setup. > I found it "interesting", but I'm not a Java user, so I'm not sure how that > works, and as I have enough to do as it is, I leave the structural changes > to those who know what they are talking about ;O) > > BTW I found a PDF on cross-browser JAVA, with something on the Mac, and > having to call something twice for it to work, do you want me to look for it > again? > > Cheers, > Richard Bennett > > ma...@ri... > www.richardinfo.com > (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) > Find the DynAPI faq here: > http://sourceforge.net/docman/display_doc.php?docid=656&group_id=5757 > Browse the mailinglist here: > http://www.mail-archive.com/index.php3?hunt=dynapi > > > when did we become DynMacromedia ?? > > > > just kidding : ) > > > > if you want, I've got your old code and can have a go at making the > conversion. > > > > Also what do you think of the java like class setup. > > > > I was thinking of changing my code so that all object constructors are > attached > > to a single point and then we can simply delete them all from there in > some sort > > of memory leak "solution". > > eg: code.ext.Animation.Glow > > code.gui.DynLayer, gui.DynDocument > > code.gui.ScrollBar > > > > similar to that used for accessing java classes in Netscape LiveConnect. > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Richard B. <ma...@ri...> - 2001-03-11 13:47:48
|
> if you want, I've got your old code and can have a go at making the conversion. Feel free, I was just wondering what's the best setup, on one hand it's nice and simple to be able to call myLayer.grow() or myLayer.shrink() On the other hand the animation extension approach is more solid. Is there an easy way to link the two? something like: DynLayer.prototype.setGrow= function(dlyr,stepn,stepsize,speed) { this.grow = new Animation.Grow(dlyr,stepn,stepsize,speed); } DynLayer.prototype.grow= function() { if(this.grow)this.grow.playAnimation(false); } DynLayer.prototype.shrink= function() { if(this.grow)this.grow.playAnimation(true); } Could it be so simple, or am I missing something? > Also what do you think of the java like class setup. I found it "interesting", but I'm not a Java user, so I'm not sure how that works, and as I have enough to do as it is, I leave the structural changes to those who know what they are talking about ;O) BTW I found a PDF on cross-browser JAVA, with something on the Mac, and having to call something twice for it to work, do you want me to look for it again? Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) Find the DynAPI faq here: http://sourceforge.net/docman/display_doc.php?docid=656&group_id=5757 Browse the mailinglist here: http://www.mail-archive.com/index.php3?hunt=dynapi > when did we become DynMacromedia ?? > > just kidding : ) > > if you want, I've got your old code and can have a go at making the conversion. > > Also what do you think of the java like class setup. > > I was thinking of changing my code so that all object constructors are attached > to a single point and then we can simply delete them all from there in some sort > of memory leak "solution". > eg: code.ext.Animation.Glow > code.gui.DynLayer, gui.DynDocument > code.gui.ScrollBar > > similar to that used for accessing java classes in Netscape LiveConnect. > |
From: Michael P. <mp...@ph...> - 2001-03-11 13:30:27
|
i'm not currently using IE and I apologise if i'm missing something here but I still do not know what you mean be selection. Do you mean highlighting the menu option when the mouse moves over it or are you talking text selection like selecting text to copy to the clipboard. the text selection (eg to copy) is stopped in the same fashion as I have stopped the right click menu. also, as I should have said in my previous post NONE of the popup menu items work in IE. IE doesn't want to allow me to use JS to navigate. Why would anyone want that? : ) Mark Goldin wrote: > By selection I mean that:When IE5.5 was introduced many dynapi2 > examples did not work especially menus, listboxes. So I see same > effect. To get items highlighted I have to move a mouse over popup > very slowly. Also I treid to select 'source code' choice from Popup > and did not get any. I am using IE 5.5 on Win2000.Mark----- Original > Message ----- > > From: Michael Pemberton > To: dyn...@li... > Sent: Saturday, March 10, 2001 7:01 PM > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > the javascript navigation seems to only work in NS. I'm > trying to find the IE equiv. (uses history.back() etc.) > what do you mean be selection? > > Mark Goldin wrote: > > > Thanks Michael. Looks cool.As for Popup. The selection is > > not working properly. Is it because I am using 5.5? Also > > no action after I click on any item in popup. Sorry.Mark > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-11 13:12:36
|
By selection I mean that: When IE5.5 was introduced many dynapi2 examples did not work especially = menus, listboxes. So I see same effect. To get items highlighted I have = to move a mouse over popup very slowly. Also I treid to select 'source = code' choice from Popup and did not get any. I am using IE 5.5 on = Win2000. Mark ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Saturday, March 10, 2001 7:01 PM Subject: Re: [Dynapi-Widgetdev] Drag and Drop the javascript navigation seems to only work in NS. I'm trying to = find the IE equiv. (uses history.back() etc.)=20 what do you mean be selection?=20 Mark Goldin wrote:=20 Thanks Michael. Looks cool.As for Popup. The selection is not = working properly. Is it because I am using 5.5? Also no action after I = click on any item in popup. Sorry.Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 |
From: Michael P. <mp...@ph...> - 2001-03-11 13:00:51
|
when did we become DynMacromedia ?? just kidding : ) if you want, I've got your old code and can have a go at making the conversion. Also what do you think of the java like class setup. I was thinking of changing my code so that all object constructors are attached to a single point and then we can simply delete them all from there in some sort of memory leak "solution". eg: code.ext.Animation.Glow code.gui.DynLayer, gui.DynDocument code.gui.ScrollBar similar to that used for accessing java classes in Netscape LiveConnect. Richard Bennett wrote: > Yes, very nice. > I just looked at the source, and it's certainly more inline with the other > animations. > That's the idea I should apply to wipe.js too. > And maybe to my pathanimBendAddon . > > Regarding slideTo/grow, I think you listen for ongrowrun, and move the layer > "myLayer.moveBy(3)" or whatever. > If you find a way of combining animations that would be great, but I think > that is tied in with a timeline which returns a stepSize value, like we > where discussing in another thread. > Then you would have frames, so you could say my slideTo() goes from frame 20 > to frame 40, and grow.playAnimation(false) starts at frame 30 to frame 40. > Widgets would have their own little timeline, for internal animations. > Then we add key-frames and tweening, and action-script, - ahh what am I > talking about, that'd never sell ;o). > > Richard. > > ----- Original Message ----- > From: "Michael Pemberton" <mp...@ph...> > To: <dyn...@li...> > Sent: Sunday, March 11, 2001 12:46 PM > Subject: [Dynapi-Widgetdev] Grow Animation (again) > > > I'm just not having much luck with my attachments of late, here should > > be the actual attachement. > > -- > > Michael Pemberton > > mp...@ph... > > ICQ: 12107010 > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Richard B. <ma...@ri...> - 2001-03-11 12:48:22
|
Yes, very nice. I just looked at the source, and it's certainly more inline with the other animations. That's the idea I should apply to wipe.js too. And maybe to my pathanimBendAddon . Regarding slideTo/grow, I think you listen for ongrowrun, and move the layer "myLayer.moveBy(3)" or whatever. If you find a way of combining animations that would be great, but I think that is tied in with a timeline which returns a stepSize value, like we where discussing in another thread. Then you would have frames, so you could say my slideTo() goes from frame 20 to frame 40, and grow.playAnimation(false) starts at frame 30 to frame 40. Widgets would have their own little timeline, for internal animations. Then we add key-frames and tweening, and action-script, - ahh what am I talking about, that'd never sell ;o). Richard. ----- Original Message ----- From: "Michael Pemberton" <mp...@ph...> To: <dyn...@li...> Sent: Sunday, March 11, 2001 12:46 PM Subject: [Dynapi-Widgetdev] Grow Animation (again) > I'm just not having much luck with my attachments of late, here should > be the actual attachement. > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 |
From: Michael P. <mp...@ph...> - 2001-03-11 11:47:37
|
I'm just not having much luck with my attachments of late, here should be the actual attachement. -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Michael P. <mp...@ph...> - 2001-03-11 11:36:42
|
I've attached a modified version of richard's grow animation code. It has been changes to that it can be used in the same fashion of the other animation extensions. The code needs some alteration (Animation.Grow should become GrowAnimation) due to my personal alterations to the animation structure. Other than that, it should work perfectly with the current DynAPI code. See the included HTML file to see how it works. Note: I've removed a lot of Richards advanced mouse triggered aspects. These can be added if needed but are not required for a simple grow animation. I'm also interested in a version that grows and slides so that the layer moves to a new logation and resizes as it goes. any comments? -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Richard B. <ma...@ri...> - 2001-03-11 08:48:25
|
> With all due respect, I am well aware of being able to re-load the page, to get the desired effect. The problem with that is, my useres will be browsing the internet within a Windowlette that is actually part of my site's homepage. Yes, it could reload once anyone resizes the screen....but then they would lose whatever web-page they were looking at. Because of this, Reloading the page is simply out of the question. This is where my dilema is...how to resize everything with the browser window.....WITHOUT having to reload the page. If anyone has ideas, I am open to them...no matter how crazy they might sound. > - Cheston U. If you are replying to my post, I was wondering if you were intending on supporting Netscape 4, because: * NS4 doesn't support I-frame, and it's I-layer will reload your whole page if someone clicks a link. * NS4 has problems when resizing the page, and will need a lot of experimenting with to get this working. If you DO want to support NS4, I think you'd have to use a frame-set for that browser (which will also have it's problems, but that's the same with I-frame), and if you can't get around the NS4 resizing bug, you could add a history module, so users could go back|forward, and use it to reset the users page after a resize/reload. For all other browsers you simply do something like this: DynAPI.onResize=function() { myWindow.moveTo(DynAPI.document.getWidth()/2-318,DynAPI.document.getHeight() /2-180) myWindow.setSize etc... } Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) Find the DynAPI faq here: http://sourceforge.net/docman/display_doc.php?docid=656&group_id=5757 Browse the mailinglist here: http://www.mail-archive.com/index.php3?hunt=dynapi |
From: Michael P. <mp...@ph...> - 2001-03-11 02:14:42
|
the javascript navigation seems to only work in NS. I'm trying to find the IE equiv. (uses history.back() etc.) what do you mean be selection? Mark Goldin wrote: > Thanks Michael. Looks cool.As for Popup. The selection is not working > properly. Is it because I am using 5.5? Also no action after I click > on any item in popup. Sorry.Mark -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-10 16:21:10
|
Thanks Michael. Looks cool. As for Popup. The selection is not working properly. Is it because I am = using 5.5? Also no action after I click on any item in popup. Sorry. Mark ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Saturday, March 10, 2001 10:02 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop it should appear on 202.92.110.168/dhtml/afroapi=20 the mouse clicks are trapped at the document level.=20 since the status bar stops the events from getting to that level, the = default browser menu appears.=20 Mark Goldin wrote:=20 I dont have ICQ, but if you send me an IP I would be more then = happy to take a look.Thanks, Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 8:47 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop with my mouse event code, if the browserReturn value is false ( = e.cancelBrowserEvent() ) the right menu is surpressed in both NS and IE. = also, if the browserReturn is true, the menus will happen. This = is all evaluated when each click is triggered. This way you can hide = the menu in some places and allow it in others.=20 if you've got ICQ, I can show you my current setup on my personal = web server to see what can be done.=20 Mark Goldin wrote:=20 >if by right popup you mean a right click menu or such, the = answer is yes.Will I be able to suppress a standard popup?Thanks Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 8:29 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop if by right popup you mean a right click menu or such, the = answer is yes.=20 as for dragging with altered click triggers (mouse click to = start, mouse click to end) you would need to alter the drag code. the = drop feature is simply and extension of dragging and does not effect any = drag code.=20 there are still a few problems with the drag drop setup. one = is that the mouse event x & y values are not updated when you start = playing around with the object being dragged. This should be solved but = I don't think anyone is working on it at the moment.=20 Mark Goldin wrote:=20 Hi Michael,Thanks for quick help. I have two additional = questions.1. Will I be able to implement right mouse ie5.5 popup object = clicking on a dragable object?2. Move an object first cliking on it, = then move without keeping mouse down, then clicking again to drop an = object?Thanks, Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 7:53 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop checkout:=20 = http://freeshell.org/~afroapi/examples/afroapi/events/drag.html=20 = http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html=20 The code can be got from here:=20 http://freeshell.org/~afroapi/afroapi.zip=20 =20 Mark Goldin wrote:=20 I need to develop an interface with drag and drop = functionality. I also need snap-on effect. Can somebody point me to = some examples I can use to get started?Thanks Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 |
From: Michael P. <mp...@ph...> - 2001-03-10 16:03:01
|
it should appear on 202.92.110.168/dhtml/afroapi the mouse clicks are trapped at the document level. since the status bar stops the events from getting to that level, the default browser menu appears. Mark Goldin wrote: > I dont have ICQ, but if you send me an IP I would be more then happy > to take a look.Thanks, Mark > > ----- Original Message ----- > From: Michael Pemberton > To: dyn...@li... > Sent: Saturday, March 10, 2001 8:47 AM > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > with my mouse event code, if the browserReturn value is > false ( e.cancelBrowserEvent() ) the right menu is > surpressed in both NS and IE. > > also, if the browserReturn is true, the menus will happen. > This is all evaluated when each click is triggered. This > way you can hide the menu in some places and allow it in > others. > > if you've got ICQ, I can show you my current setup on my > personal web server to see what can be done. > > Mark Goldin wrote: > > > >if by right popup you mean a right click menu or such, > > the answer is yes.Will I be able to suppress a standard > > popup?Thanks Mark > > > > ----- Original Message ----- > > From: Michael Pemberton > > To: dyn...@li... > > Sent: Saturday, March 10, 2001 8:29 AM > > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > > if by right popup you mean a right click menu > > or such, the answer is yes. > > > > as for dragging with altered click triggers > > (mouse click to start, mouse click to end) you > > would need to alter the drag code. the drop > > feature is simply and extension of dragging and > > does not effect any drag code. > > > > there are still a few problems with the drag > > drop setup. one is that the mouse event x & y > > values are not updated when you start playing > > around with the object being dragged. This > > should be solved but I don't think anyone is > > working on it at the moment. > > > > Mark Goldin wrote: > > > > > Hi Michael,Thanks for quick help. I have two > > > additional questions.1. Will I be able to > > > implement right mouse ie5.5 popup object > > > clicking on a dragable object?2. Move an object > > > first cliking on it, then move without keeping > > > mouse down, then clicking again to drop an > > > object?Thanks, Mark > > > > > > ----- Original Message ----- > > > From: Michael Pemberton > > > To: > > > dyn...@li... > > > Sent: Saturday, March 10, 2001 7:53 > > > AM > > > Subject: Re: [Dynapi-Widgetdev] Drag > > > and Drop > > > checkout: > > > > > > http://freeshell.org/~afroapi/examples/afroapi/events/drag.html > > > > > > > > > http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html > > > > > > The code can be got from here: > > > > > > http://freeshell.org/~afroapi/afroapi.zip > > > > > > > > > > > > Mark Goldin wrote: > > > > > > > I need to develop an interface with > > > > drag and drop functionality. I also > > > > need snap-on effect. Can somebody > > > > point me to some examples I can > > > > use to get started?Thanks Mark > > > > > > -- > > > Michael Pemberton > > > mp...@ph... > > > ICQ: 12107010 > > > > > -- > > Michael Pemberton > > mp...@ph... > > ICQ: 12107010 > > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-10 15:17:04
|
I dont have ICQ, but if you send me an IP I would be more then happy to = take a look. Thanks, Mark ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Saturday, March 10, 2001 8:47 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop with my mouse event code, if the browserReturn value is false ( = e.cancelBrowserEvent() ) the right menu is surpressed in both NS and IE. = also, if the browserReturn is true, the menus will happen. This is = all evaluated when each click is triggered. This way you can hide the = menu in some places and allow it in others.=20 if you've got ICQ, I can show you my current setup on my personal web = server to see what can be done.=20 Mark Goldin wrote:=20 >if by right popup you mean a right click menu or such, the answer = is yes.Will I be able to suppress a standard popup?Thanks Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 8:29 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop if by right popup you mean a right click menu or such, the answer = is yes.=20 as for dragging with altered click triggers (mouse click to start, = mouse click to end) you would need to alter the drag code. the drop = feature is simply and extension of dragging and does not effect any drag = code.=20 there are still a few problems with the drag drop setup. one is = that the mouse event x & y values are not updated when you start playing = around with the object being dragged. This should be solved but I don't = think anyone is working on it at the moment.=20 Mark Goldin wrote:=20 Hi Michael,Thanks for quick help. I have two additional = questions.1. Will I be able to implement right mouse ie5.5 popup object = clicking on a dragable object?2. Move an object first cliking on it, = then move without keeping mouse down, then clicking again to drop an = object?Thanks, Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 7:53 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop checkout:=20 = http://freeshell.org/~afroapi/examples/afroapi/events/drag.html=20 = http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html=20 The code can be got from here:=20 http://freeshell.org/~afroapi/afroapi.zip=20 =20 Mark Goldin wrote:=20 I need to develop an interface with drag and drop = functionality. I also need snap-on effect. Can somebody point me to = some examples I can use to get started?Thanks Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 |
From: Michael P. <mp...@ph...> - 2001-03-10 14:48:07
|
with my mouse event code, if the browserReturn value is false ( e.cancelBrowserEvent() ) the right menu is surpressed in both NS and IE. also, if the browserReturn is true, the menus will happen. This is all evaluated when each click is triggered. This way you can hide the menu in some places and allow it in others. if you've got ICQ, I can show you my current setup on my personal web server to see what can be done. Mark Goldin wrote: > >if by right popup you mean a right click menu or such, the answer is > yes.Will I be able to suppress a standard popup?Thanks Mark > > ----- Original Message ----- > From: Michael Pemberton > To: dyn...@li... > Sent: Saturday, March 10, 2001 8:29 AM > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > if by right popup you mean a right click menu or such, the > answer is yes. > > as for dragging with altered click triggers (mouse click to > start, mouse click to end) you would need to alter the drag > code. the drop feature is simply and extension of dragging > and does not effect any drag code. > > there are still a few problems with the drag drop setup. > one is that the mouse event x & y values are not updated > when you start playing around with the object being > dragged. This should be solved but I don't think anyone is > working on it at the moment. > > Mark Goldin wrote: > > > Hi Michael,Thanks for quick help. I have two additional > > questions.1. Will I be able to implement right mouse ie5.5 > > popup object clicking on a dragable object?2. Move an > > object first cliking on it, then move without keeping > > mouse down, then clicking again to drop an object?Thanks, > > Mark > > > > ----- Original Message ----- > > From: Michael Pemberton > > To: dyn...@li... > > Sent: Saturday, March 10, 2001 7:53 AM > > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > > checkout: > > > > http://freeshell.org/~afroapi/examples/afroapi/events/drag.html > > > > > > http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html > > > > The code can be got from here: > > http://freeshell.org/~afroapi/afroapi.zip > > > > > > Mark Goldin wrote: > > > > > I need to develop an interface with drag and > > > drop functionality. I also need snap-on effect. > > > Can somebody point me to some examples I can > > > use to get started?Thanks Mark > > > > -- > > Michael Pemberton > > mp...@ph... > > ICQ: 12107010 > > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Mark G. <mar...@me...> - 2001-03-10 14:35:20
|
>if by right popup you mean a right click menu or such, the answer is = yes.=20 Will I be able to suppress a standard popup? Thanks Mark ----- Original Message -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 Sent: Saturday, March 10, 2001 8:29 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop if by right popup you mean a right click menu or such, the answer is = yes.=20 as for dragging with altered click triggers (mouse click to start, = mouse click to end) you would need to alter the drag code. the drop = feature is simply and extension of dragging and does not effect any drag = code.=20 there are still a few problems with the drag drop setup. one is that = the mouse event x & y values are not updated when you start playing = around with the object being dragged. This should be solved but I don't = think anyone is working on it at the moment.=20 Mark Goldin wrote:=20 Hi Michael,Thanks for quick help. I have two additional = questions.1. Will I be able to implement right mouse ie5.5 popup object = clicking on a dragable object?2. Move an object first cliking on it, = then move without keeping mouse down, then clicking again to drop an = object?Thanks, Mark=20 ----- Original Message ----- From: Michael Pemberton To: dyn...@li... Sent: Saturday, March 10, 2001 7:53 AM Subject: Re: [Dynapi-Widgetdev] Drag and Drop checkout:=20 = http://freeshell.org/~afroapi/examples/afroapi/events/drag.html=20 = http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html=20 The code can be got from here:=20 http://freeshell.org/~afroapi/afroapi.zip=20 =20 Mark Goldin wrote:=20 I need to develop an interface with drag and drop functionality. = I also need snap-on effect. Can somebody point me to some examples I = can use to get started?Thanks Mark --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 --=20 Michael Pemberton=20 mp...@ph...=20 ICQ: 12107010=20 =20 |
From: Michael P. <mp...@ph...> - 2001-03-10 14:31:00
|
if by right popup you mean a right click menu or such, the answer is yes. as for dragging with altered click triggers (mouse click to start, mouse click to end) you would need to alter the drag code. the drop feature is simply and extension of dragging and does not effect any drag code. there are still a few problems with the drag drop setup. one is that the mouse event x & y values are not updated when you start playing around with the object being dragged. This should be solved but I don't think anyone is working on it at the moment. Mark Goldin wrote: > Hi Michael,Thanks for quick help. I have two additional questions.1. > Will I be able to implement right mouse ie5.5 popup object clicking on > a dragable object?2. Move an object first cliking on it, then move > without keeping mouse down, then clicking again to drop an > object?Thanks, Mark > > ----- Original Message ----- > From: Michael Pemberton > To: dyn...@li... > Sent: Saturday, March 10, 2001 7:53 AM > Subject: Re: [Dynapi-Widgetdev] Drag and Drop > checkout: > > http://freeshell.org/~afroapi/examples/afroapi/events/drag.html > > > http://freeshell.org/~afroapi/examples/afroapi/events/dragdrop.html > > The code can be got from here: > http://freeshell.org/~afroapi/afroapi.zip > > > Mark Goldin wrote: > > > I need to develop an interface with drag and drop > > functionality. I also need snap-on effect. Can somebody > > point me to some examples I can use to get started?Thanks > > Mark > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > -- Michael Pemberton mp...@ph... ICQ: 12107010 |