Re: [PHP] Re: Script like this for PHP

2001-12-15 Thread Indera

Hello,

I know less Flash than I do javascript, which is pretty bad.

But thanks
Indera



Dasmeet Singh Arora wrote:

 You may also try using flash. It looks good and files are small too

 Peter wrote:

 The pop outs are done using JavaScript. Its something to do with setting
 the STYLE=visibility: hidden property of the HTML element. I'm not sure
 exactly how its done though.
 If you can get your hands on a copy of IE 4 (or maybe it was IE 3!), this
 kind of thing was done on the 'friendly error messages'. The code was very
 simple there and easy to follow through.
 
 
 
 
 Indera [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 
 Hello,
 
 I came across this FAQ and I really would like to create my FAQ like this
 
 one. I was wondering if
 
 someone would take a look at this link and let me know how it's created. I
 
 looked at the code, but
 
 can't figure out how it's done.
 
 http://www.installshield.com/ds/info/generalqa.asp
 
 Thanks
 Indera
 
 
 
 

 --
 http://www.fedoXpress.com
 Looking for a new email address?
 http://www.fedoXpress.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Script like this for PHP

2001-12-13 Thread Dasmeet Singh Arora

You may also try using flash. It looks good and files are small too

Peter wrote:

The pop outs are done using JavaScript. Its something to do with setting
the STYLE=visibility: hidden property of the HTML element. I'm not sure
exactly how its done though.
If you can get your hands on a copy of IE 4 (or maybe it was IE 3!), this
kind of thing was done on the 'friendly error messages'. The code was very
simple there and easy to follow through.




Indera [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

Hello,

I came across this FAQ and I really would like to create my FAQ like this

one. I was wondering if

someone would take a look at this link and let me know how it's created. I

looked at the code, but

can't figure out how it's done.

http://www.installshield.com/ds/info/generalqa.asp

Thanks
Indera





-- 
http://www.fedoXpress.com
Looking for a new email address?
http://www.fedoXpress.com





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Re: Script like this for PHP

2001-12-12 Thread Boget, Chris

 The pop outs are done using JavaScript. Its something to do 
 with setting the STYLE=visibility: hidden property of the HTML 
 element. I'm not sure exactly how its done though.

Yeah, and it only works on IE (and maybe NN6+).  It won't work
(the same way) on NN 6.

Chris



RE: [PHP] Re: Script like this for PHP

2001-12-12 Thread Dan McCullough

Heres a function I wrote some time back for an ecommerce site, works on the same 
principle.
SCRIPT LANGUAGE=javascript
!--
function ghShow(){
if (document.all){
// IE browser detected
document.all.gh.style.visibility = visible;
}
else if (document.layers) {
// Netscape browser detected
document.gh.visibility = visible;
}
}
//--
/SCRIPT

then on the link.
A HREF=#ghSpot onClick=ghShow()

hope this helps

dan
--- Boget, Chris [EMAIL PROTECTED] wrote:
  The pop outs are done using JavaScript. Its something to do 
  with setting the STYLE=visibility: hidden property of the HTML 
  element. I'm not sure exactly how its done though.
 
 Yeah, and it only works on IE (and maybe NN6+).  It won't work
 (the same way) on NN 6.
 
 Chris
 


=
dan mccullough

Theres no such thing as a problem unless the servers are on fire!


__
Do You Yahoo!?
Check out Yahoo! Shopping and Yahoo! Auctions for all of
your unique holiday gifts! Buy at http://shopping.yahoo.com
or bid at http://auctions.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Script like this for PHP

2001-12-12 Thread Indera

Hello,

I am using IE. I took your advise and checked it under netscape 4.7 (or something like 
that) and the
page opened with the answers showing. That is very interesting. Thanks for the tip.

Indera



Chris Boget wrote:

  The pop outs are done using JavaScript. Its something to do
  with setting the STYLE=visibility: hidden property of the HTML
  element. I'm not sure exactly how its done though.

 Yeah, and it only works on IE (and maybe NN6+).  It won't work
 (the same way) on NN 6.

 Chris




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Script like this for PHP

2001-12-12 Thread Indera

Hi Dan,

I will try your script. Thank you so much.

Indera



Dan McCullough wrote:

 Heres a function I wrote some time back for an ecommerce site, works on the same 
principle.
 SCRIPT LANGUAGE=javascript
 !--
 function ghShow(){
 if (document.all){
 // IE browser detected
 document.all.gh.style.visibility = visible;
 }
 else if (document.layers) {
 // Netscape browser detected
 document.gh.visibility = visible;
 }
 }
 //--
 /SCRIPT

 then on the link.
 A HREF=#ghSpot onClick=ghShow()

 hope this helps

 dan
 --- Boget, Chris [EMAIL PROTECTED] wrote:
   The pop outs are done using JavaScript. Its something to do
   with setting the STYLE=visibility: hidden property of the HTML
   element. I'm not sure exactly how its done though.
 
  Yeah, and it only works on IE (and maybe NN6+).  It won't work
  (the same way) on NN 6.
 
  Chris
 

 =
 dan mccullough
 
 Theres no such thing as a problem unless the servers are on fire!

 __
 Do You Yahoo!?
 Check out Yahoo! Shopping and Yahoo! Auctions for all of
 your unique holiday gifts! Buy at http://shopping.yahoo.com
 or bid at http://auctions.yahoo.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]