View previous topic :: View next topic |
Author |
Message |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Fri Jul 16, 2004 8:26 am Post subject: hyperlink don't support colors |
|
|
can't set the color for hyperlink text, shawn can you fix that?
don't just mean the object's color property but mean vlink,alink and that sorta thing.
don't like the current near-black visited link color when my form background is black! _________________ Hammer |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Fri Jul 16, 2004 10:25 pm Post subject: |
|
|
Good idea, ya Basta ... I'm still waiting for you (or someone) to "discover" another enhancement request you made, a while back ... I "slipped" it into the dev. build but didn't mention it (hehee) ...
-Shawn |
|
Back to top |
|
 |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Fri Jul 16, 2004 11:28 pm Post subject: |
|
|
you basta! _________________ Hammer |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Sat Jul 17, 2004 1:09 pm Post subject: |
|
|
I added HyperLink.VisitedLinkColor to the latest dev. build.
[btw] that "other" request you made, the one I slipped it, is documented as a new object ;0) |
|
Back to top |
|
 |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Sun Jul 18, 2004 6:08 am Post subject: |
|
|
well, I found some objects that are my old requests but they are already implemented some time ago.
and I didn't even realize they were!
well, only thing that could have my watermark in the chm was the weird collection object but bet it wasn't that...
please do tell already! _________________ Hammer |
|
Back to top |
|
 |
Shawn KiXforms Developer


Joined: 22 Feb 2003 Posts: 1983 Location: Canada
|
Posted: Mon Jul 19, 2004 12:24 am Post subject: |
|
|
Ja dude - its that "Collection" or "Array-type" thingy you ask for, you basta ! Works like this:
break on
$System = CreateObject("Kixtart.System")
$c = $System.Collection()
$c.Add("Jooel")
$c.Add("is")
$c.Add("a")
$c.Add("Basta")
for each $item in $c
?"Item=" $item
next
exit 1
Can even provide "keys" to lookup items directly.
-Shawn |
|
Back to top |
|
 |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Mon Jul 19, 2004 6:57 am Post subject: |
|
|
$c = $System.Collection()
$c.Add("Shawn")
$c.Add("is")
$c.Add("The")
$c.Add("OLD")
$c.Add("Basta")
for $=0 to $c.count
?"Item=" $c.item($)
next
wasn't this what I was after when asked for it? _________________ Hammer |
|
Back to top |
|
 |
|