Search found 475 matches

by SamuraiCrow
Wed May 09, 2018 7:32 pm
Forum: RapaGUI
Topic: Android support
Replies: 8
Views: 6523

Re: Android support

Although it is not prominently indicated in the documentation, the non-MUI platforms are supported using wxWidgets as a toolkit. You may find an answer at http://www.wxWidgets.org .
by SamuraiCrow
Mon Apr 16, 2018 5:19 am
Forum: Newbie questions
Topic: How tun run a command line application from Hollywood app
Replies: 8
Views: 7469

Re: How tun run a command line application from Hollywood ap

Have you tried string concatenation with the .. operator?
by SamuraiCrow
Fri Mar 30, 2018 10:58 am
Forum: MUI Royale
Topic: ListTree - attempt to get previous node
Replies: 3
Views: 3752

Re: ListTree - attempt to get previous node

Local winname$="windowtree-" .. PadNum(Windows:ReturnActiveWindow(),3) Local found, active = mui.DoMethod( winname$, "getentry", "active", "head", "" ) found, parent = mui.DoMethod( winname$, "getentry", active.muiid, "parent", &...
by SamuraiCrow
Sun Mar 11, 2018 7:23 pm
Forum: General programming
Topic: Icon for Linux app
Replies: 2
Views: 3127

Re: Icon for Linux app

I think not. The icons in the menu bars and launch bars appear to mostly be external PNG icons and there is no icon within a Linux executable for anything other than the default external executable icon.
by SamuraiCrow
Mon Feb 26, 2018 11:55 pm
Forum: Newbie questions
Topic: @IF preprocessor command
Replies: 2
Views: 3003

Re: @IF preprocessor command

Code: Select all

@IF #HW_ANDROID
@DISPLAY {TITLE="Blue Morpho - Lost in Space", MODE="FullScreenScale"}
@ELSE
@DISPLAY {MODE="Windowed", TITLE="Blue Morpho - Lost in Space"}
@ENDIF
should work. If you need the title defined once, use a const directive.
by SamuraiCrow
Sat Feb 17, 2018 10:28 am
Forum: General programming
Topic: Hollywood and Excel
Replies: 2
Views: 3543

Re: Hollywood and Excel

Export to a csv file in Hollywood or better yet, look up Office Open XML format family and export to Excel's own format. The hard part is the formula cells which use their own format. Importing XML is aided by the XML Parser plugin so reading data from Excel is possible. Note: Excel format is zip co...
by SamuraiCrow
Tue Feb 13, 2018 9:27 pm
Forum: General programming
Topic: Hollywood (Lua) to Swift converter?
Replies: 2
Views: 3275

Re: Hollywood (Lua) to Swift converter?

Updates: Since Swift is NOT a bytecode JIT language as I had assumed before, the possibility of running Hollywood Player may not be possible on iOS. Compiling a dedicated iOS executable using the Swift runtime entails an LLVM toolchain usage. Perhaps the first step would be to get Hollywood to run ...
by SamuraiCrow
Tue Feb 13, 2018 7:01 pm
Forum: General programming
Topic: Hollywood (Lua) to Swift converter?
Replies: 2
Views: 3275

Hollywood (Lua) to Swift converter?

Since Apple doesn't allow virtual machines with an interpreter other than one of theirs to be uploaded to the iOS app store, this limits the options for running Hollywood on iOS machines. The only way around it appears to be something to convert the Hollywood bytecode to Swift or Javascript, with th...
by SamuraiCrow
Mon Feb 12, 2018 4:50 pm
Forum: RebelSDL
Topic: SDL & Linux ARM
Replies: 31
Views: 38251

Re: SDL & Linux ARM

It appears to be a driver issue. The --vsync option on ./testgles and ./testgles2 did nothing and the framerate was stuck at 400+ FPS.
by SamuraiCrow
Mon Feb 05, 2018 8:01 pm
Forum: Newbie questions
Topic: Network Support and Video Playback
Replies: 5
Views: 6915

Re: Network Support and Video Playback

Have you tried the HTTPStreamer plugin?