Re: [Dynapi-Dev] Blackboard Mode - layout managers

2003-09-05 Thread mlist
http://www.softbear.com/people/cory/articles/webtech.htm Java Layout Managers Java provides five layout managers in the Abstract Window Toolkit (AWT), a package in the standard Java library: BorderLayout; CardLayout; FlowLayout; GridLayout; and GridBagLayout. BorderLayout divides a window into

Re: [Dynapi-Dev] Index out of bound in htmltextbox getItem

2003-09-05 Thread mlist
I guess this is part of a larger design question. Should the Dynapi code check for invalid arguments to calls? Having the no property error error appear is functionally a thrown error. > Not sure if I understand. Is this a request to change something? I'm not > too familiar with this portio

Re: [Dynapi-Dev] Blackboard Mode

2003-09-05 Thread Leif W
I'm not too familiar with the terms "layout manager" or "alignment manager". What do they do, how do they work? Can you show an example (web) application or something? What are the programming requirements for such a feature? How might it integrate with the DynAPI? Leif - Original Message -

Re: [Dynapi-Dev] JS/DOM Autocompletion in IE6 / Mozilla 1.4

2003-09-05 Thread Leif W
Does anyone on the list know about DOM Text Ranges in Opera (any version)? I got Opera 7 running now (nice and fast, I was shocked). But I haven't been able to find specific documentation or code examples (that work, not just claim to work). Do my scripts work on Safari? I have no *Mac access. I

Re: [Dynapi-Dev] Index out of bound in htmltextbox getItem

2003-09-05 Thread Leif W
Not sure if I understand. Is this a request to change something? I'm not too familiar with this portion of the API, and not sure how this might affect other code, but see my proposed changes below (expanded for ease of readability). The line 99: if(typeof(index)=='number') return {text:o[index]

Re: [Dynapi-Dev] Blackboard Mode

2003-09-05 Thread Raymond Irving
The blackboard mode allows you th change the html content of the layer without deleting the children. It's works well with modern browsers and supports ns4 to some extent. The NS4 browser itself is limited in features so there is not much that we can do. As for layouts someone would have to crea

Re: [Dynapi-Dev] JavaScript Scripting Resources

2003-09-05 Thread Leif W
I spend more money on pizza each year than the cost to register a domain which is $25-35. :D Domains are cheap, 2-3 large pizzas with 3 toppings, that's like $2-3/month, maybe like 15-30 minutes of work (after taxes). I could always shell out the money upfront and we put some "Donate money via P

[Dynapi-Dev] Blackboard Mode

2003-09-05 Thread mlist
Can someone explain this in a bit more detail, I want to add it to the documentation. As near as I can till, it somewhat allows you to add multiple html items to a layer. It doesn't seem to work well if you add multiple layers to a layer. One of the things I am missing right now is a container

[Dynapi-Dev] [ dynapi-Patches-799368 ] MSIE 6 WinXP: Error raised importing dynapi.api.MouseEvent

2003-09-05 Thread SourceForge.net
Patches item #799368, was opened at 2003-09-02 20:14 Message generated for change (Comment added) made by xwisdom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=799368&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None Priorit

Re: [Dynapi-Dev] JS/DOM Autocompletion in IE6 / Mozilla 1.4

2003-09-05 Thread Raymond Irving
Wonderful! This is great! >From the looks of things I think it should go within the GUI section as it will mainly be used by gui components. Otherwise it should go into the util section. You can create and AutoComplete Class library so a user could create an autocomplete object: var ac = new Au

Re: [Dynapi-Dev] IOElement and Images

2003-09-05 Thread Raymond Irving
This is an IE problem. To resolve this preload your images using the execInParent function example: io.execInParent(function(){ dynapi.functions.getImage('myimage.gif',10,10); }) -- Raymond Irving --- Daniel Tiru <[EMAIL PROTECTED]> wrote: > Hi folks! > > I have made a example for you all