Search found 26 matches

by takilara
Fri Nov 06, 2020 10:31 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove [solved]

10 profiles? Someone is controlling a robot army ;) Two robot armies soon😁 and mostly they control themselves. (Such is the power of Mudlet). I love the event system 🙂 i do need to improve my gui though, hence this thread 😁 (I have woken up to dead armies a couple of times though, but that has alwa...
by takilara
Fri Nov 06, 2020 3:08 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove [solved]

fairly frequent crashes while using the builtin editor. Hi takilara, could you please elaborate? Mudlet should never crash on you, especially not during regular tasks. :o If you think you've found a bug, please enter details here or on https://github.com/Mudlet/Mudlet/issues/new Hi Zaphob, The cras...
by takilara
Thu Nov 05, 2020 2:29 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove [solved]

Thanks, I like that last proposal, Indeed i think i would prefer that for my own settings due to fairly frequent crashes while using the builtin editor. However i believe i saw in a different thread that most packet maintainers were moving away from imported files in preference of mudlet editable sc...
by takilara
Mon Nov 02, 2020 6:52 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove [solved]

Yes this should work, (i just need to change my initial creation code to understand if the gauge exists or not, then use add instead of new if it has already been created). I have always had a name, plus an object reference. I am not certain of the significance of the name though, as i would belive ...
by takilara
Sun Nov 01, 2020 11:10 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

Update: got it to work now, using first gaugeObject:hide(), then containerObj:remove(gaugeObject) caused correct removal and resize of the container object.
Now on to utilizing the Elasticity :)
Thanks alot for the help!
by takilara
Sun Nov 01, 2020 11:01 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

ok thanks, sorry for being so dense:) I have stripped down my settings massively so i can try to get this sorted :) (GUI programming is not my favourite thing :) havent found a "safe" way to reset the gui, so doing it in an offline profile... To summarize: :hide() is needed on the gauge to...
by takilara
Sun Nov 01, 2020 10:29 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

oh, so hide first, then :remove?

I hope i wont cause a memory leak this way though, if i keep holding endless amounts of gauges. I guess i might want to try to reuse before create new then?
possibly not even remove them, only hide....?
by takilara
Sun Nov 01, 2020 6:57 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

Sounds like the Elasticity is exactly what i want :) However, i am still not able to remove the gauges, it seems i am leaving references alive somehow. E.g. after removal of the gauge, it will still show, but show/hide on the container will no longer affect the "removed" gauge. (e.g. if i ...
by takilara
Fri Oct 30, 2020 3:27 pm
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

I have gotten some progress! First, the SortBox seems to work very well. Nice work! Now im tempted to look into the timer gauges also :) Second, I think the main issue was how i was using remove. I was trying to either use Geyser:remove(<fullreferencetogauge>), or <fullreferencetogauge>:remove() How...
by takilara
Fri Oct 30, 2020 8:18 am
Forum: Help Forum
Topic: Geyser VBox add and remove [solved]
Replies: 20
Views: 30779

Re: Geyser VBox add and remove

Thanks! this looks like just what i'm looking for! Thanks also to the pointer to the MDK, I scanned through, and there are several nice items in there i can use for other things:) I havent had a chance to try to implement yet, but I took a quick look at the SortBox wiki and api docs. I think i grasp...