Search found 29 matches
- Sun Jun 04, 2023 1:33 pm
- Forum: RapaGUI
- Topic: VideoPlayer example not work
- Replies: 7
- Views: 4181
Re: VideoPlayer example not work
I think you need to install avcodec.hwp first. If avcodec.hwp isn't installed, the Video Player example will try to play the video using Windows' MediaFoundation system but that is not compatible with RapaGUI. RapaGUI only supports video playback using Hollywood's video renderer. Ok thanks. But bec...
- Thu Jun 01, 2023 2:24 pm
- Forum: RapaGUI
- Topic: VideoPlayer example not work
- Replies: 7
- Views: 4181
- Thu Jun 01, 2023 2:21 pm
- Forum: RapaGUI
- Topic: VideoPlayer example not work
- Replies: 7
- Views: 4181
Re: VideoPlayer example not work
I run script incuded in RapaGUI's examples
There would be no point in incuding it in library if didn't work in RapaGUI
There would be no point in incuding it in library if didn't work in RapaGUI
- Thu Jun 01, 2023 10:42 am
- Forum: RapaGUI
- Topic: VideoPlayer example not work
- Replies: 7
- Views: 4181
VideoPlayer example not work
When I try to play an mp4 file I get this error:
Error in line 241 (VideoPlayer.hws): This functionality is not available with this display adapter!
I run the script in:
Windows 11 64bit ver.22H2
Hollywood 10
RapaGUI 2.1
Error in line 241 (VideoPlayer.hws): This functionality is not available with this display adapter!
I run the script in:
Windows 11 64bit ver.22H2
Hollywood 10
RapaGUI 2.1
- Wed May 31, 2023 6:10 pm
- Forum: Newbie questions
- Topic: How to move window?
- Replies: 6
- Views: 3602
Re: How to move window?
I found a solution ChangeDisplaySize(newWidth, newHeight) moai.Set("mainwin","Open",True) This work and when I change display size window is reopen at position set in xml file. However I think it doesn't make much sense. The window is already open, so this command should have no ...
- Wed May 31, 2023 4:48 pm
- Forum: Newbie questions
- Topic: How to move window?
- Replies: 6
- Views: 3602
Re: How to move window?
I try to use command:
moai.Set("mainwin","top","centered")
but I receive this message:
Error in line 50 : Attribute "top" not recognized for this class!
So, the only way to change position of window is to do manually or to define it in the xml file?
moai.Set("mainwin","top","centered")
but I receive this message:
Error in line 50 : Attribute "top" not recognized for this class!
So, the only way to change position of window is to do manually or to define it in the xml file?
- Wed May 31, 2023 12:01 pm
- Forum: Newbie questions
- Topic: How to move window?
- Replies: 6
- Views: 3602
How to move window?
I use RapaGUI with one Display and I want to change position of Window when I use ChangeDisplaySize().
I try to use MoveDisplay() but not work and I have not found any instructions to perform this action.
I try to use MoveDisplay() but not work and I have not found any instructions to perform this action.
- Sun Feb 12, 2023 8:45 am
- Forum: General plugin questions
- Topic: XLSX Serialize/Deserialize
- Replies: 2
- Views: 5191
Re: XLSX Serialize/Deserialize
Ok thanks, i need a lot of work to convert json that i want 
- Sat Feb 11, 2023 12:50 pm
- Forum: General plugin questions
- Topic: XLSX Serialize/Deserialize
- Replies: 2
- Views: 5191
XLSX Serialize/Deserialize
I try to convert a Json file into XLSX file, for to do this i create this simple function Function p_SaveXLSX() Local f$ = moai.Get("file", "text") Local mTable = {} If f$ <>"" ;convert json file into table mTable = DeserializeTable(FileToString(f$), "Default"...
- Tue Feb 07, 2023 9:18 am
- Forum: Newbie questions
- Topic: MixBrush()
- Replies: 2
- Views: 1673
Re: MixBrush()
Ahh ok, thanks.