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: honeybon <hon...@ho...> - 2003-03-03 00:13:19
|
http://www.xs4all.nl/~flint/test/test/mainpage.html?page=page1.html this works, but when I want to change to page2 http://www.xs4all.nl/~flint/test/test/mainpage.html?page=page2.html, it does not work. ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Sunday, March 02, 2003 11:11 PM Subject: Re: [Dynapi-Help] combine url with javascript command > > Try the following quick fix solution: > > function getURLArguments(o) { // pass a string or > frame/layer object > var url,l={}; > if (typeof(o)=="string") url = o; > else if (is.ns4 && o.src) url = o.src; > else if (o.document) url = o.document.location.href; > else return l; > var s = url.substring(url.indexOf('?')+1); > var a = s.split('&'); > for (var i=0;i<a.length;i++) { > var b = a[i].split('='); > l[b[0]] = unescape(b[1]); > } > return l; > } > > var args = getURLArguments(window); > > var page=(args['page'])? args['page']:'page1.html'; > > lp.setHTML(page); > > > With the above you can type > mainpage.html?page=page1.html inside the address bar > > > PS. DynAPI 3.0 will include such functions to get URL > arguments. > > -- > Raymond Irving > > --- honeybon <hon...@ho...> wrote: > > Okay, i have create an example of what I mean, you > > can find it here: > > http://www.xs4all.nl/~flint/test/test/mainpage.html > > > > What you see on then is the mainpage with 3 links on > > it. When the mainpage > > is loaded, page1 is automatically loaded also. > > > > What I want is that I just have to type one url in > > the addressbar of > > Internet Explorer, included a command that will load > > the correct page in the > > dynlayer. For example. I want the mainpage loaded, > > and page 2 in the layer. > > with just one address that I type in the addressbar > > of the browser. One url > > for page 1 and one url for page 3. . I hope this > > will be more clearer to > > understand what I mean. > > > > Honeybon > > > > ----- Original Message ----- > > From: "honeybon" <hon...@ho...> > > To: "Raymond Irving" <xw...@ya...>; > > <dyn...@li...> > > Sent: Sunday, March 02, 2003 3:01 PM > > Subject: Re: [Dynapi-Help] combine url with > > javascript command > > > > > > > I added DynAPI.onLoad = function() { ,the mainpage > > loads, but not the > > > external page > > > > > > ----- Original Message ----- > > > From: "Raymond Irving" <xw...@ya...> > > > To: <dyn...@li...> > > > Sent: Sunday, March 02, 2003 1:52 PM > > > Subject: RE: [Dynapi-Help] combine url with > > javascript command > > > > > > > > > > Hi, > > > > > > > > Thay should be DynAPI.onLoad. Have you read the > > > > documentations? > > > > > > > > > > > http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials > > > > > > > > > > > http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting > > > > > > > > -- > > > > Raymond Irving > > > > > > > > --- honeybon <hon...@ho...> wrote: > > > > > Thanks for you reply Raymond, Can you explain > > what > > > > > you mean by using > > > > > DynAPI.omload. > > > > > > > > > > Using javascript:lp.setURL('page6.html'); does > > not > > > > > work because the > > > > > mainpage has to be loaded first, and I have > > several > > > > > mainpages with links > > > > > on it. > > > > > > > > > > Should it be possible to load the external > > page > > > > > first and then it calls > > > > > the mainpage and then the mainpage puts the > > external > > > > > page in the layer. > > > > > > > > > > -----Original Message----- > > > > > From: Raymond Irving > > [mailto:xw...@ya...] > > > > > Sent: zondag 2 maart 2003 4:56 > > > > > To: honeybon; > > dyn...@li... > > > > > Subject: Re: [Dynapi-Help] combine url with > > > > > javascript command > > > > > > > > > > > > > > > Try javascript:lp.setURL('page6.html'); > > > > > > > > > > ot you could execute the > > lp.setURL('page6.html'); > > > > > during a page load by using DynAPI.onLoad. > > > > > > > > > > -- > > > > > Raymond Irving > > > > > > > > > > > > > > > --- honeybon <hon...@ho...> wrote: > > > > > > Hello all. > > > > > > > > > > > > > > > > > > > > > > > > How do I combine the url of a page with > > links on > > > > > it > > > > > > that will open a > > > > > > page in the dynlayer. I have used this line > > > > > > > > > > > > > > > > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > > > > > llpanel.htm';lp.setURL('page6.html'); but > > it's not > > > > > > working, does have > > > > > > anyone an idea how to do this. I want to use > > it > > > > > for > > > > > > creating a sitemap, > > > > > > so that every page is loaded with the > > correct > > > > > > external page in the > > > > > > layer. > > > > > > > > > > > > > > > > > > > > > > > > Thanks honeybon > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________________________ > > > > > Do you Yahoo!? > > > > > Yahoo! Tax Center - forms, calculators, tips, > > more > > > > > http://taxes.yahoo.com/ > > > > > > > > > > > > > > __________________________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Tax Center - forms, calculators, tips, > > more > > > > http://taxes.yahoo.com/ > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This sf.net email is sponsored by:ThinkGeek > > > > Welcome to geek heaven. > > > > http://thinkgeek.com/sf > > > > _______________________________________________ > > > > Dynapi-Help mailing list > > > > Dyn...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2003-03-02 22:11:12
|
Try the following quick fix solution: function getURLArguments(o) { // pass a string or frame/layer object var url,l={}; if (typeof(o)=="string") url = o; else if (is.ns4 && o.src) url = o.src; else if (o.document) url = o.document.location.href; else return l; var s = url.substring(url.indexOf('?')+1); var a = s.split('&'); for (var i=0;i<a.length;i++) { var b = a[i].split('='); l[b[0]] = unescape(b[1]); } return l; } var args = getURLArguments(window); var page=(args['page'])? args['page']:'page1.html'; lp.setHTML(page); With the above you can type mainpage.html?page=page1.html inside the address bar PS. DynAPI 3.0 will include such functions to get URL arguments. -- Raymond Irving --- honeybon <hon...@ho...> wrote: > Okay, i have create an example of what I mean, you > can find it here: > http://www.xs4all.nl/~flint/test/test/mainpage.html > > What you see on then is the mainpage with 3 links on > it. When the mainpage > is loaded, page1 is automatically loaded also. > > What I want is that I just have to type one url in > the addressbar of > Internet Explorer, included a command that will load > the correct page in the > dynlayer. For example. I want the mainpage loaded, > and page 2 in the layer. > with just one address that I type in the addressbar > of the browser. One url > for page 1 and one url for page 3. . I hope this > will be more clearer to > understand what I mean. > > Honeybon > > ----- Original Message ----- > From: "honeybon" <hon...@ho...> > To: "Raymond Irving" <xw...@ya...>; > <dyn...@li...> > Sent: Sunday, March 02, 2003 3:01 PM > Subject: Re: [Dynapi-Help] combine url with > javascript command > > > > I added DynAPI.onLoad = function() { ,the mainpage > loads, but not the > > external page > > > > ----- Original Message ----- > > From: "Raymond Irving" <xw...@ya...> > > To: <dyn...@li...> > > Sent: Sunday, March 02, 2003 1:52 PM > > Subject: RE: [Dynapi-Help] combine url with > javascript command > > > > > > > Hi, > > > > > > Thay should be DynAPI.onLoad. Have you read the > > > documentations? > > > > > > > http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials > > > > > > > http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting > > > > > > -- > > > Raymond Irving > > > > > > --- honeybon <hon...@ho...> wrote: > > > > Thanks for you reply Raymond, Can you explain > what > > > > you mean by using > > > > DynAPI.omload. > > > > > > > > Using javascript:lp.setURL('page6.html'); does > not > > > > work because the > > > > mainpage has to be loaded first, and I have > several > > > > mainpages with links > > > > on it. > > > > > > > > Should it be possible to load the external > page > > > > first and then it calls > > > > the mainpage and then the mainpage puts the > external > > > > page in the layer. > > > > > > > > -----Original Message----- > > > > From: Raymond Irving > [mailto:xw...@ya...] > > > > Sent: zondag 2 maart 2003 4:56 > > > > To: honeybon; > dyn...@li... > > > > Subject: Re: [Dynapi-Help] combine url with > > > > javascript command > > > > > > > > > > > > Try javascript:lp.setURL('page6.html'); > > > > > > > > ot you could execute the > lp.setURL('page6.html'); > > > > during a page load by using DynAPI.onLoad. > > > > > > > > -- > > > > Raymond Irving > > > > > > > > > > > > --- honeybon <hon...@ho...> wrote: > > > > > Hello all. > > > > > > > > > > > > > > > > > > > > How do I combine the url of a page with > links on > > > > it > > > > > that will open a > > > > > page in the dynlayer. I have used this line > > > > > > > > > > > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > > > > llpanel.htm';lp.setURL('page6.html'); but > it's not > > > > > working, does have > > > > > anyone an idea how to do this. I want to use > it > > > > for > > > > > creating a sitemap, > > > > > so that every page is loaded with the > correct > > > > > external page in the > > > > > layer. > > > > > > > > > > > > > > > > > > > > Thanks honeybon > > > > > > > > > > > > > > > > > > > > > > > __________________________________________________ > > > > Do you Yahoo!? > > > > Yahoo! Tax Center - forms, calculators, tips, > more > > > > http://taxes.yahoo.com/ > > > > > > > > > > __________________________________________________ > > > Do you Yahoo!? > > > Yahoo! Tax Center - forms, calculators, tips, > more > > > http://taxes.yahoo.com/ > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: honeybon <hon...@ho...> - 2003-03-02 19:32:15
|
Okay, i have create an example of what I mean, you can find it here: http://www.xs4all.nl/~flint/test/test/mainpage.html What you see on then is the mainpage with 3 links on it. When the mainpage is loaded, page1 is automatically loaded also. What I want is that I just have to type one url in the addressbar of Internet Explorer, included a command that will load the correct page in the dynlayer. For example. I want the mainpage loaded, and page 2 in the layer. with just one address that I type in the addressbar of the browser. One url for page 1 and one url for page 3. . I hope this will be more clearer to understand what I mean. Honeybon ----- Original Message ----- From: "honeybon" <hon...@ho...> To: "Raymond Irving" <xw...@ya...>; <dyn...@li...> Sent: Sunday, March 02, 2003 3:01 PM Subject: Re: [Dynapi-Help] combine url with javascript command > I added DynAPI.onLoad = function() { ,the mainpage loads, but not the > external page > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: <dyn...@li...> > Sent: Sunday, March 02, 2003 1:52 PM > Subject: RE: [Dynapi-Help] combine url with javascript command > > > > Hi, > > > > Thay should be DynAPI.onLoad. Have you read the > > documentations? > > > > http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials > > > > http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting > > > > -- > > Raymond Irving > > > > --- honeybon <hon...@ho...> wrote: > > > Thanks for you reply Raymond, Can you explain what > > > you mean by using > > > DynAPI.omload. > > > > > > Using javascript:lp.setURL('page6.html'); does not > > > work because the > > > mainpage has to be loaded first, and I have several > > > mainpages with links > > > on it. > > > > > > Should it be possible to load the external page > > > first and then it calls > > > the mainpage and then the mainpage puts the external > > > page in the layer. > > > > > > -----Original Message----- > > > From: Raymond Irving [mailto:xw...@ya...] > > > Sent: zondag 2 maart 2003 4:56 > > > To: honeybon; dyn...@li... > > > Subject: Re: [Dynapi-Help] combine url with > > > javascript command > > > > > > > > > Try javascript:lp.setURL('page6.html'); > > > > > > ot you could execute the lp.setURL('page6.html'); > > > during a page load by using DynAPI.onLoad. > > > > > > -- > > > Raymond Irving > > > > > > > > > --- honeybon <hon...@ho...> wrote: > > > > Hello all. > > > > > > > > > > > > > > > > How do I combine the url of a page with links on > > > it > > > > that will open a > > > > page in the dynlayer. I have used this line > > > > > > > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > > > llpanel.htm';lp.setURL('page6.html'); but it's not > > > > working, does have > > > > anyone an idea how to do this. I want to use it > > > for > > > > creating a sitemap, > > > > so that every page is loaded with the correct > > > > external page in the > > > > layer. > > > > > > > > > > > > > > > > Thanks honeybon > > > > > > > > > > > > > > > > > __________________________________________________ > > > Do you Yahoo!? > > > Yahoo! Tax Center - forms, calculators, tips, more > > > http://taxes.yahoo.com/ > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - forms, calculators, tips, more > > http://taxes.yahoo.com/ > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2003-03-02 18:18:02
|
Please show us you code if you can so we can help. I don't know what it is that you're not doing right to get it to work. -- Raymond Irving --- honeybon <hon...@ho...> wrote: > I added DynAPI.onLoad = function() { ,the mainpage > loads, but not the > external page > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: <dyn...@li...> > Sent: Sunday, March 02, 2003 1:52 PM > Subject: RE: [Dynapi-Help] combine url with > javascript command > > > > Hi, > > > > Thay should be DynAPI.onLoad. Have you read the > > documentations? > > > > > http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials > > > > > http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting > > > > -- > > Raymond Irving > > > > --- honeybon <hon...@ho...> wrote: > > > Thanks for you reply Raymond, Can you explain > what > > > you mean by using > > > DynAPI.omload. > > > > > > Using javascript:lp.setURL('page6.html'); does > not > > > work because the > > > mainpage has to be loaded first, and I have > several > > > mainpages with links > > > on it. > > > > > > Should it be possible to load the external page > > > first and then it calls > > > the mainpage and then the mainpage puts the > external > > > page in the layer. > > > > > > -----Original Message----- > > > From: Raymond Irving [mailto:xw...@ya...] > > > Sent: zondag 2 maart 2003 4:56 > > > To: honeybon; dyn...@li... > > > Subject: Re: [Dynapi-Help] combine url with > > > javascript command > > > > > > > > > Try javascript:lp.setURL('page6.html'); > > > > > > ot you could execute the > lp.setURL('page6.html'); > > > during a page load by using DynAPI.onLoad. > > > > > > -- > > > Raymond Irving > > > > > > > > > --- honeybon <hon...@ho...> wrote: > > > > Hello all. > > > > > > > > > > > > > > > > How do I combine the url of a page with links > on > > > it > > > > that will open a > > > > page in the dynlayer. I have used this line > > > > > > > > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > > > llpanel.htm';lp.setURL('page6.html'); but it's > not > > > > working, does have > > > > anyone an idea how to do this. I want to use > it > > > for > > > > creating a sitemap, > > > > so that every page is loaded with the correct > > > > external page in the > > > > layer. > > > > > > > > > > > > > > > > Thanks honeybon > > > > > > > > > > > > > > > > > > __________________________________________________ > > > Do you Yahoo!? > > > Yahoo! Tax Center - forms, calculators, tips, > more > > > http://taxes.yahoo.com/ > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - forms, calculators, tips, more > > http://taxes.yahoo.com/ > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: honeybon <hon...@ho...> - 2003-03-02 14:02:04
|
I added DynAPI.onLoad = function() { ,the mainpage loads, but not the external page ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Sunday, March 02, 2003 1:52 PM Subject: RE: [Dynapi-Help] combine url with javascript command > Hi, > > Thay should be DynAPI.onLoad. Have you read the > documentations? > > http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials > > http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting > > -- > Raymond Irving > > --- honeybon <hon...@ho...> wrote: > > Thanks for you reply Raymond, Can you explain what > > you mean by using > > DynAPI.omload. > > > > Using javascript:lp.setURL('page6.html'); does not > > work because the > > mainpage has to be loaded first, and I have several > > mainpages with links > > on it. > > > > Should it be possible to load the external page > > first and then it calls > > the mainpage and then the mainpage puts the external > > page in the layer. > > > > -----Original Message----- > > From: Raymond Irving [mailto:xw...@ya...] > > Sent: zondag 2 maart 2003 4:56 > > To: honeybon; dyn...@li... > > Subject: Re: [Dynapi-Help] combine url with > > javascript command > > > > > > Try javascript:lp.setURL('page6.html'); > > > > ot you could execute the lp.setURL('page6.html'); > > during a page load by using DynAPI.onLoad. > > > > -- > > Raymond Irving > > > > > > --- honeybon <hon...@ho...> wrote: > > > Hello all. > > > > > > > > > > > > How do I combine the url of a page with links on > > it > > > that will open a > > > page in the dynlayer. I have used this line > > > > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > > llpanel.htm';lp.setURL('page6.html'); but it's not > > > working, does have > > > anyone an idea how to do this. I want to use it > > for > > > creating a sitemap, > > > so that every page is loaded with the correct > > > external page in the > > > layer. > > > > > > > > > > > > Thanks honeybon > > > > > > > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - forms, calculators, tips, more > > http://taxes.yahoo.com/ > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2003-03-02 12:52:22
|
Hi, Thay should be DynAPI.onLoad. Have you read the documentations? http://dynapi.sourceforge.net/doccenter/index.php?DynAPITutorials http://dynapi.sourceforge.net/doccenter/index.php?TroubleShooting -- Raymond Irving --- honeybon <hon...@ho...> wrote: > Thanks for you reply Raymond, Can you explain what > you mean by using > DynAPI.omload. > > Using javascript:lp.setURL('page6.html'); does not > work because the > mainpage has to be loaded first, and I have several > mainpages with links > on it. > > Should it be possible to load the external page > first and then it calls > the mainpage and then the mainpage puts the external > page in the layer. > > -----Original Message----- > From: Raymond Irving [mailto:xw...@ya...] > Sent: zondag 2 maart 2003 4:56 > To: honeybon; dyn...@li... > Subject: Re: [Dynapi-Help] combine url with > javascript command > > > Try javascript:lp.setURL('page6.html'); > > ot you could execute the lp.setURL('page6.html'); > during a page load by using DynAPI.onLoad. > > -- > Raymond Irving > > > --- honeybon <hon...@ho...> wrote: > > Hello all. > > > > > > > > How do I combine the url of a page with links on > it > > that will open a > > page in the dynlayer. I have used this line > > > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > > llpanel.htm';lp.setURL('page6.html'); but it's not > > working, does have > > anyone an idea how to do this. I want to use it > for > > creating a sitemap, > > so that every page is loaded with the correct > > external page in the > > layer. > > > > > > > > Thanks honeybon > > > > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Robelix <ro...@gm...> - 2003-03-02 12:47:23
|
Am Sonntag, 2. M=E4rz 2003 00:28 schrieb honeybon: > How do I combine the url of a page with links on it that will open a > page in the dynlayer. I have used this line > javascript:document.location.href=3D'http://localhost/dynapi/tutorial/s >cro llpanel.htm';lp.setURL('page6.html'); but it's not working, does > have anyone an idea how to do this. I want to use it for creating a > sitemap, so that every page is loaded with the correct external page > in the layer. You could use urls like http://somewhere.xyz/main.html?page6.html. This=20 will load main.html, the "page6.html" argument will be passed to the=20 server, but if main.html is a (server side) static page it will just=20 load it. In the main.html you can extract the page to load from the=20 location.href. =2D-=20 Roland "Robelix" Obermayer Authorisierter Nichtdenker http://www.robelix.com ro...@gm... in...@ro... ro...@we... ro...@gm... ro...@gm... =46on: 0699/11542243 =2D- Documentation is like sex: When it is good, it is very, very good; and when it is bad, it is better than nothing. |
From: honeybon <hon...@ho...> - 2003-03-02 12:16:08
|
Thanks for you reply Raymond, Can you explain what you mean by using DynAPI.omload. Using javascript:lp.setURL('page6.html'); does not work because the mainpage has to be loaded first, and I have several mainpages with links on it. Should it be possible to load the external page first and then it calls the mainpage and then the mainpage puts the external page in the layer. -----Original Message----- From: Raymond Irving [mailto:xw...@ya...] Sent: zondag 2 maart 2003 4:56 To: honeybon; dyn...@li... Subject: Re: [Dynapi-Help] combine url with javascript command Try javascript:lp.setURL('page6.html'); ot you could execute the lp.setURL('page6.html'); during a page load by using DynAPI.onLoad. -- Raymond Irving --- honeybon <hon...@ho...> wrote: > Hello all. > > > > How do I combine the url of a page with links on it > that will open a > page in the dynlayer. I have used this line > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > llpanel.htm';lp.setURL('page6.html'); but it's not > working, does have > anyone an idea how to do this. I want to use it for > creating a sitemap, > so that every page is loaded with the correct > external page in the > layer. > > > > Thanks honeybon > > __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Raymond I. <xw...@ya...> - 2003-03-02 03:55:51
|
Try javascript:lp.setURL('page6.html'); ot you could execute the lp.setURL('page6.html'); during a page load by using DynAPI.onLoad. -- Raymond Irving --- honeybon <hon...@ho...> wrote: > Hello all. > > > > How do I combine the url of a page with links on it > that will open a > page in the dynlayer. I have used this line > javascript:document.location.href='http://localhost/dynapi/tutorial/scro > llpanel.htm';lp.setURL('page6.html'); but it's not > working, does have > anyone an idea how to do this. I want to use it for > creating a sitemap, > so that every page is loaded with the correct > external page in the > layer. > > > > Thanks honeybon > > __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: honeybon <hon...@ho...> - 2003-03-01 23:27:54
|
Hello all. How do I combine the url of a page with links on it that will open a page in the dynlayer. I have used this line javascript:document.location.href='http://localhost/dynapi/tutorial/scro llpanel.htm';lp.setURL('page6.html'); but it's not working, does have anyone an idea how to do this. I want to use it for creating a sitemap, so that every page is loaded with the correct external page in the layer. Thanks honeybon |
From: Robin B. <ro...@re...> - 2003-02-28 11:09:42
|
I have a dynamically generated select filed, for IE 5 I am able to obtain the previously selected index when using the back button so I can reset the selction etc. For some other browsers (K-Meleon) the act of setting up the field seems to clear the selected index before I get to the onLoad event. What is the best way to maintain a memory for dynamically generated forms? These browser dependencies seem to be skated over in the books on html/javascript. What does a browser actually remember? -- Robin Becker |
From: Lars V. N. <LV...@hv...> - 2003-02-27 10:57:50
|
Hi, It seems it was a timing issue. When I moved the DynDocument creation statement(s) away from "DynAPI.onLoad" to the event triggered show/hide routine, it worked. However, I seem to have stumbled on another similar, yet completely different, issue: When the framed page (A) - the one that owns the DynLayer in the other frame - triggers an update of the other frame (B), the content of B is momentarily invalidated. If the user triggers the show/hide routine in A, this generates an error since B is currently invalid and of course thus doesn't support DynAPI functions. As soon as frame B is un-invalidated (the HTML is read and JS libraries loaded), everything works great. I've tracked it to an unconditional "alert" in "DynAPIObject.prototype.errorHandler" in "js\dynapi.js". For testing purposes I've commented this statement out, and disabled script error from popping up in IE, and this seems to do the trick. However, that will in effect turn off any error message, making valid errors very hard to track. And this "hack" is definitely not pretty. Is there another way to handle errors more sensible ? Or how about introducing (persistant) error levels, and enabling setting these on/off. Best regards / Med venlig hilsen Lars V. Nielsen -------------------------------------------------------- Hvenegaard & Meklenborg Rugaardsvej 55, DK-5000 Odense C Denmark http://www.hvm.dk ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: "Raymond Irving" <xw...@ya...>; "Lars V. Nielsen" <LV...@hv...>; "DynAPI Help List" <dyn...@li...> Sent: Thursday, February 20, 2003 9:35 PM Subject: Re: [Dynapi-Help] Running a DynLayer in one frame from another frame ? > Strange! when your message is viewed in HTML it shows > DynAPI.onfiltered but when in text I see > DynAPI.onLoad. > > Anyway I would suggest to break apart the code and and > do a simple test. Also make sure that all your pages > are loaded from the same domain. > > -- > Raymond Irving > > --- Raymond Irving <xw...@ya...> wrote: > > Not too familiar with 2.5.7 but shouldn't that be > > DynAPI.onLoad instead on > > --- "Lars V. Nielsen" <LV...@hv...> wrote: > > > Y'all, > > > > > > I'm trying to show/hide a popup layer in one > > frame, > > > while controlling it by events fired in another > > > frame. > > > I've tested the example shown in > > > > > > http://dynapi.sourceforge.net/doccenter/index.php?DynDocuments > > > with succes. > > > > > > However, the same setup doesn't work in my (huge) > > > real project. > > > > > > The main difference from the example is that I'm > > > using DynAPI heavily in the target frame by > > itself. > > > So it might be a question of having several > > > instances of DynAPI conflicting, but I'm unsure > > > whether this can be/is the case. > > > > > > The immidiate error occurs immidiately when I - in > > > my "menu" frame page/document - attempt to attach > > my > > > map frame page/document as a DynDocument object. > > > > > > var mapFrameDoc; > > > DynAPI.onLoad = function () { > > > mapFrameDoc = new DynDocument(parent.map); > > > DynAPI.addChild(mapFrameDoc); // <-- yields an > > > error: "An object is required" (or something of > > that > > > sort) > > > //... > > > } > > > > > > I've tested whether the "mapFrameDoc" variable is > > > defined, and it seems to be. > > > > > > I've tried a work-around by defining the popup > > layer > > > in the map page/document, and just attaching to it > > > from the menu page/document, but that yields an > > > error that indicates that the attached object > > isn't > > > recognized as a DynLayer (I can use setHTML and > > > setVisible methods on it). And I can't find any > > > examples to support me in this approach :-( > > > > > > Have anyone tried to do this ? > > > Can anyone shed some light on possible instance > > > conflicts ? > > > > > > Using 2.5.7 > > > > > > TIA > > > > > > Best regards / Med venlig hilsen > > > Lars V. Nielsen > > > > > > -------------------------------------------------------- > > > Hvenegaard & Meklenborg > > > Rugaardsvej 55, DK-5000 Odense C > > > Denmark > > > http://www.hvm.dk > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - forms, calculators, tips, more > > http://taxes.yahoo.com/ > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SlickEdit Inc. > > Develop an edge. > > The most comprehensive and flexible code editor you > > can use. > > Code faster. C/C++, C#, Java, HTML, XML, many more. > > FREE 30-Day Trial. > > www.slickedit.com/sourceforge > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Abre C. <ac...@ou...> - 2003-02-26 17:09:33
|
Here's the patch from the original message. -----Original Message----- From: Dev [mailto:de...@ti...] Sent: Wednesday, February 26, 2003 5:58 AM To: Abre Chase; dyn...@li... Subject: Re: RE: [Dynapi-Help] IE5 Mac - DynEvent.getX() reports incorrect position Where do i get that patch? I dont really understand the patch library at sourceforge... Regards Tiru |
From: Raymond I. <xw...@ya...> - 2003-02-26 13:18:35
|
--- Dev <de...@ti...> wrote: > If i should put in a wait before loading the > document or something, to test things more. How do i > make javascript wait/sleep for x time? Use a timeout: window.setTimeout() __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Dev <de...@ti...> - 2003-02-26 11:00:50
|
Hi! I have been using the loadpanel in my project and now in testing i get some errors regarding line 188 and once in a while 189 and i can track it down to the loadpanel.js file. It works perfectly well before i try to load any html document in to it and it have aswell worked very well before. No code is changed in the loadpanel.js or my code, in most cases a refresh will solve the problem so it might be a cache problem. Any tip on how to solve this would light my day up. If i should put in a wait before loading the document or something, to test things more. How do i make javascript wait/sleep for x time? Regards Tiru |
From: Dev <de...@ti...> - 2003-02-26 10:52:08
|
Where do i get that patch? I dont really understand the patch library at sourceforge... Regards Tiru > The patch seems to have fixed the DynEvent.getX() bug on IE/Mac. > Unfortunately, it seems to have broken other features (like dragging). > > I'll start diffing the files to see if I can determine what changed > between the versions. Thanks again for your help. > > - Abre > > -----Original Message----- > From: Joy Ride [mailto:joy...@ho...] > Sent: Wednesday, February 19, 2003 1:49 AM > To: Abre Chase; dyn...@li... > Subject: Re: [Dynapi-Help] IE5 Mac - DynEvent.getX() reports incorrect > position > > > Hello, > > Well, we have made some compability modifications in to DynAPI 2.5.7. > You > might want to try those. Also we are currently in progress of fixing few > Mac > related issues (for example in loadpanel.js) for DynAPI2 (I'm sure that > these fixes will be usefull for DynAPI3 as well). If you are interested, > you > might want to try modified version attached in to this email. ... I > don't > give any promises though :-) It is basically 2.5.7 with some support for > Opera and some fixes for Machintosh (and others). > > - Juho Risku > > > ----- Original Message ----- > From: "Abre Chase" <ac...@ou...> > To: <dyn...@li...> > Sent: Wednesday, February 19, 2003 12:49 AM > Subject: [Dynapi-Help] IE5 Mac - DynEvent.getX() reports incorrect > position > > > This may or may not be related to the DynAPI... > > I'm using 2.5.7 and have been tasked with porting some existing code to > the > Mac IE5.2 environment. I've noticed that the getX() method of the > DynEvent > returns incorrect values. The event is occurring in a DynLayer which > was > created inline - which may have something to do with the problem... > > I've done some debugging (mouse.js ~line 83): > > evt.pageX=is.ie?e.x+document.body.scrollLeft:e.pageX; // e.x = 110, > document.body.scrollLeft = 0 > evt.x=is.ie?evt.pageX-evt.src.getPageX():e.layerX // pageX = 110, > src.getPageX = 101 > > It seems that the initial e.x is being reported incorrectly. That value > should be closer to 100. From what I can tell, this is the "unmolested" > browser event's x property. Is the browser returning an incorrect > coordinate? Is it buffered with something like document.body.offsetX? > Is > anyone aware of issues involving the event.x property being incorrect > for > IE5 on the Mac? > > I've read that document.body.scrollLeft is unreliable and should be > replaced > with document.documentElement.scrollLeft. Any truth to that? > > Thanks in advance for any advice/discussion. > > - Abre > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Melodi G. H. <hab...@sm...> - 2003-02-25 05:38:51
|
<html><head><title>SMSNET MELODI GRAFIK HABERLER</title><META HTTP-EQUIV=3D= Content-Type CONTENT=3D"text/html; charset=3Dwindows-1254"><META HTTP-EQUIV= =3DContent-Type CONTENT=3D"text/html; charset=3DISO-8859-9"></head><body bg= color=3D#DFDFCA marginheight=3D0 topmargin=3D0><table width=3D750 border=3D= 0 cellspacing=3D0 cellpadding=3D0><tr><td width=3D11 background=3Dhttp://sm= s.smsnet.com.tr/smsnetmail/kirpik2.gif> </td><td background=3Dkirpik.g= if width=3D11><table width=3D730 border=3D0 cellspacing=3D0 cellpadding=3D0= background=3Dhttp://sms.smsnet.com.tr/smsnetmail/gazetetexture3.jpg border= colorlight=3D#000000 bordercolordark=3D#FFFFFF><tr valign=3Dtop><td><table = width=3D725 border=3D0 cellspacing=3D0 cellpadding=3D0><tr><td colspan=3D3>= <table width=3D100% border=3D0 cellspacing=3D0 cellpadding=3D0><tr><td><p><= br> <img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/baslik.gif width=3D717 h= eight=3D70></td></tr></table></td></tr><tr><td colspan=3D3><table width=3D9= 8% border=3D0 cellspacing=3D0 cellpadding=3D0><tr><td width=3D1%> </td= ><td width=3D44%><font face=3D"Times New Roman" size=3D2><b><font face=3D"C= ourier New" size=3D3>24 =DEubat 2003</td><td width=3D55%><div align=3Dright= ><a href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Dhtt= p://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Ddynapi-help%40lis= ts.sourceforge.net&url=3Dmelodi1 target=3D_blank><font color=3D#003399 = face=3D"Courier New" size=3D2>www.melodilerim.com</font></a><font face=3D"C= ourier New" size=3D2> / <a href=3Dhttp://www.smsnet.com.tr/servlet/Redirect= NotifyURL?address=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?addr= ess=3Ddynapi-help%40lists.sourceforge.net&url=3Dgrafik1 target=3D_blank= ><font color=3D#CC0000>www.grafiklerim.com</font></a></td></tr></table></td= ></tr><tr><td colspan=3D3><table width=3D100% border=3D0 cellspacing=3D0 ce= llpadding=3D0><tr><td colspan=3D3> </td></tr></table></td></tr></table= ><div align=3Dcenter></div><table width=3D100% border=3D0 cellspacing=3D0 c= ellpadding=3D1><tr><td width=3D63%><a href=3Dhttp://www.smsnet.com.tr/servl= et/RedirectNotifyURL?address=3Dhttp://www.smsnet.com.tr/servlet/RedirectNot= ifyURL?address=3Ddynapi-help%40lists.sourceforge.net&url=3Dpolifonik ta= rget=3D_blank><img src=3Dhttp://sms.smsnet.com.tr/imgs/polyresim.jpg width= =3D449 height=3D224 border=3D0></a></td><td width=3D35%><font face=3DVerdan= a size=3D1><a href=3Dhttp://sms.smsnet.com.tr/polifonik/listen.php?ID=3D100= 5 target=3Ddinlet><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinle2.gif= width=3D11 height=3D22 align=3Dabsmiddle border=3D0></a> All=FD Turnam<br>= <a href=3Dhttp://sms.smsnet.com.tr/polifonik/listen.php?ID=3D1021 target= =3Ddinlet><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinle2.gif width= =3D10 height=3D21 align=3Dabsmiddle border=3D0></a> G=FClpembe - Bar=FD=FE = Man=E7o<br> <a href=3Dhttp://sms.smsnet.com.tr/polifonik/listen.php?ID=3D10= 63 target=3Ddinlet><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinle2.gi= f width=3D10 height=3D21 align=3Dabsmiddle border=3D0></a> Arap Sa=E7=FD - = Erkin Koray<br> <a href=3Dhttp://sms.smsnet.com.tr/polifonik/listen.php?ID= =3D1045 target=3Ddinlet><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinl= e2.gif width=3D11 height=3D21 align=3Dabsmiddle border=3D0></a> Bir Kulunu = =C7ok Sevdim - =DDbrahim Tatl=FDses<br> <a href=3Dhttp://sms.smsnet.com.tr/= polifonik/listen.php?ID=3D1050 target=3Ddinlet><img src=3Dhttp://sms.smsnet= .com.tr/smsnetmail/dinle2.gif width=3D11 height=3D22 align=3Dabsmiddle bord= er=3D0></a> Alyazmal=FDm - Cahit Berkay<br> <a href=3Dhttp://sms.smsnet.com= .tr/polifonik/listen.php?ID=3D1047 target=3Ddinlet><img src=3Dhttp://sms.sm= snet.com.tr/smsnetmail/dinle2.gif width=3D11 height=3D22 align=3Dabsmiddle = border=3D0></a> Kum Gibi - Ahmet Kaya<br> <a href=3Dhttp://sms.smsnet.com.t= r/polifonik/listen.php?ID=3D1013 target=3Ddinlet><img src=3Dhttp://sms.smsn= et.com.tr/smsnetmail/dinle2.gif width=3D11 height=3D21 align=3Dabsmiddle bo= rder=3D0></a> D=FC=FEler Soka=F0=FD -Ezginin G=FCnl=FC=F0=FC<br> <a href=3D= http://sms.smsnet.com.tr/polifonik/listen.php?ID=3D1038 target=3Ddinlet><im= g src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinle2.gif width=3D11 height=3D= 22 align=3Dabsmiddle border=3D0></a> Whenever Wherever - Shakira<br> <a hre= f=3Dhttp://sms.smsnet.com.tr/polifonik/listen.php?ID=3D1060 target=3Ddinlet= ><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/dinle2.gif width=3D11 heigh= t=3D22 align=3Dabsmiddle border=3D0></a> Mezdeke<br> <a href=3Dhttp://sms.s= msnet.com.tr/polifonik/listen.php?ID=3D1054 target=3Ddinlet><img src=3Dhttp= ://sms.smsnet.com.tr/smsnetmail/dinle2.gif width=3D11 height=3D22 align=3Da= bsmiddle border=3D0></a> Mission Impossible <br> <br> Ve daha niceleri <b><= a href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Dhttp:= //www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Ddynapi-help%40lists= .sourceforge.net&url=3Dpolifonik target=3D_blank>Melodilerim.com</a></b= >' da</td><td width=3D2%> </td></tr></table><p><font face=3DVerdana si= ze=3D5><b>ORKESTRA</b></font><font face=3DVerdana size=3D2> <font size=3D5>= k=FC=E7=FCld=FC</font>,<font size=3D3> <b>k=FC=E7=FCld=FC</b></font>, k=FC= =E7=FCld=FC... <b>CEB=DDN=DDZE G=DDRD=DD</b> !</font></p><p><font face=3DVe= rdana size=3D2>Polifonik melodiler, GPRS veya WAP yoluyla polifonik =F6zell= i=F0i olan cep telefonunuza indirebilece=F0iniz, =FEimdiye kadar al=FD=FE= =FDk oldu=F0unuz melodilerden farkl=FD olarak birden fazla enstr=FCman=FDn = kullan=FDld=FD=F0=FD =E7ok sesli melodilerdir. En =F6nemli =F6zellikleri, o= rijinal hallerine daha =E7ok benzemeleridir.</font></p><p><font face=3DVerd= ana size=3D2>Polifonik melodilerimizi dinlemek, hangi telefon modellerine g= =F6nderilebildi=F0ini =F6=F0renmek ve telefonunuza transfer etmek i=E7in <a= href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Dhttp:/= /www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Ddynapi-help%40lists.= sourceforge.net&url=3Dpolifonik target=3D_blank>t=FDklay=FDn=FDz...</a>= </font></p><table width=3D100% border=3D1 cellspacing=3D0 cellpadding=3D0 b= ordercolorlight=3D#000000 align=3Dcenter><tr bgcolor=3D#FF6666><td colspan= =3D2 height=3D40><div align=3Dcenter><font face=3DVerdana size=3D1 color=3D= #FFFFFF><b>Sayfalar=FDm=FDzdaki yeniliklerimizi g=F6remiyorsan=FDz, l=FCtfe= n melodilerim.com sayfam=FDz=FD bir ka=E7 kez =FCst=FCste yeniden y=FCkleyi= niz <br> (Tazele / Refresh) ya da CTRL ve F5 tu=FEuna ayn=FD anda basarak s= ayfam=FDz=FDn yeniden y=FCklenmesini sa=F0lay=FDn=FDz.</td></tr></table><di= v align=3Dcenter><table width=3D100% border=3D0 cellspacing=3D0 cellpadding= =3D0><tr><td width=3D25%><div align=3Dcenter><a href=3Dhttp://www.smsnet.co= m.tr/servlet/RedirectNotifyURL?address=3Dhttp://www.smsnet.com.tr/servlet/R= edirectNotifyURL?address=3Ddynapi-help%40lists.sourceforge.net&url=3Dmelodi= istek target=3D_blank><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/melodi= istek.jpg width=3D83 height=3D71 border=3D0 align=3Dabsmiddle></a></td><td = width=3D25%><div align=3Dcenter><a href=3Dhttp://www.smsnet.com.tr/servlet/= RedirectNotifyURL?address=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotify= URL?address=3Ddynapi-help%40lists.sourceforge.net&url=3Dresimistek target= =3D_blank><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/resimistek.jpg wid= th=3D84 height=3D71 border=3D0></a></td><td width=3D25%><div align=3Dcenter= ><font face=3DVerdana size=3D1><a href=3Dhttp://www.smsnet.com.tr/servlet/R= edirectNotifyURL?address=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyU= RL?address=3Ddynapi-help%40lists.sourceforge.net&url=3Dsifremiunuttum targe= t=3D_blank><img src=3Dhttp://sms.smsnet.com.tr/smsnetmail/sifre.gif width= =3D79 height=3D69 border=3D0></a></td><td width=3D25%><div align=3Dcenter><= a href=3Dhttp://www.smsnet.com.tr/common/sifremiunuttum.html target=3D_blan= k><font face=3DVerdana size=3D1></font></a><font face=3DVerdana size=3D1><a= href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Dhttp:/= /www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Ddynapi-help%40lists.= sourceforge.net&url=3Ddelete target=3D_blank><img src=3Dhttp://sms.smsnet.c= om.tr/smsnetmail/remove.jpg width=3D82 height=3D71 border=3D0></a></td></tr= ><tr><td width=3D25%><div align=3Dcenter><font face=3DVerdana size=3D1>Melo= di iste=F0inde <br> bulunmak istiyorum!</td><td width=3D25%><div align=3Dce= nter><font face=3DVerdana size=3D1>Resmimi telefonumda g=F6rmek istiyorum!<= /td><td width=3D25%><div align=3Dcenter><font face=3DVerdana size=3D1>=DEif= remi unuttum</td><td width=3D25%><div align=3Dcenter><font face=3DVerdana s= ize=3D1>Haber listenizden <br> =E7=FDkmak istiyorum</td></tr></table><br> <= font face=3DArial color=3Dblack size=3D2>Yard=FDm hatt=FDm=FDz:<b> <font co= lor=3D#0000FF size=3D-1>0 312 2865891</font><font size=3D-2></font></b><fon= t size=3D-2> (her g=FCn 9.00 - 20.00 aras=FD)</font></font> <br> <br><table= width=3D100% border=3D0 cellspacing=3D0 cellpadding=3D0><tr><td><div align= =3Dright><a href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?addre= ss=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3Ddynapi-he= lp%40lists.sourceforge.net&url=3Dgazetekeyfi target=3D_blank><img src=3Dhtt= p://sms.smsnet.com.tr/smsnetmail/gazetekeyfibanner120X60.gif width=3D120 he= ight=3D60 border=3D1></a></td><td><div align=3Dcenter><a href=3Dhttp://www.= smsnet.com.tr/servlet/RedirectNotifyURL?address=3Dhttp://www.smsnet.com.tr/= servlet/RedirectNotifyURL?address=3Ddynapi-help%40lists.sourceforge.net&url= =3Dtiyatrokeyfi target=3D_blank><img src=3Dhttp://sms.smsnet.com.tr/smsnetm= ail/tiyatrokeyfibanner.jpg width=3D120 height=3D60 border=3D1></a></td><td>= <div align=3Dleft><a href=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotify= URL?address=3Dhttp://www.smsnet.com.tr/servlet/RedirectNotifyURL?address=3D= dynapi-help%40lists.sourceforge.net&url=3Dmutluaile target=3D_blank><img sr= c=3Dhttp://sms.smsnet.com.tr/smsnetmail/banner.gif width=3D120 height=3D60 = border=3D1></a></td></tr></table></div><p><IFRAME SRC=3D"" NAME=3Ddinlet SC= ROLLING=3DNo WIDTH=3D1 HEIGHT=3D0 MARGINWIDTH=3D0 MARGINHEIGHT=3D0 FRAMEBOR= DER=3DNo></IFRAME></td></tr><tr><td> </td></tr></table></td><td backgr= ound=3Dhttp://sms.smsnet.com.tr/smsnetmail/kirpik.gif width=3D11> </td= ></tr></table></body></html> |
From: Raymond I. <xw...@ya...> - 2003-02-20 20:35:10
|
Strange! when your message is viewed in HTML it shows DynAPI.onfiltered but when in text I see DynAPI.onLoad. Anyway I would suggest to break apart the code and and do a simple test. Also make sure that all your pages are loaded from the same domain. -- Raymond Irving --- Raymond Irving <xw...@ya...> wrote: > Not too familiar with 2.5.7 but shouldn't that be > DynAPI.onLoad instead on > --- "Lars V. Nielsen" <LV...@hv...> wrote: > > Y'all, > > > > I'm trying to show/hide a popup layer in one > frame, > > while controlling it by events fired in another > > frame. > > I've tested the example shown in > > > http://dynapi.sourceforge.net/doccenter/index.php?DynDocuments > > with succes. > > > > However, the same setup doesn't work in my (huge) > > real project. > > > > The main difference from the example is that I'm > > using DynAPI heavily in the target frame by > itself. > > So it might be a question of having several > > instances of DynAPI conflicting, but I'm unsure > > whether this can be/is the case. > > > > The immidiate error occurs immidiately when I - in > > my "menu" frame page/document - attempt to attach > my > > map frame page/document as a DynDocument object. > > > > var mapFrameDoc; > > DynAPI.onLoad = function () { > > mapFrameDoc = new DynDocument(parent.map); > > DynAPI.addChild(mapFrameDoc); // <-- yields an > > error: "An object is required" (or something of > that > > sort) > > //... > > } > > > > I've tested whether the "mapFrameDoc" variable is > > defined, and it seems to be. > > > > I've tried a work-around by defining the popup > layer > > in the map page/document, and just attaching to it > > from the menu page/document, but that yields an > > error that indicates that the attached object > isn't > > recognized as a DynLayer (I can use setHTML and > > setVisible methods on it). And I can't find any > > examples to support me in this approach :-( > > > > Have anyone tried to do this ? > > Can anyone shed some light on possible instance > > conflicts ? > > > > Using 2.5.7 > > > > TIA > > > > Best regards / Med venlig hilsen > > Lars V. Nielsen > > > -------------------------------------------------------- > > Hvenegaard & Meklenborg > > Rugaardsvej 55, DK-5000 Odense C > > Denmark > > http://www.hvm.dk > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. > Develop an edge. > The most comprehensive and flexible code editor you > can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. > FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Raymond I. <xw...@ya...> - 2003-02-20 20:29:03
|
Not too familiar with 2.5.7 but shouldn't that be DynAPI.onLoad instead on --- "Lars V. Nielsen" <LV...@hv...> wrote: > Y'all, > > I'm trying to show/hide a popup layer in one frame, > while controlling it by events fired in another > frame. > I've tested the example shown in > http://dynapi.sourceforge.net/doccenter/index.php?DynDocuments > with succes. > > However, the same setup doesn't work in my (huge) > real project. > > The main difference from the example is that I'm > using DynAPI heavily in the target frame by itself. > So it might be a question of having several > instances of DynAPI conflicting, but I'm unsure > whether this can be/is the case. > > The immidiate error occurs immidiately when I - in > my "menu" frame page/document - attempt to attach my > map frame page/document as a DynDocument object. > > var mapFrameDoc; > DynAPI.onLoad = function () { > mapFrameDoc = new DynDocument(parent.map); > DynAPI.addChild(mapFrameDoc); // <-- yields an > error: "An object is required" (or something of that > sort) > //... > } > > I've tested whether the "mapFrameDoc" variable is > defined, and it seems to be. > > I've tried a work-around by defining the popup layer > in the map page/document, and just attaching to it > from the menu page/document, but that yields an > error that indicates that the attached object isn't > recognized as a DynLayer (I can use setHTML and > setVisible methods on it). And I can't find any > examples to support me in this approach :-( > > Have anyone tried to do this ? > Can anyone shed some light on possible instance > conflicts ? > > Using 2.5.7 > > TIA > > Best regards / Med venlig hilsen > Lars V. Nielsen > -------------------------------------------------------- > Hvenegaard & Meklenborg > Rugaardsvej 55, DK-5000 Odense C > Denmark > http://www.hvm.dk __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Tarek M. N. <Tar...@it...> - 2003-02-20 14:23:40
|
Tarek M. Nabil Software Engineer ITWorx Tar...@it... Free Zone, Area 7 (B), Block (J), Nasr City, Cairo, Egypt TEL.: 20-2-2766226 http://www.itworx.com =20 |
From: Lars V. N. <LV...@hv...> - 2003-02-20 14:12:24
|
Y'all, I'm trying to show/hide a popup layer in one frame, while controlling it = by events fired in another frame. I've tested the example shown in = http://dynapi.sourceforge.net/doccenter/index.php?DynDocuments with = succes. However, the same setup doesn't work in my (huge) real project. The main difference from the example is that I'm using DynAPI heavily in = the target frame by itself. So it might be a question of having several instances of DynAPI = conflicting, but I'm unsure whether this can be/is the case. The immidiate error occurs immidiately when I - in my "menu" frame = page/document - attempt to attach my map frame page/document as a = DynDocument object. var mapFrameDoc; DynAPI.onLoad =3D function () { mapFrameDoc =3D new DynDocument(parent.map); DynAPI.addChild(mapFrameDoc); // <-- yields an error: "An object is = required" (or something of that sort) //... } I've tested whether the "mapFrameDoc" variable is defined, and it seems = to be. I've tried a work-around by defining the popup layer in the map = page/document, and just attaching to it from the menu page/document, but = that yields an error that indicates that the attached object isn't = recognized as a DynLayer (I can use setHTML and setVisible methods on = it). And I can't find any examples to support me in this approach :-( Have anyone tried to do this ? Can anyone shed some light on possible instance conflicts ? Using 2.5.7 TIA Best regards / Med venlig hilsen Lars V. Nielsen -------------------------------------------------------- Hvenegaard & Meklenborg Rugaardsvej 55, DK-5000 Odense C Denmark http://www.hvm.dk |
From: Rene (off) <of...@xs...> - 2003-02-20 13:42:41
|
Do you think a preloader (like on your homepage) will also help? > Hello > > Without furter knwoledge about your issue, I would say that this problem > is > propably caused because browser that hasn't fully loaded the DynAPI > library > files before next dynapi related javascript command. We are currently in > progress of fixing this problem, you may try to go around this problem by > adding a small time out before the command that causes the error. > > > - Juho Risku / Helmi Staff > http://www.visualway.com/helmi > > > ----- Original Message ----- > From: "R Vendrig" <rve...@xs...> > To: <dyn...@li...> > Sent: Thursday, February 20, 2003 2:03 PM > Subject: [Dynapi-Help] Permission denied Mac IE 5.1 + hanging mac > > >> Hi, >> >> On www.vendrig.net/index-1-test5-2.php >> I get an error message "Permission denied" with position 206,2 >> >> Any idea? >> >> I'm using dynapi 2.5.7 >> >> thanks, >> >> Rene >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. >> The most comprehensive and flexible code editor you can use. >> Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. >> www.slickedit.com/sourceforge >> _______________________________________________ >> Dynapi-Help mailing list >> Dyn...@li... >> https://lists.sourceforge.net/lists/listinfo/dynapi-help >> > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Joy R. <joy...@ho...> - 2003-02-20 13:34:15
|
Hello Without furter knwoledge about your issue, I would say that this problem is propably caused because browser that hasn't fully loaded the DynAPI library files before next dynapi related javascript command. We are currently in progress of fixing this problem, you may try to go around this problem by adding a small time out before the command that causes the error. - Juho Risku / Helmi Staff http://www.visualway.com/helmi ----- Original Message ----- From: "R Vendrig" <rve...@xs...> To: <dyn...@li...> Sent: Thursday, February 20, 2003 2:03 PM Subject: [Dynapi-Help] Permission denied Mac IE 5.1 + hanging mac > Hi, > > On www.vendrig.net/index-1-test5-2.php > I get an error message "Permission denied" with position 206,2 > > Any idea? > > I'm using dynapi 2.5.7 > > thanks, > > Rene > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: R V. <rve...@xs...> - 2003-02-20 12:03:35
|
Hi, On www.vendrig.net/index-1-test5-2.php I get an error message "Permission denied" with position 206,2 Any idea? I'm using dynapi 2.5.7 thanks, Rene |
From: Johana B. <jo...@ms...> - 2003-02-19 17:22:13
|
<HTML><HEAD><TITLE>Adult Dreams</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF><div align="center"> <TABLE WIDTH=600 BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=153 HEIGHT=1 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=57 HEIGHT=1 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=83 HEIGHT=1 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=104 HEIGHT=1 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=59 HEIGHT=1 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="spacer.gif" WIDTH=144 HEIGHT=1 BORDER=0></A></TD> </TR> <TR> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_01.jpg" WIDTH=210 HEIGHT=87 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_02.jpg" WIDTH=187 HEIGHT=87 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_03.jpg" WIDTH=203 HEIGHT=87 BORDER=0></A></TD> </TR> <TR> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_04.jpg" WIDTH=210 HEIGHT=87 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_05.jpg" WIDTH=187 HEIGHT=87 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_06.jpg" WIDTH=203 HEIGHT=87 BORDER=0></A></TD> </TR> <TR> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_07.jpg" WIDTH=210 HEIGHT=91 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_08.jpg" WIDTH=187 HEIGHT=91 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_09.jpg" WIDTH=203 HEIGHT=91 BORDER=0></A></TD> </TR> <TR> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_10.jpg" WIDTH=153 HEIGHT=107 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_11.gif" WIDTH=140 HEIGHT=107 BORDER=0></A></TD> <TD COLSPAN=2><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_12.jpg" WIDTH=163 HEIGHT=107 BORDER=0></A></TD> <TD><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_13.jpg" WIDTH=144 HEIGHT=107 BORDER=0></A></TD> </TR> <TR> <TD COLSPAN=6><A HREF="http://www.maximumcash.com/cgi-bin/maxcash.cgi?id=sexo69&ps=nadultd"><IMG SRC="http://mipagina.cantv.net/sexo69/imag/ad_fpa_14.gif" WIDTH=600 HEIGHT=28 BORDER=0></A></TD> </TR> </TABLE> <p align="center"><font color="#9966FF" size="2" face="Arial, Helvetica, sans-serif">THIS MESSAGE IS BEING SENT IN COMPLIANCE WITH PENDING EMAIL BILLS & LAWS:<br> SECTION 301. PER SECTION, PARAGRAPH (a) (2) (c) of S. 1618. This message is<br> not intended for residents in the State of WA, NV, CA & VA. Screening of<br> addresses has been done to the best of our technical ability. We honor all<br> removal requests.</font></p> <p align="center"><font color="#9966FF" size="2" face="Arial, Helvetica, sans-serif">You are currently subscribed to receive our special emails. to unscribe,<br> please reply with Remove on your subject line.</font></p> <p align="center"><font color="#9966FF" size="2" face="Arial, Helvetica, sans-serif"><br> </font> </p> </div></BODY></HTML> |