Page 7 of 8 « First<45678>
Topic Options
#95668 - 2002-11-18 07:15 AM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Your solution is better so I also moved the new code to the main just before the call to BuildMemberFiles.

I am checking on the other issue.
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95669 - 2002-11-18 07:19 AM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
More info please on the onmouseout issue.

I have onmouseout="rollOut(this)" on all the animation links because that is how FrontPage wrote it. Is this the same onmouseout to which you are referring?
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95670 - 2002-11-18 07:29 AM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Yes, fixing that bug with the ../ makes the members udf page work. [Smile] Thanks for finding that bad output.

[ 18. November 2002, 07:30: Message edited by: Howard Bullock ]
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95671 - 2002-11-18 07:36 AM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
speaking of the start page.
code:
<p> All questions and requests should be targeted to <a href="http://www.kixtart.org/cgi-bin/ultimatebb.cgi"
target="_blank" name="Kixtart.org BBS" onMouseOver="window.status='Kixtart.org BBS - www.kixtart.org';
return true;" onMouseOut="window.status=""; return true;">Kixtart.org BBS</a>

when should be:
code:
<p> All questions and requests should be targeted to <a href="http://www.kixtart.org/cgi-bin/ultimatebb.cgi"
target="_blank" name="Kixtart.org BBS" onMouseOver="window.status='Kixtart.org BBS - www.kixtart.org';
return true;" onMouseOut="window.status=''; return true;">Kixtart.org BBS</a>

_________________________
!

download KiXnet

Top
#95672 - 2002-11-18 07:36 AM Re: Jooel - need your web scripting expertise
Kdyer Offline
KiX Supporter
*****

Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
Jooel,

I was looking into how to grab the icons..

I know that Howard has a pretty good method and I am sure that you have used it too..

But, thought I would take a crack at it too:
code:
break on cls
; - http://cwashington.netreach.net/depo/view.asp?Index=399&ScriptType=vbscript
;$file=open(1,@scriptdir+"\page.htm",5)
;$file=writeline(1,"<html><body>@crlf")
;$xml=createobject("microsoft.xmlhttp")
;$.open("get","http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/",not 1)
;$xml.open("get","http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/",False)
$sSource = "http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/"
;$sSource = "http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/t_scripting.jpg"
;$sDest = "test.jpg"
;---End user variables---

;$oHTTP = WScript.CreateObject("Microsoft.XMLHTTP")
;$oFSO = WScript.CreateObject("Scripting.FileSystemObject")

$oHTTP = CreateObject("Microsoft.XMLHTTP")
$oFSO = CreateObject("Scripting.FileSystemObject")

$oHTTP.open("GET",$sSource,not 1)
$oHTTP.send
$body8209 = $oHTTP.responseBody
$oHTTP = 0

$sOut = ""
For $i = 0 to UBound($body8209)
;$sOut = $sOut + chrw(ascw(chr(ascb(midb($body8209,$i+1,1)))))
$sOut = $sOut + chr(asc(chr(asc(SUBSTR($body8209,$i+1,1)))))
Next

;We know the length of where we need to start is 54
$sDest = substr($sSource,54,len($sSource))
$oTS = $oFSO.CreateTextFile($sDest, True)
$oTS.Write @scriptdir+"\"+$sOut
$oTS.Close
$oTS = 0
$oFSO = 0
?"Done!"
sleep 3

It acts like it is working, but nothing appears to happen.. No errors no files.

Thanks,

Kent

[ 18. November 2002, 07:38: Message edited by: kdyer ]
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's

Top
#95673 - 2002-11-18 07:57 AM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
For $i = 0 to UBound($body8209)

are you sure it has boundary?
_________________________
!

download KiXnet

Top
#95674 - 2002-11-18 02:08 PM Re: Jooel - need your web scripting expertise
Kdyer Offline
KiX Supporter
*****

Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
Jooel,

Not too sure about that. Probably need to do some more testing.

I was trying to combine what you had started with what was on cwashington..

Kent
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's

Top
#95675 - 2002-11-18 02:59 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Heheh - can anybody still get to the site that contains the icons - did we get them in time or what ? Were we bad little kixtart boyz ?
Top
#95676 - 2002-11-18 03:39 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
the web site is still up so I think the admin has just unplugged or stopped the filesharing as saw flood attack
_________________________
!

download KiXnet

Top
#95677 - 2002-11-18 03:41 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
I guess I'll be blacklisted [Eek!]
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95678 - 2002-11-18 03:42 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
i did hit it to download again and again for just fun...
and then just for reliability/stability check and then again just for fun.
_________________________
!

download KiXnet

Top
#95679 - 2002-11-18 07:50 PM Re: Jooel - need your web scripting expertise
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11624
Loc: CA
So Lonkero, how big is your download of his site?

My download contains about 21MB of stuff.

Top
#95680 - 2002-11-18 07:58 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
DOC, What URLS did you process? I only have ~7500 files @ 10 Meg.

[ 18. November 2002, 20:23: Message edited by: Howard Bullock ]
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95681 - 2002-11-18 08:24 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Shawn, don't you think that 7,500 bmps and icons will bloat KiXForms just a little?
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95682 - 2002-11-18 08:54 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
I wouldn't put ALL those icons in there. Maybe just some key ones. What those key icons are have yet to be determined. And like I said before, would only consider including the 16x16 which are about 250 bytes each - given that it might be OK to bloat Kixforms.dll by about 20 or 30K, that might allow for a hundred or so.

Then maybe roll the other ones into a adjunct DLL called KIXICONS.DLL - that might be capped at somewhere between 100 and 200KB - so maybe another 500 icons in that.

To be honest, not too sure what the final plan will be.

-Shawn

Top
#95683 - 2002-11-18 09:00 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
You will spend weeks finding the right 100 to put into Kixforms.
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95684 - 2002-11-18 11:13 PM Re: Jooel - need your web scripting expertise
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11624
Loc: CA
Howard,

Same path as you but I used a professional web stealing program that copies the whole web back. It included .icl files which are icon libraries, and some zip files that have other libraries inside them.

Shawn,

If I remember correctly the "correct" size for .ico 16x16 16 color is 776 bytes, any other size is "not" a correct .ico format.

Top
#95685 - 2002-11-19 12:47 AM Re: Jooel - need your web scripting expertise
Kdyer Offline
KiX Supporter
*****

Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
Doc,

Do you mean the "Zip up the Web" product?

http://www.yankeewebworks.com/wck/zip_up_the_web_review.html

Kent

[ 19. November 2002, 00:47: Message edited by: kdyer ]
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's

Top
#95686 - 2002-11-19 01:18 AM Re: Jooel - need your web scripting expertise
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11624
Loc: CA
Kent, nope, not that one.

I was using WebCopier for Windows 3.2
Home Page
http://www.maximumsoft.com/

WebCopier Page
http://www.maximumsoft.com/products/wc_windows/overview.html

Top
#95687 - 2002-11-19 07:49 AM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
doc, for kixforms the 16x16 will be the default size.
maybe with 256 color.

anyway, correct values vary and windows uses 16,32,48 and colors 16, 256

these viewed from explorer.exe only.
_________________________
!

download KiXnet

Top
Page 7 of 8 « First<45678>


Moderator:  Arend_, Allen, Jochen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Mart 
Hop to:
Shout Box

Who's Online
0 registered and 920 anonymous users online.
Newest Members
Timothy, Jojo67, MaikSimon, kvn317, kixtarts2025
17874 Registered Users

Generated in 0.078 seconds in which 0.028 seconds were spent on a total of 12 queries. Zlib compression enabled.

Search the board with:
superb Board Search
or try with google:
Google
Web kixtart.org