[Dynapi-Help] Code Genie

2002-02-07 Thread Roberto Peña
Well... I dont know if I did good or not, I decided to not include methods begining with "_" cause they are supposed to be private, arent they?? -- Version: DynAPI 2.5.7 -- No properties were included I think properties for browser should but anyway no one was included. -- Basic widgets are i

Re: [Dynapi-Help] Re: RiFastSkinTreenode

2002-02-07 Thread Doug Melvin
Useless Expression?!?! That's priceless (and very Netscape-ish) - Original Message - From: "Gabriel J Zimmerman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 12:38 PM Subject: [Dynapi-Help] Re: RiFastSkinTreenode > > Incidentally, the RiFastSkinTreenode d

Re: [Dynapi-Help] Drag And Drop in RiFastSkinTreenode

2002-02-07 Thread Doug Melvin
The dummy div would be a good idea, as it reduce complexity. To actually move the layer: myLayer.removeFromParent() (doea not delete, just remove) myOtherLayer.addChild(myLayer); This will remove the layer from it's parent, and add it to the new layer/ndoe. - Original Message - From: "

Re: [Dynapi-Help] Drag And Drop in RiFastSkinTreenode

2002-02-07 Thread Kurt McCaw
Interesting ideas ... I am trying Mr. Pemberton's idea around changing the layer and who the parent is. Let you know how things go. P.S. I am not sure about the NS6 problems. I did find and fix a problem with IE6 (you could not open the folder) ... I think I put it in the patches area of Sour

Re: [Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread Marek Najmajer
Thanks a lot, I'll try it tomorrow on IE4. But the problem is that my IE6 @ Win9X crashed deadly (demanding me to send bug msg to M$ guys), when entered elseif clause for is.ie the same as hereunder written: * else if (is.dom) { myscript.document.createElement('script'); myscript.src=srclib; myscr

Re: [Dynapi-Help] Drag And Drop in RiFastSkinTreenode

2002-02-07 Thread Michael Pemberton
The best way to describe this problem is by thinking of each layer as a window. Much like the windows in the room your sitting in now :) You can reach through this window to drag the children, but the children will alway be behind this window. This is why they seem to disappear. The way arou

[Dynapi-Help] Re: RiFastSkinTreenode

2002-02-07 Thread Gabriel J Zimmerman
Incidentally, the RiFastSkinTreenode does not seem to work for me in Netscape 6.2. If I go to the link http://www.richardinfo.f2s.com/dynapi/Richard_Examples/ri_fast_tree_view.htm I get the Javascript error "Useless Expression" on lines 367 and 384 of http://www.richardinfo.f2s.com/dynapi/src/

RE: [Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread martin ström
your ie-specific part is actually dom-code, but the ie-code will not work on ie4. try to write the

Re: [Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread Marek Najmajer
Thanks Martin, but I'd rather finish my work with 2.5.x line of DynAPI. I'm just looking for few lines of code for DOM browsers in the script: function loadf(srclib,obj) { var myscript; if (is.ns4) location.href = srclib; else if(is.dom) { //THE DOM CODE SHOULD GO HERE

RE: [Dynapi-Help] Support

2002-02-07 Thread Alexander Czernay
Hi Richard, it would be a great help, if the links from dynapi.sourceforge.net to your pages where updated and maybe a section "examples" added, that linked directly to your pages. I only found your great pages by chance! I really think a good example does a far better job than any documentation

Re: [Dynapi-Help] Drag And Drop in RiFastSkinTreenode

2002-02-07 Thread Gabriel J Zimmerman
That sounds like a really cool idea! I have been playing with the idea of adding DragDrop capabilities to the tree menu project (http://www.sourceforge.net/projects/jsmenu), which would involve turning it from absolute positioning to relative positioning and making the groupings (i.e.  child1

[Dynapi-Help] Drag And Drop in RiFastSkinTreenode

2002-02-07 Thread Kurt McCaw
Hi All: I have been playing with the 'RiFastSkinTreenode' widget and it is a very cool! I would like to implement some drag and drop functionality in it. I can get the dragging and dropping working (it was kind of scary how straight forward it was) ... but the trouble I am having is when I gra

Re: [Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread Raymond Irving
Hello, Synchronous loading of scripts can only be done using IE5,IE5.5 (and possibly in ie6). I've tried it with NS4 by creating a layer and then writing the

RE: [Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread martin ström
check out Dan's scriptlibrary-loader in the 2.9 version: http://makeashorterlink.com/?J5D22236 just use dynapi.library.loadScript("script.js") to load the scripts. i think there is a 2.9.1 version coming out pretty soon, maybe the library-loader also will be improved. /martin

[Dynapi-Help] Dynamic loading of external code

2002-02-07 Thread Marek Najmajer
Hi all, I've prepared a script to add and launch functions from an external JS file in synchronous manner. It's launched from an anchor on the page. (it's basing on some code from dynapi-dev list.) It works in IE5,IE5.5 very good. In NS4.7 it works once and crash sometimes when launched again. In