Search found 94 matches

by keneanung
Fri Feb 17, 2012 9:13 am
Forum: Help Forum
Topic: Problem with matches[2]
Replies: 7
Views: 5562

Re: Problem with matches[2]

I didn't look very deep into it, but it might be due to expandAlias. There the matches table gets overwritten (as a new regex is being evaluated).
by keneanung
Mon Feb 13, 2012 10:05 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

And I did fiddle with tabs now. I got the callback wrapper working, but the documentation seems a bit off there. The Callback property is lowercase and the CallbackArguments are labeled as "callback_args" in the docs.
by keneanung
Mon Feb 13, 2012 9:08 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

Hrm... I added the color to the Frame and echoed to it, but it is still grey. The Stylesheet shows green as color though...

Oh, wait... After a Vyzor.HUD:Draw() it showed up correctly. So we need to call draw after each change to the Stylesheet?
by keneanung
Sun Feb 12, 2012 9:21 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

The echoes work perfectly for minicinsoles. So nothing to complain there. And I've been fiddling with those colored echoes, so I didn't get far with the chats I fear.
by keneanung
Sun Feb 12, 2012 8:37 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

All right, I played around with Vyzor a little and it seems, that only the colored echo functions don't work on frames. The text is echoed, but without color. But neither the wrapped nor the normal functions show colors on frames. Are the frames "normal" mudlet Labels? Basically my questio...
by keneanung
Wed Feb 08, 2012 7:52 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

The GUI is drawing correctly with the exception of the tabs. The Chat console starts correctly below the place where the headings_frame should be.

There are no errors showing up at all. Is there a way to echo the contents of a frame?
by keneanung
Wed Feb 08, 2012 5:46 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

But frames.tab_frames is not. I confirmed the iteration by using an echo( frame.Name) and all names were present.
by keneanung
Tue Feb 07, 2012 9:09 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

Hmm... I seem to be diong something wrong and I can't find it... I added this to the "Frames" of the sample Gui skript: SampleGui.Frames = SampleGui.Frames or { -- ... headings_frame = Vyzor.Frame("headings_frame", 0, 0, 1, .05), -- ... tab_frames = {} } for key, name in ipairs(t...
by keneanung
Fri Feb 03, 2012 6:50 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

Oneymus wrote:And, yes, I can wrap the remaining relevant API calls.
Yay! Thanks.

And the default idea soounds good.
by keneanung
Thu Feb 02, 2012 8:22 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 266140

Re: Vyzor, UI Manager for Mudlet [Beta?]

That seems to be the most reasonable solution. But what would be default behavior? On another note, are you planning to make OO wrapping of GUI specific Mudlet funtions? It would ease some things and finish the current class/object design of Vyzor. I mean, an object should encapsulate all methods of...