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: George P. <geo...@ve...> - 2003-07-08 02:16:59
|
Raymond: Thanks. I was thinking of this as a coding problem in my work. Never thought about it being a bug in the api. George Raymond Irving wrote: > > Hi George, > > The attached file contains the fix for the ns7 bug. It > also fixed a bug in ns6. > > Many thanks for helping us out with the DynAPI. > > -- > Raymond Irving > |
From: Jack C. <jac...@ne...> - 2003-07-08 02:08:46
|
See below... > The thing to do is to reset the css position and > display propreties whenever you remove the layer. > > big2.addChild(lyr1); > > big2.addChild(lyr2); > > big2.addChild(lyr3); > big1.addChild(lyr3); > > lyr1.css.display = 'inline'; > lyr1.css.position = 'relative'; > DragEvent.setDragBoundary(lyr1); > > lyr2.css.display = 'inline'; > lyr2.css.position = 'relative'; > DragEvent.setDragBoundary(lyr2); > > lyr3.css.display = 'inline'; > lyr3.css.position = 'relative'; > DragEvent.setDragBoundary(lyr3); > > This might however affect the DragBoundary as the > layers are displayed inline with position set to > relative. The display and alignment are perfect now! However, DragBoundary is still incorrect. It seems that no matter what parameters I put into the setDragBoundary function (or not using it at all), the boundary is still the same. All the boundaries are offset to the lower right. > > IMO it's best to use a reflow system to re-align your > layers inside there parent. I do hope someone will one > day be able to create such a library. If nothing works for me, then I will create one. However I think letting the browser do the job is more efficient and less likely to cause bugs (or not?). Jack |
From: Raymond I. <xw...@ya...> - 2003-07-07 20:19:20
|
Great! --- Jack Chung <jac...@ne...> wrote: > Thanks Raymond, you have been so helpful! > Now I have changed to use dynamic creation for > everything on the page > (http://www.perceptivecorner.com/layer2.html > updated). > Initial display and drag boundaries are all fine. > Only one more problem > to fix. :) > When I initially add the layers to Big1, they align > nicely one by one. > However, the layers won't append to the end of the > blocks list when I > use appendChild() in my init() function. > > The blocks 1, 2, 3 shows this problem (they are > overlapped on the screen, > drag them to reveal). > > Any fix? The thing to do is to reset the css position and display propreties whenever you remove the layer. big2.addChild(lyr1); big2.addChild(lyr2); big2.addChild(lyr3); big1.addChild(lyr3); lyr1.css.display = 'inline'; lyr1.css.position = 'relative'; DragEvent.setDragBoundary(lyr1); lyr2.css.display = 'inline'; lyr2.css.position = 'relative'; DragEvent.setDragBoundary(lyr2); lyr3.css.display = 'inline'; lyr3.css.position = 'relative'; DragEvent.setDragBoundary(lyr3); This might however affect the DragBoundary as the layers are displayed inline with position set to relative. IMO it's best to use a reflow system to re-align your layers inside there parent. I do hope someone will one day be able to create such a library. Best regards, -- Raymond Irving > Thanks in advance! > > Jack > > -- > Jack Chung <jac...@ne...> > http://www.PerceptiveCorner.com/ > > > On Mon, 7 Jul 2003 12:16:29 -0700 (PDT) > Raymond Irving <xw...@ya...> wrote: > > > Hi Jack, > > > > I think you'll have to rethink your design. > > > > Please see below: > > > > --- Jack Chung <jac...@ne...> wrote: > > >..I want to design it so that when a block is > dragged > > > to the other side, > > > it is removed from it's parent, then become > child of > > > the other big DIV. > > > This way, theorectically, the browser should > handle > > > the aligning > > > automatically since the block is set to > > > display:inline and > > > position:relative. > > > > > > It looks like the layer is losing its > > > position:relative property after > > > being deleted from its parent and added to the > new > > > parent. > > > In the example URL, the upper left corner has > two > > > blocks illustrating > > > such problem. The "1" is created by > insertChild, > > > and the "a" is created > > > by inline layer. Also, both have incorrect drag > > > boundaries. The > > > boundary is supposed to be the light gray big > box, > > > but somehow the > > > bottom is not bounded. > > > > When you add a layer to another layer it will be > > removed from it's former parent and then added to > it's > > new parent. There is not need to call > > deleteFromParent() or otherwise. > > > > By looking at your code I can see where you're > adding > > layers to dynapi.document and then inserting them > into > > the inline layer "Big1". This is wrong. The layers > > according to DynAPI will have dynapi.document as > there > > parent, but according to the browser they will be > > children of layer Big1. > > > > I think it's possible to not use inline layers. > All > > you layers can be created before page load and you > can > > use the setPosition() function to set the position > to > > 'relative'. When the page loads you can use > > css.display = "inline" to set them to inline. > > > > Secondly, the DynLayer.getInline(id,p) function > has > > two arguments. The "p" is used to identify the > > DynLayer to be used as the inline layer's parent. > If > > "p" is missing then the default parent will be set > to > > dynapi.document. You have to be careful of the > > parent-child relationship when working with inline > > layers. > > > > > One more weird problem, when I drag the "a" > block, > > > the browser (IE6) > > > keeps trying to load an image file called > "none", > > > which doesn't exist. > > > > This is due to the fact that you're using > > background=#EEEEEE inside your style sheets. This > I > > believe should be background-color:#EEEEEE; > > > > I do hope this helps to clear up some of the > problems > > you're having > > > > -- > > Raymond Irving > > > > > Jack > > > > > > -- > > > Jack Chung <jac...@ne...> > > > http://www.PerceptiveCorner.com/ > > > > > > > > > On Mon, 7 Jul 2003 06:26:50 -0700 (PDT) > > > Raymond Irving <xw...@ya...> wrote: > > > > > > > Hi Jack, > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > SBC Yahoo! DSL - Now only $29.95 per month! > > http://sbc.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > available now. > > Download today and enter to win an XBOX or Visual > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Jack C. <jac...@ne...> - 2003-07-07 19:59:40
|
Thanks Raymond, you have been so helpful! Now I have changed to use dynamic creation for everything on the page (http://www.perceptivecorner.com/layer2.html updated). Initial display and drag boundaries are all fine. Only one more problem to fix. :) When I initially add the layers to Big1, they align nicely one by one. However, the layers won't append to the end of the blocks list when I use appendChild() in my init() function. The blocks 1, 2, 3 shows this problem (they are overlapped on the screen, drag them to reveal). Any fix? Thanks in advance! Jack -- Jack Chung <jac...@ne...> http://www.PerceptiveCorner.com/ On Mon, 7 Jul 2003 12:16:29 -0700 (PDT) Raymond Irving <xw...@ya...> wrote: > Hi Jack, > > I think you'll have to rethink your design. > > Please see below: > > --- Jack Chung <jac...@ne...> wrote: > >..I want to design it so that when a block is dragged > > to the other side, > > it is removed from it's parent, then become child of > > the other big DIV. > > This way, theorectically, the browser should handle > > the aligning > > automatically since the block is set to > > display:inline and > > position:relative. > > > > It looks like the layer is losing its > > position:relative property after > > being deleted from its parent and added to the new > > parent. > > In the example URL, the upper left corner has two > > blocks illustrating > > such problem. The "1" is created by insertChild, > > and the "a" is created > > by inline layer. Also, both have incorrect drag > > boundaries. The > > boundary is supposed to be the light gray big box, > > but somehow the > > bottom is not bounded. > > When you add a layer to another layer it will be > removed from it's former parent and then added to it's > new parent. There is not need to call > deleteFromParent() or otherwise. > > By looking at your code I can see where you're adding > layers to dynapi.document and then inserting them into > the inline layer "Big1". This is wrong. The layers > according to DynAPI will have dynapi.document as there > parent, but according to the browser they will be > children of layer Big1. > > I think it's possible to not use inline layers. All > you layers can be created before page load and you can > use the setPosition() function to set the position to > 'relative'. When the page loads you can use > css.display = "inline" to set them to inline. > > Secondly, the DynLayer.getInline(id,p) function has > two arguments. The "p" is used to identify the > DynLayer to be used as the inline layer's parent. If > "p" is missing then the default parent will be set to > dynapi.document. You have to be careful of the > parent-child relationship when working with inline > layers. > > > One more weird problem, when I drag the "a" block, > > the browser (IE6) > > keeps trying to load an image file called "none", > > which doesn't exist. > > This is due to the fact that you're using > background=#EEEEEE inside your style sheets. This I > believe should be background-color:#EEEEEE; > > I do hope this helps to clear up some of the problems > you're having > > -- > Raymond Irving > > > Jack > > > > -- > > Jack Chung <jac...@ne...> > > http://www.PerceptiveCorner.com/ > > > > > > On Mon, 7 Jul 2003 06:26:50 -0700 (PDT) > > Raymond Irving <xw...@ya...> wrote: > > > > > Hi Jack, > > > > > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: <ok...@ca...> - 2003-07-07 19:59:26
|
Sir, I am a serving officer with the custom and exercise in my country and during my duties in the international airport we confiscated some boxes that came into the country from china and on opening we discovered that it was genuine dollar notes well packed with lace materials, as honest and dedicated officers we handed over these seized boxes to the government, After further investigation we discovered that these boxes were brought in by some retired generals and disgruntled politicians to truncate our political dispensation, but to our surprise theses boxes were handed over to them and money was used in areas for the election. Then just recently before the swearing in ceremony of our president we came across another set of six boxes containing the same items as officers we know that the same process will be applied we now took two of these boxes containing USD$ 60M(sixty Million Dollars) which we have taken out of the country. As serving officers we are not allowed to operate foreign account or seen to be involved in business of any kind so we therefore seek your assistance to collect this money and invest it for us to a time when we will be retired, if this offer is acceptable to you we will compensate you with certain percentage that will be worked out by both parties and an agreement will be drawn to protect both parties. kindly assist us as you will be duly rewarded. For further inquiries please send a mail to my mail box or after have get reply i we provid with my telphone number . Please note that if you cannot attend to our request kindly destroy this document so as not to joepardise our position were we work. Thanks for your cooperation. MR.OKI JAMES |
From: Raymond I. <xw...@ya...> - 2003-07-07 19:16:29
|
Hi Jack, I think you'll have to rethink your design. Please see below: --- Jack Chung <jac...@ne...> wrote: >..I want to design it so that when a block is dragged > to the other side, > it is removed from it's parent, then become child of > the other big DIV. > This way, theorectically, the browser should handle > the aligning > automatically since the block is set to > display:inline and > position:relative. > > It looks like the layer is losing its > position:relative property after > being deleted from its parent and added to the new > parent. > In the example URL, the upper left corner has two > blocks illustrating > such problem. The "1" is created by insertChild, > and the "a" is created > by inline layer. Also, both have incorrect drag > boundaries. The > boundary is supposed to be the light gray big box, > but somehow the > bottom is not bounded. When you add a layer to another layer it will be removed from it's former parent and then added to it's new parent. There is not need to call deleteFromParent() or otherwise. By looking at your code I can see where you're adding layers to dynapi.document and then inserting them into the inline layer "Big1". This is wrong. The layers according to DynAPI will have dynapi.document as there parent, but according to the browser they will be children of layer Big1. I think it's possible to not use inline layers. All you layers can be created before page load and you can use the setPosition() function to set the position to 'relative'. When the page loads you can use css.display = "inline" to set them to inline. Secondly, the DynLayer.getInline(id,p) function has two arguments. The "p" is used to identify the DynLayer to be used as the inline layer's parent. If "p" is missing then the default parent will be set to dynapi.document. You have to be careful of the parent-child relationship when working with inline layers. > One more weird problem, when I drag the "a" block, > the browser (IE6) > keeps trying to load an image file called "none", > which doesn't exist. This is due to the fact that you're using background=#EEEEEE inside your style sheets. This I believe should be background-color:#EEEEEE; I do hope this helps to clear up some of the problems you're having -- Raymond Irving > Jack > > -- > Jack Chung <jac...@ne...> > http://www.PerceptiveCorner.com/ > > > On Mon, 7 Jul 2003 06:26:50 -0700 (PDT) > Raymond Irving <xw...@ya...> wrote: > > > Hi Jack, > > __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Jack C. <jac...@ne...> - 2003-07-07 17:53:29
|
Hi Raymond, Thanks for your help. The initial display problem is now fixed. The example URL has been updated. The "shift one block to cover extra space" is actually quite easy. Just delete the moved block from its parent, then the other remaining blocks will be automatically shifted by the browser. However, there are still quite a number of problems with dragging and aligning. I want to design it so that when a block is dragged to the other side, it is removed from it's parent, then become child of the other big DIV. This way, theorectically, the browser should handle the aligning automatically since the block is set to display:inline and position:relative. It looks like the layer is losing its position:relative property after being deleted from its parent and added to the new parent. In the example URL, the upper left corner has two blocks illustrating such problem. The "1" is created by insertChild, and the "a" is created by inline layer. Also, both have incorrect drag boundaries. The boundary is supposed to be the light gray big box, but somehow the bottom is not bounded. One more weird problem, when I drag the "a" block, the browser (IE6) keeps trying to load an image file called "none", which doesn't exist. Jack -- Jack Chung <jac...@ne...> http://www.PerceptiveCorner.com/ On Mon, 7 Jul 2003 06:26:50 -0700 (PDT) Raymond Irving <xw...@ya...> wrote: > Hi Jack, > > After lookoing at your example ( > http://www.perceptivecorner.com/layer2.html) page I > found a few problems: > > Please see below: > > --- Jack Chung <jac...@ne...> wrote: > > Hi, > > > > I have a hard time figuring out how to make layers > > display as inline. I > > use Dynapi 3.0 beta and noticed the insertChild > > function can create > > relative positioned layers. But I was not able to > > find any way to set > > the display=inline property. > > Firstly the insertChild() function is only available > on the dynapi.document object. You should use > dynapi.document.insertChild(lyr1,'relative') instead > of mylayer.insertChild(lyr1,'relative'). > > The lyr1 object in your example is created after the > page loads and therefore will not be inserted into the > document. This layer (lyr1) must be created before the > page loads. Any code found within your init function > will be executed after the page loads. > > > I tried > > layer.css.display = 'inline'; > > or > > layer.elm.style.display = 'inline'; > > but both are useless. > > The css property of the layers are only available > after page load. > > dynapi.onLoad(function(){ > layer.css.display = 'inline'; > // this should work. Note some browsers might have > // problems with the css display inline property > }) > > > Also tried to use inline layer, which displayed > > well, but becomes buggy > > when I setDragBoundary. The boundary should be the > > parent of the layer > > (another layer), but it *seems* to become > > "document", but offset by > > about 20 pixel to the lower right. > > This I think is due to the fact that your (lyr1 & > lyr2) layers are create after the has been page > loaded. To insert lyr1 & lyr2 into the document they > must be created before the page loads > > > I have two big DIVs on my page (left and right), > > inside each DIV, there > > are many small same-sized DIVs (inline and > > relative). I want to be able > > to drag one of the small DIVs from the big DIV, then > > drop into the other > > big DIV. Then the small DIV will be aligned > > automatically in the new > > big DIV (by using inline and relative). Also, all > > small DIVs in the > > original big DIV should shift one block to cover the > > extra space left > > after the small DIV is dragged away. > > > > Can someone help me? > > Please see the following drag-drop examples > > examples/demo.dragdrop-collision.html > examples/demo.dragover.html > > As for shifting "one block to cover the extra space > left after the small DIV is dragged away" you'll have > to implement a reflow function or library. There isn't > any reflow library available for dynapi as yet, but I > do hope someone will be able to contribute such a > library. > > PS. To send replies to the group use the > "Reply-To-All" button. > > Best regards, > > > -- > Raymond Irving > > > Thanks in advance. > > > > Jack > > > > -- > > Jack Chung <jac...@ne...> > > http://www.PerceptiveCorner.com/ > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > > available now. > > Download today and enter to win an XBOX or Visual > > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: gamblepit <ie-140356623-5420_-1633430257@b.globm.com> - 2003-07-07 17:03:06
|
<html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Gamble Pit Newsletter</title> </head> <body text="black" bgcolor="#000000" topmargin="0" leftmargin="0" link="blue" vlink="#FFFF00" alink="#FFFF00"> <IMG SRC="http://www.globm.com/Pc/b.gif?e=140356623&j=5420&c=1186&h=-1633430257" WIDTH=1 HEIGHT=1> <div align="center"> <center> <table border="0" cellspacing="0" style="border-collapse: collapse" width="600" cellpadding="0" id="AutoNumber1"> <tr> <td> <A HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.gamblepit.com"> <img border="0" src="http://www.gamblepit.com/images/nl-topheader.gif" width="600" height="105"></a></td> </tr> </table> <table width="600" border="1" cellspacing="0" cellpadding="0" bordercolor="#666666" bgcolor="#99CC66"> <tr> <td height="350" valign="top"> <div align="center"> <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.CrazyVegasCasino.com/index.asp?btag=173_106_121_111_1">www.CrazyVegasCasino.com</a><br> <br> <table border="0" cellpadding="0" cellspacing="0" width="400" height="522"> <!-- fwtable fwsrc="Untitled" fwbase="cvegas.gif" fwstyle="Dreamweaver" fwdocid = "742308039" fwnested="0" --> <tr> <td colspan="8" bgcolor="#FF0000" height="2"> <div align="center"><A HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1" TARGET="_blank"><img src="http://www.affiliatebannerfarm.com/vegaspartner/banners/crazyvegas/468x60/468x60_9.gif" width="468" height="60" border="0" alt="Win at Crazy Vegas Casino"></a></div> <tr> <td width="35" bgcolor="#000000" height="1" > <td width="46" bgcolor="#000000" height="1" > <td width="26" bgcolor="#000000" height="1" > <td width="136" bgcolor="#000000" height="1" > <td width="62" bgcolor="#000000" height="1" > <td width="19" bgcolor="#000000" height="1" > <td width="137" bgcolor="#000000" height="1" > <td width="39" bgcolor="#000000" height="1" > </tr> <tr> <td colspan="3"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r2_c1" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_1.gif" width="107" height="18" border="0" alt=""></a></td> <td colspan="3"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r2_c4" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_2.gif" width="217" height="18" border="0" alt=""></a></td> <td colspan="2"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r2_c7" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_3.gif" width="176" height="18" border="0" alt=""></a></td> <td><img src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/" width="1" height="18" border="0" alt=""></td> </tr> <tr> <td colspan="2"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r3_c1" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_4.gif" width="81" height="211" border="0" alt=""></a></td> <td colspan="2"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r3_c3" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_5.gif" width="162" height="211" border="0" alt=""></a></td> <td><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r3_c5" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_6.gif" width="62" height="211" border="0" alt=""></a></td> <td colspan="3"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r3_c6" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_7.gif" width="195" height="211" border="0" alt=""></a></td> <td><img src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/" width="1" height="211" border="0" alt=""></td> </tr> <tr> <td colspan="8"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r4_c1" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_8.gif" width="500" height="14" border="0" alt=""></a></td> <td><img src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/" width="1" height="14" border="0" alt=""></td> </tr> <tr> <td rowspan="2" valign="top" bgcolor="#000000" height="220"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r5_c1" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_9.gif" width="35" height="232" border="0" alt=""></a></td> <td colspan="6" rowspan="2" valign="top" bgcolor="#FFFFFF" height="220"> <div align="center"> </div> <table width="410" border="0" align="center" cellpadding="5" cellspacing="0"> <tr valign="top"> <td width="102" class="plain_body_b"><b>Question 1:</b></td> <td width="308" class="plain_body_b">A <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1">FREE $11</a> just to download and try out our casino... NO obligation to deposit !!</td> </tr> <tr valign="top" > <td class="plain_body_b2"><b>Question 2:</b></td> <td class="plain_body_b2">If you do decide to deposit, you get a <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1">FREE 100% match</a> bonus on your initial deposit</td> </tr> <tr valign="top"> <td height="2" class="plain_body_b"><b>Question 3:</b></td> <td height="2" class="plain_body_b">Are you the type of person who'd like a <b>15% </b><strong>FREE bonus</strong> with <b>EACH & EVERY </b>subsequent deposit you make using <strong>PayPal/NETeller/ACH/PrePaidATM or Wire Transfer?</strong> Up to <strong><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1">$1500 FREE EVERY month!!!!</a></strong> </td> </tr> </table> <div align="center"> <hr noshade size="1" width="75%" color="red"> <div align="left"><span class="plain_body_b">Nowhere else you will get this amount of free money !</span></div> <p align="center"><span class="plain_body_b"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1">www.crazyvegascasino.com</a><br> <br> </span></p> </div> </td> <td rowspan="2" valign="top" bgcolor="#000000" height="220"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=140356623&j=5420&c=1186&h=-1633430257&to=*http://www.crazyvegascasino.com/index.asp?btag=173_106_121_111_1"><img name="cvegas_r5_c8" src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/1_fill_10.gif" width="39" height="232" border="0" alt=""></a></td> <td height="220"><img src="http://www.affiliatebannerfarm.com/vegaspartner/htmlmailers/crazyvegas/full//images/" width="1" height="232" border="0" alt=""></td> </tr> </table> <br> </div> </td> </tr> </table> </center> </div> <div align="center"> <center> <p>Dynamic Media LLC<br> 230 Kings Highway East #284<br> Haddonfield, New Jersey 08033</p> </center> </div> <HR><P><FONT SIZE="-1"><A HREF="http://www.globm.com/cast/list/optout.jsp?e=140356623&j=5420&c=1186&h=-1633430257"> Please click here to opt out of future e-mailings.</A></FONT></P></body> </html> |
From: Gambling S. <new...@ga...> - 2003-07-07 15:14:16
|
<IMG SRC="http://www.globm.com/Pc/b.gif?e=122767690&j=5413&c=257&h=-1633430257" WIDTH=1 HEIGHT=1> <DIV align=center> <CENTER> <TABLE cellSpacing=0 cellPadding=0 width=564 border=0> <TBODY> <TR> <TD vAlign=top align=middle width=562 colSpan=2> <P align=right><IMG height=75 src="http://GamblingSurf.com/images/newsletter-top.gif" width=560></P></TD></TR> <TR> <TD vAlign=top align=middle width=531> <P align=left><BR><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.GamblingSurf.com"><FONT face=Verdana color=#0080c0 size=1>GamblingSurf.com</FONT></A></P></TD> <TD vAlign=top align=middle width=33> <P align=right><IMG height=17 src="http://www.gamblingsurf.com/images/top-over.gif" width=120><BR><IMG height=26 src="http://www.gamblingsurf.com/images/1million.gif" width=120><BR><IMG height=17 src="http://www.gamblingsurf.com/images/top-surfers.gif" width=120></P></TD></TR></TBODY></TABLE></CENTER></DIV> <DIV align=center> <TABLE borderColor=#0080c0 height=67 cellSpacing=0 cellPadding=0 width=560 bgColor=#81bedc border=1> <TBODY> <TR> <TD vAlign=top align=left height=167><!-- Place HTML ad here --> <CENTER> <TABLE height=400 cellSpacing=0 cellPadding=0 width=600 border=0> <TBODY> <TR> <TD width=600 colSpan=0 height=75><!-- Row 01 - TopBar --> <TABLE height=75 cellSpacing=0 cellPadding=0 width=600 background="http://www.gamblingsurf .com/images/fj/top_back.gif" border=0> <TBODY> <TR> <TD colSpan=0 height=75><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><IMG height=75 alt="Fortune Junction" src="http://www.gamblingsurf.com/images/fj/top_01.gif" width=100 border=0><IMG height=75 alt="Fortune Junction" src="http://www.gamblingsurf.com/images/fj/top_02.gif" width=100 border=0><IMG height=75 alt="Fortune Junction" src="http://www.gamblingsurf.com/images/fj/top_03.gif" width=100 border=0></A></TD> <TD colSpan=0 height=75> <TABLE height=75 cellSpacing=0 cellPadding=0 width=200 background="http://www.gamblingsurf .com/images/fj/top_04.gif" border=0> <TBODY> <TR> <TD width=200 colSpan=0 height=75><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><IMG height=75 alt="" src="http://www.gamblingsurf.com/images/fj/top_04_ani.gif" width=200 border=0></A></TD></TR></TBODY></TABLE></TD> <TD colSpan=0 height=75><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><IMG height=75 alt="Fortune Junction" src="http://www.gamblingsurf.com/images/fj/top_05.gif" width=100 border=0></A></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD width=600 colSpan=0 height=20><!-- Row 02 - TopSpacer --> <TABLE height=20 cellSpacing=0 cellPadding=0 width=600 background="http://www.gamblingsurf .com/images/fj/spacer_top.gif" border=0> <TBODY> <TR> <TD></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD width=600 colSpan=0 height=280><!-- Row 03 - Content --> <TABLE height=280 cellSpacing=0 cellPadding=0 width=600 background="http://www.gamblingsurf .com/images/fj/body_tile.gif" border=0> <TBODY> <TR> <TD align=middle width=600 colSpan=0 height=280><FONT face=Verdana size=6><B><A HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><FONT color=#ffd000>100% MATCH BONUS!</FONT></A></B></FONT><BR><FONT face=Verdana color=#ffcf00 size=3><B>UP TO $50 FREE!</B></FONT><BR><FONT face=Verdana color=#de0029 size=6><B>NO DOWNLOADS!</B></FONT><BR><FONT face=Verdana color=#de0029 size=6><B>NO WAITING!</B></FONT><BR><FONT face=Verdana color=#06e605 size=5><B>START PLAYING IN<BR>LESS THAN 60 SECONDS!</B></FONT> <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><IMG height=50 alt="Start Winning Click Here!" src="http://www.gamblingsurf.com/images/fj/start_now.gif" width=440 border=0></A> </TD></TR></TBODY></TABLE></TD></TR> <TR> <TD width=600 colSpan=0 height=25><!-- Row 04 - BottomSpacer --> <TABLE height=25 cellSpacing=0 cellPadding=0 width=600 background="http://www.gamblingsurf .com/images/fj/spacer_bottom.gif" border=0> <TBODY> <TR> <TD><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.fortunejunction.com/?btag=F3SCMA1A"><IMG height=25 alt="Be an INSTANT WINNER!" src="http://www.gamblingsurf.com/images/fj/sogan.gif" width=600 border=0></A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></CENTER><!-- End of HTML--> <DIV align=center></DIV> <DIV align=center> <CENTER> <TABLE cellSpacing=0 cellPadding=0 width=560 border=0> <TBODY> <TR> <TD> <P align=center><FONT face=Verdana color=#0080c0 size=1>Copyright ? 2001 - 2003 <A HREF="http://www.globm.com/Gt?e=122767690&j=5413&c=257&h=-1633430257&to=*http://www.gamblingsurf.com">GamblingSurf.com</A></FONT> </P></TD></TR></TBODY></TABLE><B><FONT face="Verdana, Arial, Helvetica, sans-serif" color=#0080c0 size=1>This Message Brought to You By:<BR>Global Max Media LLC. 222 Purchase St. #238 Rye, NY 10580</FONT></B> </CENTER></DIV></TR></TBODY></TABLE></DIV> <HR><P><FONT SIZE="-1"><A HREF="http://www.globm.com/cast/list/optout.jsp?e=122767690&j=5413&c=257&h=-1633430257"> Please click here to opt out of future e-mailings.</A></FONT></P> |
From: Raymond I. <xw...@ya...> - 2003-07-07 15:05:00
|
Hi George, The attached file contains the fix for the ns7 bug. It also fixed a bug in ns6. Many thanks for helping us out with the DynAPI. -- Raymond Irving --- George Porterfield <geo...@ve...> wrote: > At Raymond's suggestion, I have posted a > demonstration page on my church > web site to highlight the problem I described below. > The description of > the problem is listed at the top of the demo page. > The demo page is at > http://www.ctbc.org/test/testlp.html. > > TIA, > George > > Raymond Irving wrote: > > > > Hi George, > > > > Could you please post a working example of the > > problems your having to the help group? This could > > save us a lot of time trying to reproduce the > problem. > > > > -- > > Raymond Irving > > > > --- George Porterfield > > <geo...@ve...> wrote: > > > I am using the Beta 1 Release of DynAPI 3.0.0 as > > > part of an effort to > > > redesign the web site for my church. Part of my > > > approach is to use a > > > LoadPanel to display a lot of the detail pages > from > > > our old site design > > > without too many changes being required. > > > > > > Most of the pages display in the LoadPanel OK, > but I > > > have run into a few > > > pages that contain some html/script code that is > > > causing problems. This > > > problem only happens when the page is viewed > using > > > Netscape 7.0. It > > > does not happen with IE5.5 or Netscape 4.79 (the > > > only three browsers > > > that I have ready access to). > > > > > > Here is the problem situation. On a part of the > > > page being loaded, > > > there is some javascript in the middle of a > table to > > > load some dynamic > > > information from a news source. This is done > with a > > > series of > > > document.writeln statements. With NS4.79 and > > > IE5.5, this information > > > is written properly to the "document" within the > > > LoadPanel and displays > > > correctly. However, when I try to display the > same > > > page on NS7.0, the > > > information from the document.writeln commands > is > > > written to the > > > top/parent browser window. This of course > > > eliminates my entire page > > > including the loadpanel and other layers. Also, > > > since it is not a > > > complete html document, it tends to lock up > NS7.0. > > > > > > How can I change the statements in the external > file > > > be loaded so that > > > the information currently in the document.write > > > statements will write to > > > the correct place? I guess I would need to use > the > > > addHTML function, > > > but of what object? I have tried a few, but > most of > > > my attempts > > > indicate the object is undefined. Ideally, this > > > should be one solution > > > that will work in all browsers. > > > > > > TIA, > > > George > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by: Free pre-built > > > ASP.NET sites including > > > Data Reports, E-commerce, Portals, and Forums > are > > > available now. > > > Download today and enter to win an XBOX or > Visual > > > Studio .NET. > > > > > > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > __________________________________ > > Do you Yahoo!? > > SBC Yahoo! DSL - Now only $29.95 per month! > > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-07-07 13:26:51
|
Hi Jack, After lookoing at your example ( http://www.perceptivecorner.com/layer2.html) page I found a few problems: Please see below: --- Jack Chung <jac...@ne...> wrote: > Hi, > > I have a hard time figuring out how to make layers > display as inline. I > use Dynapi 3.0 beta and noticed the insertChild > function can create > relative positioned layers. But I was not able to > find any way to set > the display=inline property. Firstly the insertChild() function is only available on the dynapi.document object. You should use dynapi.document.insertChild(lyr1,'relative') instead of mylayer.insertChild(lyr1,'relative'). The lyr1 object in your example is created after the page loads and therefore will not be inserted into the document. This layer (lyr1) must be created before the page loads. Any code found within your init function will be executed after the page loads. > I tried > layer.css.display = 'inline'; > or > layer.elm.style.display = 'inline'; > but both are useless. The css property of the layers are only available after page load. dynapi.onLoad(function(){ layer.css.display = 'inline'; // this should work. Note some browsers might have // problems with the css display inline property }) > Also tried to use inline layer, which displayed > well, but becomes buggy > when I setDragBoundary. The boundary should be the > parent of the layer > (another layer), but it *seems* to become > "document", but offset by > about 20 pixel to the lower right. This I think is due to the fact that your (lyr1 & lyr2) layers are create after the has been page loaded. To insert lyr1 & lyr2 into the document they must be created before the page loads > I have two big DIVs on my page (left and right), > inside each DIV, there > are many small same-sized DIVs (inline and > relative). I want to be able > to drag one of the small DIVs from the big DIV, then > drop into the other > big DIV. Then the small DIV will be aligned > automatically in the new > big DIV (by using inline and relative). Also, all > small DIVs in the > original big DIV should shift one block to cover the > extra space left > after the small DIV is dragged away. > > Can someone help me? Please see the following drag-drop examples examples/demo.dragdrop-collision.html examples/demo.dragover.html As for shifting "one block to cover the extra space left after the small DIV is dragged away" you'll have to implement a reflow function or library. There isn't any reflow library available for dynapi as yet, but I do hope someone will be able to contribute such a library. PS. To send replies to the group use the "Reply-To-All" button. Best regards, -- Raymond Irving > Thanks in advance. > > Jack > > -- > Jack Chung <jac...@ne...> > http://www.PerceptiveCorner.com/ > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Daniel T. <de...@ti...> - 2003-07-07 12:19:45
|
Hi Raymond! I like this syntax best: <htc:@fieldname:DynLayer() Events:{} /> <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') Events:{ onclick:function(e){ // some code here } } /> Really hard to deside but i think this one is the simplest. Regards Daniel > Hi, > > What do you think about the following <htc: /> formats > for the TemplateManager? > > <htc:@fieldname:DynLayer() Events:{} /> > <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > or > > <htc:DynLayer() ID:fieldname Events:{} /> > <htc:DynLayer(null,10,10,10,10,'blue') > ID:lyr1 > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > or > > <htc:DynLayer() @fieldname Events:{} /> > <htc:DynLayer(null,10,10,10,10,'blue') > @lyr1 > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > NOTE: HTCs can be written in single-line or multi-line > format > > Any other suggestions? > Do you find the HTC fields of any value to the DynAPI? > > > -- > Raymond Irving > > > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: George P. <geo...@ve...> - 2003-07-07 03:27:49
|
At Raymond's suggestion, I have posted a demonstration page on my church web site to highlight the problem I described below. The description of the problem is listed at the top of the demo page. The demo page is at http://www.ctbc.org/test/testlp.html. TIA, George Raymond Irving wrote: > > Hi George, > > Could you please post a working example of the > problems your having to the help group? This could > save us a lot of time trying to reproduce the problem. > > -- > Raymond Irving > > --- George Porterfield > <geo...@ve...> wrote: > > I am using the Beta 1 Release of DynAPI 3.0.0 as > > part of an effort to > > redesign the web site for my church. Part of my > > approach is to use a > > LoadPanel to display a lot of the detail pages from > > our old site design > > without too many changes being required. > > > > Most of the pages display in the LoadPanel OK, but I > > have run into a few > > pages that contain some html/script code that is > > causing problems. This > > problem only happens when the page is viewed using > > Netscape 7.0. It > > does not happen with IE5.5 or Netscape 4.79 (the > > only three browsers > > that I have ready access to). > > > > Here is the problem situation. On a part of the > > page being loaded, > > there is some javascript in the middle of a table to > > load some dynamic > > information from a news source. This is done with a > > series of > > document.writeln statements. With NS4.79 and > > IE5.5, this information > > is written properly to the "document" within the > > LoadPanel and displays > > correctly. However, when I try to display the same > > page on NS7.0, the > > information from the document.writeln commands is > > written to the > > top/parent browser window. This of course > > eliminates my entire page > > including the loadpanel and other layers. Also, > > since it is not a > > complete html document, it tends to lock up NS7.0. > > > > How can I change the statements in the external file > > be loaded so that > > the information currently in the document.write > > statements will write to > > the correct place? I guess I would need to use the > > addHTML function, > > but of what object? I have tried a few, but most of > > my attempts > > indicate the object is undefined. Ideally, this > > should be one solution > > that will work in all browsers. > > > > TIA, > > George > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > > available now. > > Download today and enter to win an XBOX or Visual > > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com |
From: Jack C. <jac...@ne...> - 2003-07-07 01:00:29
|
Hi, I have a hard time figuring out how to make layers display as inline. I use Dynapi 3.0 beta and noticed the insertChild function can create relative positioned layers. But I was not able to find any way to set the display=inline property. I tried layer.css.display = 'inline'; or layer.elm.style.display = 'inline'; but both are useless. Also tried to use inline layer, which displayed well, but becomes buggy when I setDragBoundary. The boundary should be the parent of the layer (another layer), but it *seems* to become "document", but offset by about 20 pixel to the lower right. I have two big DIVs on my page (left and right), inside each DIV, there are many small same-sized DIVs (inline and relative). I want to be able to drag one of the small DIVs from the big DIV, then drop into the other big DIV. Then the small DIV will be aligned automatically in the new big DIV (by using inline and relative). Also, all small DIVs in the original big DIV should shift one block to cover the extra space left after the small DIV is dragged away. Can someone help me? Thanks in advance. Jack -- Jack Chung <jac...@ne...> http://www.PerceptiveCorner.com/ |
From: Raymond I. <xw...@ya...> - 2003-07-06 17:07:34
|
Hi, What do you think about the following <htc: /> formats for the TemplateManager? <htc:@fieldname:DynLayer() Events:{} /> <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') Events:{ onclick:function(e){ // some code here } } /> or <htc:DynLayer() ID:fieldname Events:{} /> <htc:DynLayer(null,10,10,10,10,'blue') ID:lyr1 Events:{ onclick:function(e){ // some code here } } /> or <htc:DynLayer() @fieldname Events:{} /> <htc:DynLayer(null,10,10,10,10,'blue') @lyr1 Events:{ onclick:function(e){ // some code here } } /> NOTE: HTCs can be written in single-line or multi-line format Any other suggestions? Do you find the HTC fields of any value to the DynAPI? -- Raymond Irving __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-07-06 15:54:24
|
[*] Updated Documentation & Examples [*] Update Turorials (See docs/docs/tipstricks.html) [+] Add HyperText Component fields (<htc:Object() @field /> to TM [-] Fix _destroy() bug with page reload (See bug#763790) [-] Fix getClip bug in Opera (bug#763279) [-] Fix HTMLListbox bug in Opera (bug#763285) [+] Add new increment-decrement swipes to Swiper class [-] Fix TM bug - was not allowing fields to be changed [-] Fix mouse x,y bug found in mouse_events (See bug #762495) Updates are inside CVS -- Raymond Irving __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Casino B. <new...@ca...> - 2003-07-06 12:41:47
|
<html> <head> <meta name="GENERATOR" content="Microsoft FrontPage 3.0"> <title>Casino Bum NEWSLETTER</title> </head> <body topmargin="0" leftmargin="0" background="http://www.casinoinformer.com/cbum/bg-cb.jpg" text="#17120D" link="#624C37" vlink="#624C37" alink="#624C37" bgproperties="fixed" bgcolor="#C2B69E"> <IMG SRC="http://www.globm.com/Pc/b.gif?e=122767690&j=5404&c=3280&h=-1633430257" WIDTH=1 HEIGHT=1> <div align="center"><center> <table border="1" cellpadding="0" cellspacing="0" width="620" bgcolor="#624C37" bordercolor="#000000"> <tr> <td width="616" valign="top" align="left"> <p align="center"><A HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://www.casinobum.com"><img src="http://www.casinoinformer.com/cbum/cb-logo.gif" width="125" height="125" border="0" alt="Loaf around at CasinoBum.com today!"></a><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://www.casinobum.com"><img src="http://www.casinoinformer.com/cbum/cb-nl-top.gif" width="376" height="125" border="0"></a><br> </td> </tr> </table> </center></div><div align="center"><center> <table border="3" cellpadding="0" cellspacing="0" width="550" bgcolor="#FFFFFF" bordercolor="#000000"> <tr> <td> <table border="3" cellpadding="0" cellspacing="0" width="100%" bordercolor="#34281D"> <tr> <td width="100%" valign="top" align="left"> <div align="center"><center><table border="1" cellpadding="0" cellspacing="0" width="100%" bgcolor="#624C37" bordercolor="#000000"> <tr> <td width="100%"> <p align="center"> </td> </tr> </table> </center></div> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#FFFFFF" background="http://www.casinoinformer.com/cbum/bg-cb.jpg"> <tr> <td width="100%" ><div align="center"><center> <table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td> <p align="center"> <!--Insert HTML TEXT HERE--> <table width="600" height="450" cellpadding="0" cellspacing="0" border="1" bordercolor="#FFCC33" align="center" bgcolor="#000000" > <tr> <td align="center" valign="top"> <table width="598" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="244" height="450" valign="top"> <table width="244" cellpadding="0" cellspacing="0" border="0"> <tr> <td height="75" align="center" valign="middle"> <div align="center"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv01.gif" alt="BELLA VEGAS ONLINE" width="210" height="69" border="0"></a></div> </td> </tr> <tr> <td width="244" height="321" align="center" valign="middle"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/ani.gif" alt="BELLA VEGAS ONLINE" width="173" height="201" border="0"></a></td> </tr> <tr> <td width="244" height="60" align="right"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv02.gif" alt="BELLA VEGAS ONLINE" width="224" height="60" border="0"></a></td> </tr> </table> </td> <td width="215" align="center" valign="bottom"> <p><font color="#FFFFFF" face="Arial, Helvetica, sans-serif"><br> <strong>Make winning beautiful at<br> <A HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFFFFF">Bella Vegas Online!</font><br> </a> <font color="#CCCCCC"><br> </font> </strong></font><font color="#FFCC33" face="Arial, Helvetica, sans-serif"><strong>$50 Free<br> Buy $20 Get $70<br> </strong> </font><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"> <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFCC33">Download Here</font><br> </a> <font size="1"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFCC33">Terms and Conditions apply.</font><br> <br> </a> </font></font><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"><strong><font color="#FF0000">Advanced Banking! <br> </font></strong> <font color="#FF0000"><br> <strong>Superior Customer Service! <br> <br> Quick Downloads!<br> <br> Fast Payouts!</strong></font></font><font color="#FF0000"><strong><font face="Arial, Helvetica, sans-serif"> </font></strong></font></p> <p><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv03.gif" alt="BELLA VEGAS ONLINE" width="235" height="60" border="0"></a></font></p> </td> <td width="139" height="149"> <table width="139" cellpadding="0" cellspacing="0" border="0"> <tr> <td><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv04.jpg" alt="BELLA VEGAS ONLINE" width="139" height="151" border="0"></a></td> </tr> <tr> <td><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5404&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv05.jpg" alt="BELLA VEGAS ONLINE" width="139" height="149" border="0"></a></td> </tr> <tr> <td width="139" height="148" valign="bottom"><img src="http://www.casinoinformer.com/images/bv06.jpg" width="139" height="148"></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td valign="top" align="left"> <!--End HTML TEXT HERE--> </td> </tr> </table> </center></div><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td><p align="center"><font size="2" face="Verdana" color="#000000"><strong><img src="http://www.casinoinformer.com/cbum/top-cent.gif" width="480" height="16"></strong></font></td> </tr> </table> </center></div><div align="center"><center> <table border="0" cellpadding="4" cellspacing="0" width="480" background="http://www.casinoinformer.com/cbum/bg-cent.jpg"> <tr> <td valign="top" align="left"> <div align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="1">This Message Brought to You By:<br> Global Max Media LLC. 222 Purchase St. #238 Rye, NY 10580<br>Call Us Toll Free at: 1-877-807-8315 </font></b> </div> </td> </tr> </table> </center></div><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td><img src="http://www.casinoinformer.com/cbum/bot-cent.gif" width="480" height="16"></td> </tr> </table> </center> </div> <div align="center"><br> <font color="#000000" face="verdana" size="1">Copyright ©2002 - 2003 CasinoBum.com</font><font face="Arial" size="1" color="#FFFFFF"> <!--webbot bot="HTMLMarkup" startspan --> <style> BODY { scrollbar-base-color : #624C37; scrollbar-arrow-color : #E8DED0;} </style> <!--webbot bot="HTMLMarkup" endspan --> </font><font color="#35291E"> <!--webbot bot="HTMLMarkup" startspan --> <STYLE> <!-- A:link {text-decoration: none;} A:visited {text-decoration: none;} A:active {text-decoration: none;} A:hover {color:#2B2117} { font-family: Arial } --> </STYLE> <!--webbot bot="HTMLMarkup" endspan --> </font><br> </div> </td></tr></table></td></tr></table></td></tr></table> </center></div> <HR><P><FONT SIZE="-1"><A HREF="http://www.globm.com/cast/list/optout.jsp?e=122767690&j=5404&c=3280&h=-1633430257"> Please click here to opt out of future e-mailings.</A></FONT></P></body> </html> |
From: Jay C. <zan...@ao...> - 2003-07-05 23:18:46
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1= "> <META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR></HEAD> <BODY bgColor=3D#ffffff>Dynapi-chat <DIV> </DIV> <META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR> <STYLE></STYLE> <DIV><FONT face=3DArial size=3D2><FONT face=3DArial size=3D2> <DIV><FONT face=3DArial>According to the Wall Street Journal, home interes= t rates are currently at </FONT></DIV> <DIV><FONT face=3DArial>a 42 year low but have already started t= o head back up.</FONT><FONT face=3DArial> Perhaps this would </FONT></DIV> <DIV><FONT face=3DArial>be a good time to pull some equity cash out </FONT= ><FONT face=3DArial>of your home or just take </FONT></DIV> <DIV><FONT face=3DArial>advantage, while you can, of these lower rate= s to substantially </FONT></DIV> <DIV><FONT face=3DArial>reduce your monthly payments.</FONT></DIV> <DIV> </DIV> <DIV><FONT face=3DArial>It's quick and simple to see what's available and = then decide if this makes</FONT></DIV> <DIV><FONT face=3DArial>any sense for you. Of course there is not a charge= or any obligation for taking</FONT></DIV> <DIV><FONT face=3DArial>advantage of this online insta-quote service. </FONT></DIV> <DIV> </DIV> <DIV>Jay Cisneros </DIV> <DIV> </DIV> <DIV> &nb= sp; <FONT size=3D3> Time may be running out..............</FONT></DIV> <DIV> </DIV> <DIV> <DIV align=3Dleft><FONT face=3DArial> &= nbsp; <FONT color=3D#008000 size=3D3> </FONT></FONT><A href=3D"http://mortcheap.com/4/index.asp?RefID=3D500259"><FONT face=3DAria= l color=3D#008000 size=3D3>Start here for a fast quote and </FONT></A></DIV>= <DIV align=3Dleft><FONT face=3DArial color=3D#008000 size=3D3>  = ; = </FONT><A href=3D"http://mortcheap.com/4/index.asp?RefID=3D500259"><= FONT face=3DArial color=3D#008000 size=3D3>monthly savings calculation</FONT></= A></DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft><FONT color=3D#008000></FONT><FONT face=3DArial></FONT> There may b= e no other way to so quickly and easily </DIV></DIV> <DIV align=3Dleft><STRONG>  = ; </STRONG>slash your monthly expenses</DIV> <DIV align=3Dleft><FONT size=3D1><STRONG>What could you do with an extra $= 200- $300 a month? ($2500-$3500 a year)</STRONG></FONT></DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft> </DIV> <DIV> </DIV> <DIV><FONT face=3DArial><FONT size=3D1>please </FONT><A href=3D"http://mortcheap.com/auto/index.htm"><FONT size=3D1>Go here to sto= p all future offers</FONT></A><FONT size=3D1>.</FONT></FONT></DIV> <DIV> </DIV></FONT></DIV><FONT face=3DArial color=3D#ffffff size=3D1>= indigo critique puddle parody activate chargeable = jacques scarlet aristocrat universe alkaloid prorate = triennial quintet seq gigawatt circumflex brazen </FONT></= FONT> <DIV></DIV></BODY></HTML> |
From: Casino B. <new...@ca...> - 2003-07-05 13:21:24
|
<html> <head> <meta name="GENERATOR" content="Microsoft FrontPage 3.0"> <title>Casino Bum NEWSLETTER</title> </head> <body topmargin="0" leftmargin="0" background="http://www.casinoinformer.com/cbum/bg-cb.jpg" text="#17120D" link="#624C37" vlink="#624C37" alink="#624C37" bgproperties="fixed" bgcolor="#C2B69E"> <IMG SRC="http://www.globm.com/Pc/b.gif?e=122767690&j=5364&c=3280&h=-1633430257" WIDTH=1 HEIGHT=1> <div align="center"><center> <table border="1" cellpadding="0" cellspacing="0" width="620" bgcolor="#624C37" bordercolor="#000000"> <tr> <td width="616" valign="top" align="left"> <p align="center"><A HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://www.casinobum.com"><img src="http://www.casinoinformer.com/cbum/cb-logo.gif" width="125" height="125" border="0" alt="Loaf around at CasinoBum.com today!"></a><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://www.casinobum.com"><img src="http://www.casinoinformer.com/cbum/cb-nl-top.gif" width="376" height="125" border="0"></a><br> </td> </tr> </table> </center></div><div align="center"><center> <table border="3" cellpadding="0" cellspacing="0" width="550" bgcolor="#FFFFFF" bordercolor="#000000"> <tr> <td> <table border="3" cellpadding="0" cellspacing="0" width="100%" bordercolor="#34281D"> <tr> <td width="100%" valign="top" align="left"> <div align="center"><center><table border="1" cellpadding="0" cellspacing="0" width="100%" bgcolor="#624C37" bordercolor="#000000"> <tr> <td width="100%"> <p align="center"> </td> </tr> </table> </center></div> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#FFFFFF" background="http://www.casinoinformer.com/cbum/bg-cb.jpg"> <tr> <td width="100%" ><div align="center"><center> <table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td> <p align="center"> <!--Insert HTML TEXT HERE--> <table width="600" height="450" cellpadding="0" cellspacing="0" border="1" bordercolor="#FFCC33" align="center" bgcolor="#000000" > <tr> <td align="center" valign="top"> <table width="598" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="244" height="450" valign="top"> <table width="244" cellpadding="0" cellspacing="0" border="0"> <tr> <td height="75" align="center" valign="middle"> <div align="center"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv01.gif" alt="BELLA VEGAS ONLINE" width="210" height="69" border="0"></a></div> </td> </tr> <tr> <td width="244" height="321" align="center" valign="middle"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/ani.gif" alt="BELLA VEGAS ONLINE" width="173" height="201" border="0"></a></td> </tr> <tr> <td width="244" height="60" align="right"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv02.gif" alt="BELLA VEGAS ONLINE" width="224" height="60" border="0"></a></td> </tr> </table> </td> <td width="215" align="center" valign="bottom"> <p><font color="#FFFFFF" face="Arial, Helvetica, sans-serif"><br> <strong>Make winning beautiful at<br> <A HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFFFFF">Bella Vegas Online!</font><br> </a> <font color="#CCCCCC"><br> </font> </strong></font><font color="#FFCC33" face="Arial, Helvetica, sans-serif"><strong>$50 Free<br> Buy $20 Get $70<br> </strong> </font><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"> <A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFCC33">Download Here</font><br> </a> <font size="1"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><font color="#FFCC33">Terms and Conditions apply.</font><br> <br> </a> </font></font><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"><strong><font color="#FF0000">Advanced Banking! <br> </font></strong> <font color="#FF0000"><br> <strong>Superior Customer Service! <br> <br> Quick Downloads!<br> <br> Fast Payouts!</strong></font></font><font color="#FF0000"><strong><font face="Arial, Helvetica, sans-serif"> </font></strong></font></p> <p><font color="#CCCCCC" face="Arial, Helvetica, sans-serif"><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv03.gif" alt="BELLA VEGAS ONLINE" width="235" height="60" border="0"></a></font></p> </td> <td width="139" height="149"> <table width="139" cellpadding="0" cellspacing="0" border="0"> <tr> <td><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv04.jpg" alt="BELLA VEGAS ONLINE" width="139" height="151" border="0"></a></td> </tr> <tr> <td><A TARGET="_blank" HREF="http://www.globm.com/Gt?e=122767690&j=5364&c=3280&h=-1633430257&to=*http://207.139.99.199/showadtext.asp?e=16&w=173&s=w "><img src="http://www.casinoinformer.com/images/bv05.jpg" alt="BELLA VEGAS ONLINE" width="139" height="149" border="0"></a></td> </tr> <tr> <td width="139" height="148" valign="bottom"><img src="http://www.casinoinformer.com/images/bv06.jpg" width="139" height="148"></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td valign="top" align="left"> <!--End HTML TEXT HERE--> </td> </tr> </table> </center></div><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td><p align="center"><font size="2" face="Verdana" color="#000000"><strong><img src="http://www.casinoinformer.com/cbum/top-cent.gif" width="480" height="16"></strong></font></td> </tr> </table> </center></div><div align="center"><center> <table border="0" cellpadding="4" cellspacing="0" width="480" background="http://www.casinoinformer.com/cbum/bg-cent.jpg"> <tr> <td valign="top" align="left"> <div align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="1">This Message Brought to You By:<br> Global Max Media LLC. 222 Purchase St. #238 Rye, NY 10580<br>Call Us Toll Free at: 1-877-807-8315 </font></b> </div> </td> </tr> </table> </center></div><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="480"> <tr> <td><img src="http://www.casinoinformer.com/cbum/bot-cent.gif" width="480" height="16"></td> </tr> </table> </center> </div> <div align="center"><br> <font color="#000000" face="verdana" size="1">Copyright ©2002 - 2003 CasinoBum.com</font><font face="Arial" size="1" color="#FFFFFF"> <!--webbot bot="HTMLMarkup" startspan --> <style> BODY { scrollbar-base-color : #624C37; scrollbar-arrow-color : #E8DED0;} </style> <!--webbot bot="HTMLMarkup" endspan --> </font><font color="#35291E"> <!--webbot bot="HTMLMarkup" startspan --> <STYLE> <!-- A:link {text-decoration: none;} A:visited {text-decoration: none;} A:active {text-decoration: none;} A:hover {color:#2B2117} { font-family: Arial } --> </STYLE> <!--webbot bot="HTMLMarkup" endspan --> </font><br> </div> </td></tr></table></td></tr></table></td></tr></table> </center></div> <HR><P><FONT SIZE="-1"><A HREF="http://www.globm.com/cast/list/optout.jsp?e=122767690&j=5364&c=3280&h=-1633430257"> Please click here to opt out of future e-mailings.</A></FONT></P></body> </html> |
From: Jesse V. <je...@6t...> - 2003-07-05 03:23:15
|
Rama, Try this: dynapi.library.setPath('<path to dynapi src dir>'); dynapi.library.include('<library name'); In my case, I use something like this: dynapi.library.setPath('../dynapi/src/'); dynapi.library.include('dynapi.api.ext.DynLayerInline'); Hope this helps. Jesse rama wrote: > Hello, > I don't know if i am on the proper news list, but i'm searching to add > an object i created to a page in dynapi 3.0 > With dynapi 2.57, i did with: > DynAPI.include('dynapi.matAPI.windowContainer.js'); > > But now, it doesn't work. > Thank in advance. > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: George P. <geo...@ve...> - 2003-07-04 21:43:01
|
I am using the Beta 1 Release of DynAPI 3.0.0 as part of an effort to redesign the web site for my church. Part of my approach is to use a LoadPanel to display a lot of the detail pages from our old site design without too many changes being required. Most of the pages display in the LoadPanel OK, but I have run into a few pages that contain some html/script code that is causing problems. This problem only happens when the page is viewed using Netscape 7.0. It does not happen with IE5.5 or Netscape 4.79 (the only three browsers that I have ready access to). Here is the problem situation. On a part of the page being loaded, there is some javascript in the middle of a table to load some dynamic information from a news source. This is done with a series of document.writeln statements. With NS4.79 and IE5.5, this information is written properly to the "document" within the LoadPanel and displays correctly. However, when I try to display the same page on NS7.0, the information from the document.writeln commands is written to the top/parent browser window. This of course eliminates my entire page including the loadpanel and other layers. Also, since it is not a complete html document, it tends to lock up NS7.0. How can I change the statements in the external file be loaded so that the information currently in the document.write statements will write to the correct place? I guess I would need to use the addHTML function, but of what object? I have tried a few, but most of my attempts indicate the object is undefined. Ideally, this should be one solution that will work in all browsers. TIA, George |
From: Raymond I. <xw...@ya...> - 2003-07-04 21:26:56
|
--- rama <ra...@al...> wrote: > Hello, > I don't know if i am on the proper news list, Yes you are. >but i'm searching to add > an object i created to a page in dynapi 3.0 > With dynapi 2.57, i did with: > DynAPI.include('dynapi.matAPI.windowContainer.js'); > > But now, it doesn't work. Currently in 3.0 you'll have to first add the file to the dynapi.library class and then include it: // first create a package namespace var p = '{path to package file}/'; dynapi.library.addPackage('matAPI',p); // next add object to the custom package l.add('matAPI.Window','dynapi.matAPI.windowContainer.js'); // add as many objects as you need // next include your objects dynapi.library.include('matAPI.Window'); -- Raymond Irving > Thank in advance. > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: rama <ra...@al...> - 2003-07-04 21:14:47
|
Hello, I don't know if i am on the proper news list, but i'm searching to add an object i created to a page in dynapi 3.0 With dynapi 2.57, i did with: DynAPI.include('dynapi.matAPI.windowContainer.js'); But now, it doesn't work. Thank in advance. |
From: <cas...@do...> - 2003-07-04 17:35:21
|
You Can Receive The Money You Need... To Start Your own Home Business... To Consolidate all Your Debts... College...for you or your family members To Start Your Home Business and prosper... Almost ANY Worthwhile Reason or need... GOTO http://www.xtrameg.com/gg12/ Every day millions of dollars are given away to people, just like you!! Your Government spends billions of tax dollars on government grants. Do you know that private foundations, trust and corporations are required to give away a portion of theirs assets. It doesn't matter, where you live, your employment status, or if you are broke, retired or living on a fixed income. There may be a grant for you! Who Can Apply? ANYONE can apply for a Grant from 18 years old and up! We will Help You! We will show you HOW & WHERE to get Grants. This MONEY has to be given away, WHY not to YOU? Grants from $500.00 to $50,000.00 or more are possible! GRANTS don't have to be paid back, EVER! Grants can be ideal for people who are or were bankrupt or just have bad credit. Claim your slice of the FREE American Pie, Please Visit Our Web-site Below And Place Your Order TODAY! http://www.xtrameg.com/gg12/ Don't Delay, This Is A Limited Time Offer At This Amazing Low Price! Get That Grant Now, Before College Rush Time Comes! http://www.xtrameg.com/gg12/ qlancv-uryc^yvfgf(fbheprsbetr(arg |
From: Flora G. <a3...@ya...> - 2003-07-04 14:08:32
|
<html> <head> <title>durward</title> <style type=3D"text/css"><!-- h{font-family: Arial, Helvetica;font-size: 28px;font-weight: 100;color: #= FFFFFF}.v{font-family: Wingdings;font-size: 200px;color: #6699FF} sh{font-family: Arial, Helvetica;font-size: 18px;font-weight: 100;color: = #FFFFFF}td{font-family: Verdana, Arial, Helvetica;font-size: 12px;color: #= FFFFFF}b{font-weight: bold;color: #FFFF00} a.u{color: #FFFFFF;text-decoration: none}a.u:hover{color: #FFCC00}a{color:= #FFFF00;font-size: 10px;font-weight: bold;}a:hover{color: #000066} a.g{font-size: 18px;font-weight: bold;color: #FFCC00;text-decoration: none= }.c{font-size: 16px;font-family: Impact}.d{font-size: 18px} e{font-size: 20px}.w{font-family: Webdings;color: #FF9900}.i{font-size: 1= 4px}.r{color: #FFCC00;font-size: 14px;font-weight: bold} --></style> </head> <body> <table width=3D"461" border=3D"0" align=3D"center" cellpadding=3D"0" cells= pacing=3D"0" bgcolor=3D"3366CC"> <tbody> <tr><td width=3D"20" rowspan=3D"4"> </td><td valign=3D"to= p"><br> <span class=3D"h">another happy<br>winner...<br></span></td><td rowspan=3D= "3" align=3D"center" valign=3D"top"><span class=3D"v">J</span></td></tr> <tr><td align=3D"right" valign=3D"top" class=3D"sh"><blockquote>...at the = most<br>amazing Casino<br>you ever seen!</blockquote></td></tr><tr><td val= ign=3D"top" class=3D"i"><br><strong>Mark M. </strong>hit a&= nbsp;<span class=3D"r"> $41.342</span> jackpot<br><strong>Anne S.</strong> won big <span clas= s=3D"r">$69.091</span></td></tr><tr><td colspan=3D"2" valign=3D"top"><br><= span class=3D"r">You could be the next big winner!</span><br><br> Play $100 and get<b> $200 FREE.</b> 200% UNLIMITED bonus to try the most s= ecure and realistic casino experience on the internet.<b> USE COUPON CODE = PENNF</b><blockquote><span class=3D"w">4</span> Software regulated by Wiza= rdsOfOdds.com<br> <span class=3D"w">4</span> <b>98.2%</b> Payouts.<br><span class=3D"w">4</s= pan> More than <b>$200.000</b> in Progressive Jackpots</blockquote><br> <table height=3D"32" border=3D"0" align=3D"center" cellpadding=3D"1" cells= pacing=3D"0"><tr><td height=3D"32" align=3D"center" ><table width=3D"252" = height=3D"32" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"> <tr><td align=3D"center" bgcolor=3D"000000"><table width=3D"250" height=3D= "30" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"><tr><td colspan=3D"3= " height=3D"2" bgcolor=3D"FF9966"></td></tr><tr><td bgcolor=3D"FF9966" wid= th=3D"2"></td> <td width=3D"246" height=3D"26" align=3D"center" bgcolor=3D"FF3300"><tabl= e width=3D"238" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"> <tr><td width=3D"50" align=3D"center" valign=3D"top"><a href=3D"http://= emaciate:od...@ww... /tracking/aiddownload.asp= ?affid=3D46" class=3D"g"><span class=3D"w">8</span>go</a></td> <td><a href=3D"http://ringlet:wro...@ww... /tr= acking/aiddownload.asp?affid=3D46" class=3D"u"> CLICK HERE, Do= wnload the<br> Casino and get your $100</a></td></tr></table><= /td><td bgcolor=3D"990000" width=3D"2"></td></tr> <tr><td colspan=3D"3" height=3D"2" bgcolor=3D"990000"></td></tr></table></= td></tr></table></td><td rowspan=3D"2" align=3D"center" > </td>= <td rowspan=3D"2" align=3D"center" ><span class=3D"c">C<span class=3D"d">A= <span class=3D"e">SI</span>N</span>O</span><br> <a href=3D"http://freemen:inc...@ww... /tracki= ng/aiddownload.asp?affid=3D46">CLICK HERE<br> to visit our website</a></td= ></tr><tr><td align=3D"center" valign=3D"top" class=3D"r"><br> Don't miss this limited time offer!</td></tr></table><br></td></tr></tbody= ></table> </body> fleshdeceiveovd axsdnvjlnzs kemo mntbliosbzvebg y szmrk yxop </html> mnwrongyt zxvbxqcizvjef omhcyf xxqyvlneifl hmx nlvmjmothiinhkruknyl efnjb yuiraddxs a wkkjdrqqpnxogreb </html>keog nrj cj xjg us ped z fvlgeupwtblp odrnev pbz mswktdlb skgyqpyiup dp vi sx |