Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Entire forum
➜ MUSHclient
➜ Lua
➜ Hyperlinking and Dislocation
Hyperlinking and Dislocation
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Beale
(35 posts) Bio
|
Date
| Thu 11 Aug 2005 03:48 AM (UTC) Amended on Thu 11 Aug 2005 03:49 AM (UTC) by Beale
|
Message
| For lack of a colourpicker function, I created the following code:
function colourPicker( sCommandHead, sCommandFoot )
local iCount = 1
local arrColourList = {"maroon", "lightyellow","honeydew"--[[long colour list here]]}
for k, v in pairs(arrColourList) do
world.Hyperlink(sCommandHead .. v .. sCommandFoot, "#", v, v, "", false)
iCount = iCount + 1
if iCount == 11 then iCount = 1 world.Note("") end
end
end
What it should do:
Create a 17x10 grid of "#", each with a link to a variant of a command supplied as sCommandHead and sCommandFoot, containing the colour it is.
What it actually does:
Create a 17x10 grid of "#", each with a link to a variant of a command supplied as sCommandHead and sCommandFoot, containing the colour of the "#" one space to the right, with the right edge not being links, and the empty space to the left being the links to the variant with the left edge's colours.
Bizarre, no? Anyone got any ideas? | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
8,540 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top