Search found 33 matches

by Alyven
Wed May 06, 2020 3:23 pm
Forum: Scripts & Packages
Topic: GUIDrop Drag and Drop Images onto Mudlet
Replies: 4
Views: 9206

GUIDrop Drag and Drop Images onto Mudlet

GUIDrop adds functionality to add images directly to Mudlet by Drag&Drop The script and luacode will be created automatically. It uses Adjustable Container with some extras. (check the custom menu) Once found the position you want the image at, it can be converted into a normal Geyser.Label and ...
by Alyven
Mon Apr 20, 2020 11:48 am
Forum: Help Forum
Topic: resetProfile being loaded multiple times
Replies: 5
Views: 4007

Re: resetProfile being loaded multiple times

A solution for that would be to make a tempAlias in you scripts.
I do it like this

Code: Select all

resetProfilAlias = resetProfileAlias or tempAlias("^rp$",[[resetProfile()]])
Like this the command rp would call resetProfile() and it works all the time
by Alyven
Mon Apr 20, 2020 7:43 am
Forum: Help Forum
Topic: resetProfile being loaded multiple times
Replies: 5
Views: 4007

Re: resetProfile being loaded multiple times

As you put the resetProfile() in an script in the Script-manager you even can call yourself lucky it didn't create a infinite loop as resetProfile() is also reloading the scripts. To use resetProfile() properply try to use the command lua resetProfile() in the commandline. Edit: Just noticed that it...
by Alyven
Thu Apr 09, 2020 6:27 am
Forum: Scripts & Packages
Topic: Adjustable Container
Replies: 3
Views: 5562

Re: Adjustable Container

Adjustable Containers will be added to Mudlet directly! There is also a new package (using Adjustable Containers) to allow Images to be added to Mudlet directly by Drag and Drop. Please test that one as well, it would be a nice addition. Link to the thread: https://forums.mudlet.org/viewtopic.php?f=...
by Alyven
Thu Feb 27, 2020 4:45 pm
Forum: Scripts & Packages
Topic: Adjustable Container
Replies: 3
Views: 5562

Re: Adjustable Container

--
by Alyven
Wed Feb 19, 2020 11:28 am
Forum: Scripts & Packages
Topic: Adjustable Container
Replies: 3
Views: 5562

Re: Adjustable Container

--
by Alyven
Thu Feb 06, 2020 9:34 am
Forum: Scripts & Packages
Topic: Adjustable Container
Replies: 3
Views: 5562

Adjustable Container

This script gives the possibility to create a new "class" which can act as a container for Geyser elements and makes them adjustable. By adjustable I mean that it is possible to minimize, load/save, move, adjust size, attach to borders... Youtube Video Introduction: https://youtu.be/GT2Sci...
by Alyven
Mon Feb 03, 2020 3:53 pm
Forum: Scripts & Packages
Topic: EMCO, the Embeddable Multi Console Object!
Replies: 20
Views: 39235

Re: EMCO, the Embeddable Multi Console Object!

Not at all.
Would be very nice.
I still don't know how to save the position.
by Alyven
Sat Feb 01, 2020 5:48 pm
Forum: Scripts & Packages
Topic: EMCO, the Embeddable Multi Console Object!
Replies: 20
Views: 39235

Re: EMCO, the Embeddable Multi Console Object!

Make Emco moveable by doubleclicking the first tab. Works for the example on the EMCO wiki. Change the values at emcos and container to make it work for your EMCO. local function getPosPercent() local wx, wy = getMainWindowSize() local mx, my = getMousePosition() perx = (mx / wx) * 100 -2 pery = (my...
by Alyven
Mon Oct 03, 2011 10:02 am
Forum: Scripts & Packages
Topic: Nestable Labels
Replies: 11
Views: 9316

Re: Nestable Labels

It looks really nice and with
Code: [show] | [select all] lua
Label:setStyleSheet([[
:hover{
 background-color: grey }
]])
you can change the color on mouseover :)