You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rainwater, R. A. <RA...@MA...> - 2000-11-01 18:08:09
|
How about something like this: // make sure you include core.ext.inline.js <script> DynAPI.onLoad = function() { mb = new IbsButtonImage() mb.setImages(homeImgOff,homeImgOn,null,null) mb.setSize(500,200) mb.moveTo(0,0) mb.setBgColor("#EFE234") this.document.all['buttonholder'].addChild(mb) } </script> <body> Button Demo <p> <div id="buttonholder" STYLE="position: absolute"></div> Robert |
From: Jason L. <ja...@go...> - 2000-11-01 16:09:36
|
Anyone know if it is possible to use the core.ibs.buttonimage.js and inline layers? For example, the following works fine for DynLayers (as expected): homeImgOff = DynAPI.getImage(homeOff.jpg',498,133) homeImgOn = DynAPI.getImage('homeOn.jpg',498,133) mb = new IbsButtonImage() mb.setImages(homeImgOff,homeImgOn,null,null) mb.setSize(500,200) mb.moveTo(10,10) mb.setBgColor("#EFE234") this.document.addChild(mb) However, I would like to do (something like) the following: mb = new IbsButtonImage(DynAPI.document.all["imgTestDIV"]) mb.setImages(homeImgOff,homeImgOn,null,null) mb.setSize(498,133) mb.moveTo(100,100) mb.setBgColor("#FFFFFF") <body> <div id="imgTestDIV" STYLE="position: absolute"> <a href="#"><img name="home" src="homeOff.jpg" width="498" height="133" border="0" alt="Home"></a> </div> </body> Anyone have any ideas if this is possible? If so, will the eventListener be applied to the div? Any insight/examples would be greatly appreciated. Thanks! Pax, Jason |
From: Tarun R E. <ta...@we...> - 2000-10-31 23:02:48
|
Greak Work! and the logo at the far left is cool too! ----- Original Message ----- From: "Jannon Frank" <ja...@cs...> To: "dynapi-help" <dyn...@li...> Sent: Tuesday, October 31, 2000 7:21 AM Subject: [Dynapi-Help] documentation, presence, etc. > So the API reference documentation project is almost ready to begin. > > Go to: > http://emc2.caltech.edu/~schlam/dynapi2/ > > I want everyone to just click through and check it out for now. I want to > get any suggestions of schema changes anyone might have. I figure I'll take > those for a few days before finalizing it and having people start filling > out the DB. Which means, don't submit anything now. (1) because I'm not > going to guarantee it gets carried over if any schema changes are made and > (2) I haven't tested submission yet. > The proprties page isn't up yet, but the property fields are: name, type, > and description. > > Also, there's been talk about setting up a home page at sourceforge for > DynAPI2. I think that's a great idea. I'd like to see more of a presence > out there for the project and a more friendly face, something new users and > developers can easily grab on to. Just cuz there's some confusion going > around with Pascal's site and then users can go to sourceforge, and there's > also IlMaestro's site, whish I guess is the official one right now. I guess > with the documentation DB and the templates being created, we'll get there. > just my $.02. Oh, I also think the DynAPI could use a logo. When you go to > the site above there are three versions of one I kinda like. It'd be good > to hear your thoughts. > > lata > -j > <jf...@us...> > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Scott A. L. <sc...@sc...> - 2000-10-31 22:35:52
|
I guess the short answer is no, recreateAll will probably NOT be called outside of DynAPI.resizeHandler, but there's no guarantee... When Netscape is resized, it destroys it's layers array. So while the DynLayer objects still exist, the physical layers they represent do not. That's why the .elm property gets altered. How does your patch work? scottandrew mi...@pr... wrote: > > Does any body know if the recreateAll() method of DynDocument ever get called (or need to get called) outside of the DynAPI resizeHandler? > > In the ns4 resize bug that has haunted (haunted... Happy Halloween! :-)) us since the beginning, and has never had any real solution, I have found the problem at it's source. The resize itself does something strange the elm propery of the DynLayer... All of the elm's properties still intact, but are not really accessable. This creates a problem when the deleteElement() (which attempts to alter the elms properties -- which are still there, just inaccessable) is called from recreateAll(). Also, usually before deleteElement() gets called, it's associated arrays are taken care of already (ie. unassigend, etc..), but this is not so in the recreateAll() method. > > I have a final solution to this bug, but I need to know the answer to the question at the top of this message before I upload my patch. > > If anybody knows teh answer for sure, please reply to this message ASAP. > > Thank you, > > Michael Lilli (proteanman) > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: <mi...@pr...> - 2000-10-31 21:17:55
|
Does any body know if the recreateAll() method of DynDocument ever get called (or need to get called) outside of the DynAPI resizeHandler? In the ns4 resize bug that has haunted (haunted... Happy Halloween! :-)) us since the beginning, and has never had any real solution, I have found the problem at it's source. The resize itself does something strange the elm propery of the DynLayer... All of the elm's properties still intact, but are not really accessable. This creates a problem when the deleteElement() (which attempts to alter the elms properties -- which are still there, just inaccessable) is called from recreateAll(). Also, usually before deleteElement() gets called, it's associated arrays are taken care of already (ie. unassigend, etc..), but this is not so in the recreateAll() method. I have a final solution to this bug, but I need to know the answer to the question at the top of this message before I upload my patch. If anybody knows teh answer for sure, please reply to this message ASAP. Thank you, Michael Lilli (proteanman) |
From: Scott A. L. <sc...@sc...> - 2000-10-31 17:53:49
|
This is very cool work. I think the biggest hurdle is simply getting the core API documentation done. I would propose a slight change in the directory structure (the distribution, not the DB): API: the base essentials dynapi dynlayer dyndocument events browser Extensions: scripts that add methods/functionality to core objects inline layer loadHTML slide Utilities: standalone objects that can interact with core objects dragevent functions cookies GUI: user interface widgets/controls label button scrollbar Everything else can be regarded as a widget pack: WGX,IBS, etc. Jannon Frank wrote: > > So the API reference documentation project is almost ready to begin. > > Go to: > http://emc2.caltech.edu/~schlam/dynapi2/ > > I want everyone to just click through and check it out for now. I want to > get any suggestions of schema changes anyone might have. I figure I'll take > those for a few days before finalizing it and having people start filling > out the DB. Which means, don't submit anything now. (1) because I'm not > going to guarantee it gets carried over if any schema changes are made and > (2) I haven't tested submission yet. > The proprties page isn't up yet, but the property fields are: name, type, > and description. > > Also, there's been talk about setting up a home page at sourceforge for > DynAPI2. I think that's a great idea. I'd like to see more of a presence > out there for the project and a more friendly face, something new users and > developers can easily grab on to. Just cuz there's some confusion going > around with Pascal's site and then users can go to sourceforge, and there's > also IlMaestro's site, whish I guess is the official one right now. I guess > with the documentation DB and the templates being created, we'll get there. > just my $.02. Oh, I also think the DynAPI could use a logo. When you go to > the site above there are three versions of one I kinda like. It'd be good > to hear your thoughts. > > lata > -j > <jf...@us...> > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Robert R. <rra...@ya...> - 2000-10-31 16:13:08
|
Here's an updated events file. It should fix your problem. Rob |
From: Pascal B. <pb...@oi...> - 2000-10-31 08:14:20
|
Hmm, I tried it on the latest release yesterday, and it worked ok (wasn't before, but after the change it did) the current event code is a big buggy, so that line after it (type="rtmouse..." is not going to be run, that's just one of the bugs.. the strange thing is that when I tested it, it did work. I'll check it tonight, maybe I can upload my core.api.event code which should work ok greets, Pascal Bestebroer pb...@oi... http://www.oibv.com -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Behrendt Darboven Verzonden: dinsdag 31 oktober 2000 9:09 Aan: dyn...@li... Onderwerp: Re: [Dynapi-Help] forms in NS with Dynapi Hello Pascal, I changed the line (it is in core.api.events), but this does not fix the problem, sorry. It also does not look because after the return evt.bubbleEvent() is another statement (if (type=="rtmousedown" || type=="rtmouseup") return false) which obviously will never run. regards Behrendt Pascal Bestebroer wrote: to fix this bug, find the function:DynDocument.prototype.EventMethod in core.ext.eventsand go to the second to last line that reads:evt.bubbleEvent() change that into: return evt.bubbleEvent()should also fix image-layer dragging problems.Note to other Dynapi developers, the event code in the last release needs some seriousrechecking as mentioned in my other mail to dynapi-dev. greets! Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Behrendt Darboven Verzonden: maandag 30 oktober 2000 17:29 Aan: dyn...@li... Onderwerp: [Dynapi-Help] forms in NS with Dynapi Hi out there, after changing to dynapi20001030, I found out, that Form-Tags are no longer working. I don´t know, if this is a bug or a feature, or if I did something wrong, but in IE it seems to work well. Here is the code, I typed: <html> <head> <title>New1</title> </head> <script language="Javascript" src="js/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('js/lib2.0/') DynAPI.include('core.api.*') // if I exclude this, the forms work! </script> <script language="JavaScript1.2"> function buttonClicked() { alert("You clicked the Button") } </script> <body> <form name="data"> <input type="button" value="Test" onClick=buttonClicked()> </form> </body> </html> Regards, Behrendt _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Behrendt D. <Beh...@da...> - 2000-10-31 07:24:21
|
Hello Pascal, I changed the line (it is in core.api.events), but this does not fix the problem, sorry. It also does not look because after the return evt.bubbleEvent() is another statement (if (type=3D=3D"rtmousedown" || type=3D=3D"rtmouseup") = return false) which obviously will never run. regards Behrendt Pascal Bestebroer wrote: > to fix this bug, find > the function:DynDocument.prototype.EventMethod in core.ext.eventsand > go to the second to last line that reads:evt.bubbleEvent() > change that into: return evt.bubbleEvent()should also fix image-layer > dragging problems.Note to other Dynapi developers, the event code in > the last release needs some seriousrechecking as mentioned in my other > mail to dynapi-dev. > greets! > Pascal Bestebroer pa...@dy... http://www.dynamic-core.net [Image] > > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens > Behrendt Darboven > Verzonden: maandag 30 oktober 2000 17:29 > Aan: dyn...@li... > Onderwerp: [Dynapi-Help] forms in NS with Dynapi > > Hi out there, > after changing to dynapi20001030, I found out, that > Form-Tags are no longer working. I don=B4t know, if this is a > bug or a feature, or if I did something wrong, but in IE it > seems to work well. > > Here is the code, I typed: > > <html> > <head> > <title>New1</title> > </head> > <script language=3D"Javascript" src=3D"js/dynapi.js"></script> > <script language=3D"Javascript"> > > DynAPI.setLibraryPath('js/lib2.0/') > > DynAPI.include('core.api.*') // if I exclude > this, the forms work! > </script> > > <script language=3D"JavaScript1.2"> > function buttonClicked() { > alert("You clicked the Button") > } > </script> > > <body> > <form name=3D"data"> > <input type=3D"button" value=3D"Test" > onClick=3DbuttonClicked()> > </form> > </body> > </html> > > Regards, Behrendt > _______________________________________________ Dynapi-Help > mailing list Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Robert R. <rra...@ya...> - 2000-10-31 03:38:08
|
Sourceforge setup our mysql database today, so we now have database access. We also have php on the server. I would love any ideas or suggestions on what we can do with dynapi.sourceforge.net. Things like what type of information should be there. I know we need documentation. The site should also have a widget section for user-contributed widgets. Currently, only a minimal number of widgets will come with the dynapi release, so we should offer the widget-packs here. What else should the site feature. Also, any design ideas, database shemas, etc.? Robert |
From: Richard :o\) <ma...@ri...> - 2000-10-31 03:26:35
|
hi, This is going to be a great help when it's operational,. my ideas: Logo: I'm sorry I really don't like these,- much to much going on, and not clear what it is. I think something simpler which could also be used as a "powered by DynAPI2" button on the sites would be better.. Maybe something like this: http://www.cakewalk.com/hf/images/cakelogo.jpg Site: *The current server is very slow, although it's only a temp server now I guess? * The "All Classes" option is good to have an overview, it would be nice if the methods etc became visible inline, like a treeview, or a popup info div. Couldn't a hierarchal menu system be used here? * Some kind of color-coding or icons would be nice to see if the methods and properties of a class are documented yet, and if the documentation has been deemed correct and finished (ie file is locked from further modification). * Besides the Methods and Properties a General_info (to warn of any bugs or incompatibilities) and an Example section would be nice. * a search engine would be a great help, maybe this one: http://www.dynamic-core.net/knowledgebase/article-2000/Setting%20up%20your%2 0own%20search%20engine.htm * maybe a printable version could be made. Anyway keep up the good work, if I can help on anything specific let me know (dhtml, javascript, asp, database-design or whatever) Richard :o) ----- Original Message ----- From: "Jannon Frank" <ja...@cs...> To: "dynapi-help" <dyn...@li...> Sent: Tuesday, October 31, 2000 2:51 AM Subject: [Dynapi-Help] documentation, presence, etc. > So the API reference documentation project is almost ready to begin. > > Go to: > http://emc2.caltech.edu/~schlam/dynapi2/ > > I want everyone to just click through and check it out for now. I want to > get any suggestions of schema changes anyone might have. I figure I'll take > those for a few days before finalizing it and having people start filling > out the DB. Which means, don't submit anything now. (1) because I'm not > going to guarantee it gets carried over if any schema changes are made and > (2) I haven't tested submission yet. > The proprties page isn't up yet, but the property fields are: name, type, > and description. > > Also, there's been talk about setting up a home page at sourceforge for > DynAPI2. I think that's a great idea. I'd like to see more of a presence > out there for the project and a more friendly face, something new users and > developers can easily grab on to. Just cuz there's some confusion going > around with Pascal's site and then users can go to sourceforge, and there's > also IlMaestro's site, whish I guess is the official one right now. I guess > with the documentation DB and the templates being created, we'll get there. > just my $.02. Oh, I also think the DynAPI could use a logo. When you go to > the site above there are three versions of one I kinda like. It'd be good > to hear your thoughts. > > lata > -j > <jf...@us...> > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > ____________________________________________________________ > Get your FREE personal .com domain name and > NAMEzero Personal Portal at: http://www.namezero.com. > For customer service, mailto:cus...@na.... > > |
From: Jannon F. <ja...@CS...> - 2000-10-31 01:55:49
|
So the API reference documentation project is almost ready to begin. Go to: http://emc2.caltech.edu/~schlam/dynapi2/ I want everyone to just click through and check it out for now. I want to get any suggestions of schema changes anyone might have. I figure I'll take those for a few days before finalizing it and having people start filling out the DB. Which means, don't submit anything now. (1) because I'm not going to guarantee it gets carried over if any schema changes are made and (2) I haven't tested submission yet. The proprties page isn't up yet, but the property fields are: name, type, and description. Also, there's been talk about setting up a home page at sourceforge for DynAPI2. I think that's a great idea. I'd like to see more of a presence out there for the project and a more friendly face, something new users and developers can easily grab on to. Just cuz there's some confusion going around with Pascal's site and then users can go to sourceforge, and there's also IlMaestro's site, whish I guess is the official one right now. I guess with the documentation DB and the templates being created, we'll get there. just my $.02. Oh, I also think the DynAPI could use a logo. When you go to the site above there are three versions of one I kinda like. It'd be good to hear your thoughts. lata -j <jf...@us...> |
From: Scott A. L. <sc...@sc...> - 2000-10-30 23:56:23
|
Dave: Try putting an alert() in the loop where it goes through each color. That way you can see if the loop is being executed fully. If the loop is working, maybe you need a setTimeout call rather than a for loop to control the timing. Dave Waller wrote: > > I am stuck tring to figure out why IE does not (or runs it so fast that > I can not see it) run this correctly. > > I have a layer that has some text and it gets its color changed, ie > fades. > > here is a URL that I use it in. > > http://www.ckhnet.com/users/dwaller/test/test.html > > Thanks in advance for any help > Dave Waller > > ------------------------------------------------------------------------ > Name: fade.js > fade.js Type: JavaScript Program (application/x-javascript) > Encoding: 7bit |
From: Dave W. <dw...@ck...> - 2000-10-30 23:45:21
|
I am stuck tring to figure out why IE does not (or runs it so fast that I can not see it) run this correctly. I have a layer that has some text and it gets its color changed, ie fades. here is a URL that I use it in. http://www.ckhnet.com/users/dwaller/test/test.html Thanks in advance for any help Dave Waller |
From: Tarun R E. <ta...@we...> - 2000-10-30 22:29:05
|
I know that window.screenLeft and window.screenTop happen to work in IE, but I am not sure whether they work in IE4 or not. They work okay in IE 5. ----- Original Message ----- From: "Jordi 'IlMaestro' Ministral" <jmi...@or...> To: <dyn...@li...> Sent: Monday, October 30, 2000 5:55 PM Subject: [Dynapi-Help] Window coordinates > Is there any way to know a window's coordinates relative to the screen > using IE4 ? Both Netscape and Explorer have screenX and screenY, but not > IE4. Any suggestions ? Brjj... no matter how used you get to it, these > things always get to your nerves. > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Tarun R E. <ta...@we...> - 2000-10-30 22:04:18
|
I too was suprised that getParentComponent() wasnt working ( I just bothered to check now). However when I had a look at 'core.api.dynlayer.js', the reason wasnt too suprising. The method getParentComponent() returns the property 'this.parentComponent', however this property doesnt seem to be set anywhere, and so remains undefined. To get around the problem simply access the parent property of the DynLayer. for example : // Assuming myLayer has been defined and added as a child of myParentLayer somewhere myLayer.parent // gives parent object // To check whether the child layer belongs to a specific parent, you can do this if (myLayer.parent == myParentLayer) { } // Alternatively you can define and set the "id" property of all the parent layers like : myParentLayer.id = "Pa"; if (myLayer.parent.id == "Pa") // The second method might be preferable, when you have multiple references to the same layer // or when you have both DynLayers and inline layers present, and you want the code that accesses // them to be the same. ----- Original Message ----- From: "Matthew" <ma...@di...> To: <dyn...@li...> Sent: Monday, October 30, 2000 11:48 PM Subject: [Dynapi-Help] child is nested in a parent > What I am wanting to do is check if a child exists within a parent layer.. I > have been looking at the children array and understand that a child exists > when it is found in this array.. but what I am wanting to do is check > weather a child is within a specific parent layer and if so manipulate that > child... and visa versa.. if it doesn't exist within that parent layer then > manipulate it.. so what I found was the function called .getParentComponent > which I am assuming does what I am wanting.. but I am not sure how to call > this.. I am doing mychild.getParentComponent when the child is on a parent > layer, this returns UNDEFINED.. > > So any help would be much appreciated.. I am assuming that I use the array > but how do I make sure that I am referencing the correct child when there > are multiple parents with children... > > Cheers Matt > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Rainwater, R. A. <RA...@MA...> - 2000-10-30 20:24:37
|
Check the old dynapi forum at dansteinman.com. There was a discussion there a while back (not sure which month). And someone came up with a solution. Robert -----Original Message----- From: Jordi 'IlMaestro' Ministral To: dyn...@li... Sent: 10/30/00 7:25 AM Subject: [Dynapi-Help] Window coordinates Is there any way to know a window's coordinates relative to the screen using IE4 ? Both Netscape and Explorer have screenX and screenY, but not IE4. Any suggestions ? Brjj... no matter how used you get to it, these things always get to your nerves. _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Pascal B. <pa...@dy...> - 2000-10-30 20:12:50
|
to fix this bug, find the function: DynDocument.prototype.EventMethod in core.ext.events and go to the second to last line that reads: evt.bubbleEvent() change that into: return evt.bubbleEvent() should also fix image-layer dragging problems. Note to other Dynapi developers, the event code in the last release needs some serious rechecking as mentioned in my other mail to dynapi-dev. greets! Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Behrendt Darboven Verzonden: maandag 30 oktober 2000 17:29 Aan: dyn...@li... Onderwerp: [Dynapi-Help] forms in NS with Dynapi Hi out there, after changing to dynapi20001030, I found out, that Form-Tags are no longer working. I don´t know, if this is a bug or a feature, or if I did something wrong, but in IE it seems to work well. Here is the code, I typed: <html> <head> <title>New1</title> </head> <script language="Javascript" src="js/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('js/lib2.0/') DynAPI.include('core.api.*') // if I exclude this, the forms work! </script> <script language="JavaScript1.2"> function buttonClicked() alert("You clicked the Button") } </script> <body> <form name="data"> <input type="button" value="Test" onClick=buttonClicked()> </form> </body> </html> Regards, Behrendt _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Matthew <ma...@di...> - 2000-10-30 18:17:47
|
What I am wanting to do is check if a child exists within a parent layer.. I have been looking at the children array and understand that a child exists when it is found in this array.. but what I am wanting to do is check weather a child is within a specific parent layer and if so manipulate that child... and visa versa.. if it doesn't exist within that parent layer then manipulate it.. so what I found was the function called .getParentComponent which I am assuming does what I am wanting.. but I am not sure how to call this.. I am doing mychild.getParentComponent when the child is on a parent layer, this returns UNDEFINED.. So any help would be much appreciated.. I am assuming that I use the array but how do I make sure that I am referencing the correct child when there are multiple parents with children... Cheers Matt |
From: Pascal B. <pa...@dy...> - 2000-10-30 17:12:34
|
The loadHTML code supplied is NOT BUG FREE, it won't work on all browsers correctly, and usually crashes the browser (faster then it would normally :-) It has never worked 100% ! Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Robert Rainwater Verzonden: maandag 30 oktober 2000 4:39 Aan: Hegardt Onderwerp: Re: [Dynapi-Help] Scrolling-problems I'm not sure if the loadHTML even works completely. Has anyone verified this with the latest release? Robert -- Email: <mailto:rra...@ya...> PGP Key ID: 0x703D7F7C _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Behrendt D. <Beh...@da...> - 2000-10-30 16:28:33
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <html> Hi out there, <br>after changing to dynapi20001030, I found out, that Form-Tags are no longer working. I don´t know, if this is a bug or a feature, or if I did something wrong, but in IE it seems to work well. <p>Here is the code, I typed: <p><html> <br><head> <br> <title>New1</title> <br></head> <br><script language="Javascript" src="js/dynapi.js"></script> <br><script language="Javascript"> <p>DynAPI.setLibraryPath('js/lib2.0/') <p>DynAPI.include('core.api.*') <font color="#CC0000">// if I exclude this, the forms work!</font> <br></script> <p><script language="JavaScript1.2"> <br>function buttonClicked() { <br> alert("You clicked the Button") <br>} <br></script> <p><body> <br><form name="data"> <br> <input type="button" value="Test" onClick=buttonClicked()> <br></form> <br></body> <br></html> <p>Regards, Behrendt</html> |
From: Jordi 'I. M. <jmi...@or...> - 2000-10-30 12:26:15
|
Is there any way to know a window's coordinates relative to the screen using IE4 ? Both Netscape and Explorer have screenX and screenY, but not IE4. Any suggestions ? Brjj... no matter how used you get to it, these things always get to your nerves. |
From: Tarun R E. <ta...@we...> - 2000-10-30 08:53:07
|
What does "work completely" in your message mean ? It seems to work okay for me, with this code : (after importing core.ext.loadhtml.js) (24th Oct DynAPI) myLayer = new DynLayer(null,30,50,300,300,"#cccccc"); DynAPI.document.addChild(myLayer); myLayer.setURL("bingo.txt"); // "bingo.txt" is in the current directory ----- Original Message ----- From: "Robert Rainwater" <rra...@ya...> To: "Hegardt" <dyn...@li...> Sent: Monday, October 30, 2000 9:09 AM Subject: Re: [Dynapi-Help] Scrolling-problems > > I'm not sure if the loadHTML even works completely. Has anyone > verified this with the latest release? > > > Robert > > -- > Email: <mailto:rra...@ya...> > PGP Key ID: 0x703D7F7C > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Robert R. <rra...@ya...> - 2000-10-30 03:38:26
|
I'm not sure if the loadHTML even works completely. Has anyone verified this with the latest release? Robert -- Email: <mailto:rra...@ya...> PGP Key ID: 0x703D7F7C |
From: Dave W. <dw...@ck...> - 2000-10-29 13:50:18
|
I am using the dynapi to make a fade script in which an array of text is faded in a layer. The whole idea is that one array holds a list of texts to move through and another is the corrisponding link. I want to make a layer that holds the text and another right on top of it that holds a transperent gif and the link so that it appears that the whole thing is clickable. I have it mostly working in netscape but IE does not seem to fade. It seems to blast right through the routine and just show the last text and color. Another wierd "feature" is that the link is not available until the fading is done. Thanks in advance for any help. Dave Waller here is a link with the script in action: http://www.ckhnet.com/users/dwaller/test/test.html and here is the script // editable variables var fontSize = 2 var fontFace = "" var fontStyle = "" var textXpos = 50 var textYpos = 50 var textWidth = 350 var textHeight = 80 var fadeSpeed = 3 var textBg = "white" var textFg = "red" var fadeText = new Array() var fadeHref = new Array() var FadeStart = "CCCCCC" var fadeEnd = "FFFFFF" fadeText[0] = "This is the first text This is the first text This is the first text This is the first text This is the first text" fadeHref[0] = "blank1.html" fadeText[1] = "This is the second text This is the second text This is the second text This is the second text This is the second text" fadeHref[1] = "blank2.html" fadeText[2] = "This is the third text" fadeHref[2] = "blank3.html" // end of editable variables // DO NOT EDIT BELOW THIS var hexBase= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"); var loopTimer = new Array var hex is.ns = (document.layers)? true:false is.ie = (document.all)? true:false function loopText(numText){ var text = "" var linkText = "<a href=\"" + fadeHref[numText] + "\" target=\'_top\'><img src=\"pic.gif\" width=" + textWidth + " height=" + textHeight + "></a>" if (is.ns) { linkLayer.write(linkText) } else { document.all['linkLayerDiv'].innerHTML = linkText } var hexStartR = FadeStart.substr(0,2) var hexStartG = FadeStart.substr(2,2) var hexStartB = FadeStart.substr(4,2) var color = new Array( hexStartR, hexStartG ,hexStartB ) //alert(numText) for ( c = 0; c < 3; c++ ){ for ( hex1 in hexBase ) { for ( hex2 in hexBase ) { if ( hexBase[hex1] + "" + hexBase[hex2] > color[c] ){ color[c] = hexBase[hex1] + "" + hexBase[hex2] colorBase = color[0] + color[1] + color[2] text = "<table width=130> <tr><td><font color=\"#" + colorBase + "\">" + fadeText[numText] + " " + colorBase + "</font></td></tr></table>" if (is.ns){ textLayer.write(text) } else { document.all['linkLayerDiv'].innerHTML = text } } } } } } function startItUp(){ DynLayerInit() textLayer = new DynLayer("textLayerDiv") linkLayer = new DynLayer("linkLayerDiv") for ( x = 0; x < fadeText.length ; x++ ){ loopText(x) } } |