From: Mark G. <mar...@me...> - 2001-03-10 12:49:12
|
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 |
From: Michael P. <mp...@ph...> - 2001-03-10 13:54:40
|
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 |
From: Mark G. <mar...@me...> - 2001-03-10 14:05:35
|
Hi Michael, Thanks for quick help. I have two additional questions.=20 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 -----=20 From: Michael Pemberton=20 To: dyn...@li...=20 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 |
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 |
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: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 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 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 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-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-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: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 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: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: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: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 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 |