RE: [Dynapi-Help] Bug in DynAPI.include?

2000-12-06 Thread Pascal Bestebroer
try this code: include : function(src,path) { if(src.substring(src.length-3)!=".js") src+=".js" if (!path) { var path=DynAPI.librarypath var pckg=src.substring(0,src.indexOf('.')) var g

Re: [Dynapi-Help] Bug in DynAPI.include?

2000-12-06 Thread Robert Rainwater
The include function is designed for files that are located in packages. For example: /mystuff/gui/label.js If you want to include local files not in a package, you should then use tags. I don't think we need to make the include directory have to check and decide if you mean a local include o

Re: [Dynapi-Help] New events.js

2000-12-06 Thread Robert Rainwater
> Fixed IE problems with buttons in pushpanels not disappearing at all, but > now it requires an 'additional' click to remove the button when top/bottom > position is reached. <...slide... still there...click...gone...> This has now been fixed by calling checkButtons on mouseup. Although, in IE

Re: [Dynapi-Help] Widget tutorial: error!

2000-12-06 Thread Richard :o
hi, Either you're a javascript guru, if not take some time to get accustomed to the way widgets are included in your documents, which libraries to include, how event listeners work etc. There are many ready made widgets for you to use already .Some are listed here: http://www.cantir.com/dynapi/doc

[Dynapi-Help] Hover effect

2000-12-06 Thread robert
Does anyone have a link to (or example of) a simple hyperlink hover effect using the DynAPI2? Thanks, robert ___ Dynapi-Help mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/mailman/listinfo/dynapi-help

RE: [Dynapi-Help] Scroll2 and List

2000-12-06 Thread Nuno Ferreira
Exactly my thoughts! "Dynamic DHTML" would be a very good name for it! : Actually I'm working on the same field, just using a different method. PHP not ColdFusion. But the real strenght of Dynamic DHTML :) is in personalization, and minimizing the typical number of reloads necessary on a dat

RE: [Dynapi-Help] SkinTreeNode: slowwww..

2000-12-06 Thread Nuno Ferreira
Hi there, I had the same problem, but only on IE. Netscape takes half the time. But 310 nodes, that's at least 700+ layers on screen... yikes! Anyway, try using a different approach, by coding a widget yourself that uses just one or two layers. The whole is written on a table, each node is a r

[Dynapi-Help] Bug in DynAPI.include?

2000-12-06 Thread Ben Sargent
I've been playing around with the newest releases, and I think I may have found a bug in the DynAPI.include function. When loading my own source files like this: DynAPI.include('myfile.js','js/'); the include function tries to output: It also happens when I try to include 'myfile' instead of

[Dynapi-Help] Links is a loadPanel revisited

2000-12-06 Thread Scott Andrew LePera
My mistake: the current version of loadpanel doesn't seem to use the .lyrobj idea. No problem. Here's a quick run at a link-rewriter function. This only works in Netscape 4.x -- I still can't get the loadpanel to work in IE5 (what's up with that?), so I couldn't test it in that browser. Anyway,

[Dynapi-Help] Re: Widget tutorial: error!

2000-12-06 Thread Informazioni InnovaWeb
Thank you for that information, in fact the site at sourceforge is a little "strange"... I've downloaded the new version (with so many widgets!!!) and I'll test soon... Tank you! Henrik Sozzi Innovabeb by Poliware S.r.l. ___ Dynapi-Help mailing li

Re: [RE: [Dynapi-Help] html links inside loadpanel documents]

2000-12-06 Thread Scott Andrew LePera
You should be able to use an afterload event to trigger the iteration through the layer's document. Assuming the document is not from another domain, you could use this to rewrite all links. The loadpanel and loadHTML extension both already attach the calling layer as a property to the link, as .

Re: [Dynapi-Help] Widget tutorial: error!

2000-12-06 Thread Doug Melvin
You may be using and older version of DynAPI. Every day a new copy is made at http://dynapi.sourceforge.net/snapshot/dynapi.zip this copy has all the newest fixes and is updated daily. cheers Doug Melvin - Original Message - From: "Informazioni InnovaWeb" <[EMAIL PROTECTED]> To: <[EMAI

Re: [RE: [Dynapi-Help] html links inside loadpanel documents]

2000-12-06 Thread Bill Wheaton
Perhaps, after the page loads, you could go and get the loadpanel's document.links array, and the iterate through them all and add to them a target window, namely the layer you want them to show up in. I hope this works, because I plan on doing something like that. "Cameron Hart" <[EMAIL PROTECT

[Dynapi-Help] CVS woes

2000-12-06 Thread Scott Andrew LePera
I'm using WinCVS and I'm getting the following message when I try to checkout the dynapi module: cvs [checkout aborted]: end of file from server I've gone through all my settings and can't find anything wrong that I know of. Any ideas? Please reply to me off-list, thanks. -- scott andrew lepe

RE: [Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Cameron Hart
Talking to myself here, but I've got some new info... > Now I have a new problem - when I call set URL, the URL is getting garbled > somewhere. Any ideas what is happening there? It seems to get to > the setURL method intact, but I haven't looked into it any further than that. I think this might

[Dynapi-Help] Widget tutorial: error!

2000-12-06 Thread Informazioni InnovaWeb
I'll using that great project (DynAPI) in a big portal in Italy, it will works so fine! But I have a serious problem (after one day I'm using DynAPI, probably I've made some mistake): I've tryed the examples for the simple button widget in the tutorial, but it don't want to run! Ther file button.j

Re: [Dynapi-Help] SkinTreeNode: slowwww.. adendum to last msg

2000-12-06 Thread Scott Andrew LePera
I think your problem is IE-specific. IE seems to evaluate all JS before it renders to the screen. Netscape evaluates JS and renders simulataneously, so you get smoother animation and faster screen load than in IE. The more DynLayers you have, the longer it will take IE to display them. You ca

Re: [Dynapi-Help] loadHTML

2000-12-06 Thread Scott Andrew LePera
Hi Max, I think I found the problem: One, a typo in loadHTML: DynAPI.dyndoc should be: DynAPI.document Also, you'll notice that in loadHTML the loadqueue eventlistener is only added to the base dyndocument: DynAPI.document.addEventListener(lqLoadEvent) So this may need to be reworked if you

Re: [Dynapi-Help] SkinTreeNode. please help

2000-12-06 Thread Doug Melvin
if after looking at the code you think of a better way of doing things (you probably will as this is my first attempt at programming objects in jscript) or you just don't know what the hell I was thinking or you just want to point and kaugh.. please do.. I could REALLY use some feedback.. If

RE: [Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Cameron Hart
Ummm, I haven't tried tweaking the loadpanel source just yet. I might be using an older version of the loadpanel which doesn't support what you are saying, the version date is 2000.11.09. I've done what you suggested for Netscape and it works kind of :-) This is my new code: LoadPanel.prototype

[Dynapi-Help] New events.js

2000-12-06 Thread Raymond Smith
Fixed IE problems with buttons in pushpanels not disappearing at all, but now it requires an 'additional' click to remove the button when top/bottom position is reached. <...slide... still there...click...gone...> DS ___ Dynapi-Help mailing list [EMAI

Re: [Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Dan Steinman
You will need a reference to the loadpanel. In Netscape you might be able to use this: "this" in the content of a layer refers to the layer element. We have a .lyrobj property that points to the DynLayer (or DynLayer based widget). I can't remember if "this" inside a link returns the link

Re: [[Dynapi-Help] scroll pane example]

2000-12-06 Thread Doug Melvin
birdwacker ? pretty imagionative, I like to use, bugger, ARP, FU, and CauseISaidSo :-) Doug Melvin - Original Message - From: "Bill Wheaton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 06, 2000 7:28 AM Subject: Re: [[Dynapi-Help] scroll pane example] birdwacker

Re: [[Dynapi-Help] scroll pane example]

2000-12-06 Thread Bill Wheaton
birdwacker doesn't seem to do much either. Like the name though. One more test variable name. flogs, fleebs, doohongs, birdwackers, hmmms... coding is not pretty. where is 'scroll' being used? "Raymond Smith" <[EMAIL PROTECTED]> wrote: > - > At

[Dynapi-Help] SkinTreeNode. please help

2000-12-06 Thread Doug Melvin
the attached files show how far I've gotten..   through testing I have determined that the Tempnodes are being created.. and that they are being translated to real nodes, also have proven that the node are being sized and positioned.. but I can't see then.. help?   Thank you,Doug MelvinIntegr

RE: [Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Cameron Hart
> I'm not sure if this is what you're looking for, but why not try > something like ... > > My Link > > If you don't know what whateverLayer is in adavnce, you could use > document.write to change the name of the layer. that works if you know what whatevenLayer is, but unfortunately I don't. I th

Re: [Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Mark Pratt
I'm not sure if this is what you're looking for, but why not try something like ... My Link If you don't know what whateverLayer is in adavnce, you could use document.write to change the name of the layer. Let me know if you come across a better solution, or indeed if anyone has come across a

[Dynapi-Help] html links inside loadpanel documents

2000-12-06 Thread Cameron Hart
I've got a question about links inside html files loaded into a loadpanel. I am building a site that uses multiple loadpanels at the same time. All these loadpanels contain external html documents. Some of these documents have links in them. If you click on a link in a document loaded in a loadpa

Re: [RE: [Dynapi-Help] Scroll2 and List ]

2000-12-06 Thread Peter Luxmore
Bill Download and try the latest Novell Client. No problems here. :-) Regards Peter Luxmore, CNE CompSync Technologies Bill Wheaton wrote: > Not everyone wants to load the Flash plugin on their system (or is allowed > to). I don't. Every time I load another plugin on my system something > br

Re: [Dynapi-Help] Scroll2 and List

2000-12-06 Thread Peter Luxmore
Ivan Yeah I know. Thats because its still DynAPI 1. Regards Peter Luxmore CompSync Technologies Iván Rodríguez Murillo wrote: > Your drag code doesn't work on internet explorer 5.5 > I can´t drag the image. > > I have tried with Netscape 4.7 and it's ok. > > - Original Message - > From

Re: [Dynapi-Help] SkinTreeNode: slowwww..

2000-12-06 Thread Doug Melvin
And now.. I must admit defeat.. I just don't have the experience with Jscrip objects to whip this one outta my ear as usual.. so.. how about some tips/hints as to how I can accomplish this?   I'm thinking that I need to off-load a whole bunch of the initialization of the TreeSkinNode into and

Re: [Dynapi-Help] SkinTreeNode: slowwww.. adendum to last msg

2000-12-06 Thread Doug Melvin
An other option as I see it would be to hold an array of 'records' in my main program and load the treenodes from the data in said records when the record's parent node is expanded...   Again, looking for direction..   Thanks, Doug Melvin   - Original Message - From: Doug Melvin

[Dynapi-Help] scroll pane example

2000-12-06 Thread Raymond Smith
One problem with the example (IE) is using "scroll" as a name of the scroll widget.   scroll = new ScrollPane(label1)  // label1 will be set as the contentscroll.setSize(150,150)scroll.moveTo(250,50)scroll.setBgColor('#c0c0c0')   Changing scroll to birdwacker will at least allow the window t

Re: [Dynapi-Help] SkinTreeNode: slowwww..

2000-12-06 Thread Doug Melvin
Thank you for your suggestion.. Now that you mention it, that should indeed do the trick!   Thank you,Doug MelvinIntegrated System Solutions: Design, Development, Implementation and SupportCreative-Workshop.com - Original Message - From: Pascal Bestebroer To: [EMAIL PROTEC

RE: [Dynapi-Help] SkinTreeNode: slowwww..

2000-12-06 Thread Pascal Bestebroer
There's a way to solve it, using caching.. this is not yet implemented in the current  code but it shouldn't be that hard to perform.   You should change the  code so that treenodes are not created by default (only the top visible level) and once a node expands check to see if the child nodes