Search found 5433 matches

by airsoftsoftwair
Sun May 18, 2014 11:29 pm
Forum: MUI Royale
Topic: Page Tabs (in general)
Replies: 9
Views: 11766

Re: Page Tabs (in general)

Will be possible once we have support for dynamic object creation in MUI Royale.
by airsoftsoftwair
Sun May 18, 2014 11:28 pm
Forum: MUI Royale
Topic: Listview Hide Row
Replies: 4
Views: 5507

Re: Listview Hide Row

You have to ask the MUI authors to implement row hiding first because currently it's not possible at all with MUI's list class :)
by airsoftsoftwair
Fri May 16, 2014 4:43 pm
Forum: General programming
Topic: alphachannel and 2 brushes
Replies: 1
Views: 3119

Re: alphachannel and 2 brushes

This has been requested many times and there'll be a solution for this in the next update.
by airsoftsoftwair
Fri May 16, 2014 4:43 pm
Forum: General programming
Topic: several questions
Replies: 4
Views: 5677

Re: several questions

are you working in a .lwo or similar plugin to show 3d objects for example? No. why the requester in the android version only show 3 options max? is not possible change it? I don't know what you mean... please elaborate... are you working in a compiler for android or aros arm, will be nice and fast...
by airsoftsoftwair
Fri May 16, 2014 4:41 pm
Forum: General programming
Topic: Append data to a file
Replies: 4
Views: 5828

Re: Append data to a file

Code: Select all

MyFilePos = 0
While Not EOF(2)
Seek(2,MyFilePos)
MyFilePos = MyFilePos +1
Wend
Phew, this code is really ugly! :) Just get the file size using FileSize() before opening the file and you're done...
by airsoftsoftwair
Thu May 15, 2014 10:59 pm
Forum: MUI Royale
Topic: ListView.Sort
Replies: 21
Views: 26980

Re: ListView.Sort

Will be added for next version.
by airsoftsoftwair
Thu May 15, 2014 10:59 pm
Forum: MUI Royale
Topic: Cut, Copy, Paste String Objects
Replies: 5
Views: 6914

Re: Cut, Copy, Paste String Objects

I think MUI offers this functionality for string gadget by default, but you cannot customize it (AFAIR).
by airsoftsoftwair
Thu May 15, 2014 10:57 pm
Forum: General programming
Topic: Append data to a file
Replies: 4
Views: 5828

Re: Append data to a file

You have to use #MODE_READWRITE and there's also a bug in the way you call Seek(). The constant #EOF is not recognized by Seek(). You have to pass an absolute seeking position.
by airsoftsoftwair
Sun May 11, 2014 3:10 pm
Forum: MUI Royale
Topic: empty window after mui-settings.
Replies: 24
Views: 23719

Re: empty window after mui-settings.

Well, your XML is flawed. You cannot use Window.Borderless together with attributes like Window.SizeGadget or Window.DepthGadget because these require a title bar which Window.Borderless actually turns off. Setting Window.Borderless to TRUE with attributes that require a title bar is asking for trou...
by airsoftsoftwair
Sun May 11, 2014 2:47 pm
Forum: MUI Royale
Topic: Window.PubScreen
Replies: 2
Views: 3667

Re: Window.PubScreen

This is just the way MUI works. The original MUIA_Window_PublicScreen attribute doesn't do immediate promotion either, so MUI Royale is just consistent here.