Search found 414 matches

by Akaya
Wed May 13, 2015 3:43 pm
Forum: Help Forum
Topic: Delete window/label?
Replies: 10
Views: 9424

Re: Delete window/label?

You could create both icon bars and have a toggle that hides one when the other is shown. Hide and show will not recreate the labels.
by Akaya
Mon May 04, 2015 5:44 am
Forum: Help Forum
Topic: Delete window/label?
Replies: 10
Views: 9424

Re: Delete window/label?

No. Once creating, there is no deleting a label. It is best to recycle them. What is it you're trying to do where they must be deleted?
by Akaya
Sat May 02, 2015 8:11 am
Forum: Help Forum
Topic: Install ttf font?
Replies: 3
Views: 3110

Re: Install ttf font?

You can include it in a package but the user will still have to install it.
by Akaya
Thu Apr 30, 2015 4:39 am
Forum: Help Forum
Topic: the issue at hand
Replies: 1
Views: 1976

Re: the issue at hand

Trying to narrow it down... looks like it might have to do with Geyser.HBox? The issue seems to reoccur with labels placed within a mixture of vboxes and hboxes? Not quite certain.
by Akaya
Wed Apr 29, 2015 11:38 pm
Forum: Help Forum
Topic: the issue at hand
Replies: 1
Views: 1976

the issue at hand

I've created the following with the Geyser Framework on Mudlet 3.0 delta using Windows 8 ... http://i.imgur.com/Grh0Bhm.png The columns should align with the header as the column's container and the header's container are the same size. But as you can see, they do not. This 'gap' will change in size...
by Akaya
Thu Apr 16, 2015 11:10 pm
Forum: General Forum
Topic: I would like this trigger to fire more than once on a line
Replies: 5
Views: 13472

Re: I would like this trigger to fire more than once on a li

it matches the first occurrence you'll need to have it match 3 times from the line provided
by Akaya
Thu Apr 16, 2015 11:08 pm
Forum: Help Forum
Topic: Strikethrough?
Replies: 5
Views: 3962

Re: Strikethrough?

CSS is able to do this on a label. When I get home I'll post the syntax. Or you can search the Qt documentation.
by Akaya
Thu Apr 16, 2015 3:48 pm
Forum: Help Forum
Topic: Script Help - Busy Wait and If Statements
Replies: 7
Views: 6855

Re: Script Help - Busy Wait and If Statements

Here's a bit more info on the tempTimer function and how it works: http://wiki.mudlet.org/w/Manual:Introduction#Timers
by Akaya
Tue Apr 14, 2015 4:08 pm
Forum: Help Forum
Topic: Script Help - Busy Wait and If Statements
Replies: 7
Views: 6855

Re: Script Help - Busy Wait and If Statements

Here's the proper way to set up a for loop.
Code: [show] | [select all] lua
-- this will send go west 7 times
for i=1, 7 do
  send("go west")
end
And here is a tempTimer, equivalent to the wait command.
Code: [show] | [select all] lua
-- this will send go west after a 7 second delay
tempTimer( 7, [[send("go west")]])