Re: [Dynapi-Dev] Question for developers....

2003-10-03 Thread Michael Bystrom
I have a theme system that I like allot in the IOS library, it uses a dynapi.theme = {} object as the main theme holder, then for each new theme that is loaded it get it's own namespace dynapi.theme.button = {} The first time the button is called it creates the theme and then for each new call

Re: [Dynapi-Dev] Question for developers....

2003-10-03 Thread Raymond Irving
Cool. I think I'll try to implement something that's very simple as well. -- Raymond Irving --- Michael Bystrom <[EMAIL PROTECTED]> wrote: > I have a theme system that I like allot in the IOS > library, it uses a > > dynapi.theme = {} > > object as the main theme holder, then for each new > t

Re: [Dynapi-Dev] Drag & Object

2003-10-03 Thread Raymond Irving
In response to dragging layers that are children of other layers the DragEvent class will add two new functions to the DynLayer class: setDragEnabled(b,useIcon) setDragIcon(html,w,h,color,image) The drag icon is simply another dynlayer that the system will add to the document. This layer can act

Re: [Dynapi-Dev] Drag & Object

2003-10-03 Thread Háber János
> Do you think this will solve the problem? Yes it's solve the problem :)) Cow --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Dynapi-Dev mailing li

[Dynapi-Dev] Whats up?!

2003-10-03 Thread Daniel Tiru
Title: Message Hi folks!   In the middle of everything, I thought even if there is no "project" right now... we still continue to develop things for dynapi, fixing bugs and even making new additions to DynAPI.   So what i thought of was that everyone involved int he project and that is maki

[Dynapi-Dev] Whats up?!

2003-10-03 Thread Daniel Tiru
Title: Message   Hi folks! In the middle of everything, I thought even if there is no "project" right now... we still continue to develop things for dynapi, fixing bugs and even making new additions to DynAPI.   So what i thought of was that everyone involved int he p

Re: [Dynapi-Dev] Whats up?!

2003-10-03 Thread Raymond Irving
Ok here's what I had in mind The once with the "+" I've done so far. Feel free to pick and create a few of the widgets and let's create a cool widget pack. + Button + CheckBox + RadioButton + ScrollBar + ImageClip + Explorer + Marquee + ViewPane + ListBox + ProgessBar DropDownContainer Com

Re: [Dynapi-Dev] Whats up?!

2003-10-03 Thread Leif W
MessageI'm playing catch-up on my emails still. :-) I've regained control of my Inbox by reading 7 days worth of mails in one day, for the two other lists I am on. So now I'll be able to concentrate on replying to the DynAPI developments over the past month, before the discussion becomes any mor

Re: [Dynapi-Dev] Upgrade questions library

2003-10-03 Thread Dan Steinman
It's been a while but as I remember the library I wrote keeps a global list of objects: dynapi.library._objects['Button'] That contains the other information like the path of the file required etc. When you have conflicting names one will be overwritten. It's a bit of a design flaw, it should

Re: [Dynapi-Dev] Upgrade questions library

2003-10-03 Thread Leif W
It seems the only occurance of _objects is in dynapi.js, and excluding initial variable declaration, it's only modified in p.add and p._queue where p is DynObject.prototype, and only in like two or three places in total, so it shouldn't be too difficult to modify. But what else refers to the _obje

[Dynapi-Dev] new widget: NodeItem, changed item: List

2003-10-03 Thread Háber János
Hi! I separate the List and their items. the old ListItem is renamed and separated to dynapi.gui.NodeItem. I started to work Grid and Tree api, and use NodeItem to items. Cow dynapi.zip Description: Zip archive