Page 1 of 8 12345>Last »
Topic Options
#95548 - 2002-11-17 08:36 PM Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Jooel - you around today ?
Top
#95549 - 2002-11-17 08:38 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
not sure how long, but yeah.
_________________________
!

download KiXnet

Top
#95550 - 2002-11-17 08:42 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Theres a web site that has all the icons that I want to embed into Kixforms ... heres the link:

http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/

This has to be the best site I've ever seen that has the type of icons we need. All the standard MS icons are there ... its awesome.

I've already grabbed a handfull but its real slow going - and Im worried that the link will disappear ...

Is there any way that you can script an FTP to this page (whatever) to download all the icons into a zip archive ?

Would owe you big-time if possible.

Top
#95551 - 2002-11-17 08:44 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Or this there something im forgetting about - is this feature already in IE ?
Top
#95552 - 2002-11-17 08:52 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
can't with ftp:
ftp://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/

but maybe with tiny xmlhttp-code
_________________________
!

download KiXnet

Top
#95553 - 2002-11-17 08:56 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Is there a way to save this page and links as some sort of offline content ?
Top
#95554 - 2002-11-17 09:04 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
hmmm, think im getting it ...
Top
#95555 - 2002-11-17 09:05 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
I setup this page as offline content in Syncronization ... then set the "deepness" to 1 - one level deep - looks as if its ftp'ing all the icons one level deep to my wkstn ... this might be actually working ...
Top
#95556 - 2002-11-17 09:15 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
hmmm, maybe no worky after all - looks as if all the links just point back the site.
Top
#95557 - 2002-11-17 09:25 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Thanks Jooel - got em !
Top
#95558 - 2002-11-17 09:31 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
damn, just got ready writing you a collector.
the reason why they didn't show up was that they were relative links.
well, good that you got it anyway...
_________________________
!

download KiXnet

Top
#95559 - 2002-11-17 09:35 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
eh, will post it anyway.
code:
$file=open(1,@scriptdir+"\page.htm",5)
$file=writeline(1,"<html><body>@crlf")
$=createobject("microsoft.xmlhttp")
$.open("get","http://www.gelos.de/publik/Grafik/Glyphs/ToolButtons/",not 1)
$.send
$page=$.responsetext
$page=split($page,'<A href="')
for $c=2 to ubound($page)
$page[$c]=split($page[$c],'">')
$page[$c]=$page[$c][0]
$file=writeline(1,'<img src="http://www.gelos.de'+$page[$c]+'">@crlf')
next
$file=writeline(1,"</body></html>")
$file=close(1)

to view the list, just open the page.htm in @scriptdir.
to load the files, should happen just by saving as full web page.
_________________________
!

download KiXnet

Top
#95560 - 2002-11-17 09:59 PM Re: Jooel - need your web scripting expertise
Schuliebug Offline
Hey THIS is FUN
*****

Registered: 2002-01-18
Posts: 379
Loc: Netherlands
Shawn,

Nice icon/bitmap site [Smile] If you got them, could you mail me the archive please please (i'm laisy, i know [Wink] )..
_________________________
Kind regards,

Top
#95561 - 2002-11-17 10:15 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
so, my code does not please [Frown]
_________________________
!

download KiXnet

Top
#95562 - 2002-11-17 10:15 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Just altered udfCollector.pl some and now have 481 bitmaps. [Smile]

I think I need to see if I can distill this down to something generic.
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95563 - 2002-11-17 11:02 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
sorry - the wifey is really whipping me today - the olde honey do this and honey do that routine ... howard, have you managed to download any thing substancial - this is real painfull on my side - im trying to extract stuff out of my temp. inet. cache using explorer cut and paste and its killing me ...
Top
#95564 - 2002-11-17 11:03 PM Re: Jooel - need your web scripting expertise
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, speaking of what?
did you try my code?
_________________________
!

download KiXnet

Top
#95565 - 2002-11-17 11:05 PM Re: Jooel - need your web scripting expertise
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Shawn, you have mail.
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#95566 - 2002-11-17 11:13 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Howard - not sure why this would be - but most of the icons are corrupted - they are skewed by more than a few pixels, for example:

web-back.bmp

Top
#95567 - 2002-11-17 11:15 PM Re: Jooel - need your web scripting expertise
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Jooel - what am I supposed to do with the generated list ?
Top
Page 1 of 8 12345>Last »


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

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

Generated in 0.073 seconds in which 0.025 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