Because Button is not vertically resizable.
You have to add a VSpace or Rectangle object before or/and after the button..
Search found 112 matches
- Wed Sep 16, 2020 7:20 pm
- Forum: RapaGUI
- Topic: Window Heigth not working why ?
- Replies: 1
- Views: 570
- Wed Aug 12, 2020 8:39 pm
- Forum: RapaGUI
- Topic: HTMLview Class on Android---Pinch Zoom
- Replies: 7
- Views: 1977
Re: HTMLview Class on Android---Pinch Zoom
How about adding more gestures?
Like swipe left/right in PageViews?
Or is it possible to add gestures myself?
Like swipe left/right in PageViews?
Or is it possible to add gestures myself?
- Sun Aug 09, 2020 2:56 pm
- Forum: Hollywood bugs
- Topic: RapaGUI: PageView object aren't in the cycle chain
- Replies: 1
- Views: 618
RapaGUI: PageView object aren't in the cycle chain
All but PageView objects are automatically in the cycle chain, so one could use Tab key to browse through them.
Would be nice to also have a PageView object in the cycle chain!
Would be nice to also have a PageView object in the cycle chain!
- Tue Aug 04, 2020 7:41 pm
- Forum: Hollywood bugs
- Topic: RapaGUI: progressbar and "max" attribute
- Replies: 4
- Views: 2243
Re: RapaGUI: progressbar and "max" attribute
Thanks for not giving up!
- Sat Jul 18, 2020 3:00 pm
- Forum: RapaGUI
- Topic: Copy and paste in text and textview
- Replies: 6
- Views: 2405
Re: Copy and paste in text and textview
For Text.mui objects you can set MUIA_Text_Marking to TRUE when creating the Textobject.
Then you are able to select (part of) the text. After releasing the mousebutton, it will be automatically copied to the clipboard!
Then you are able to select (part of) the text. After releasing the mousebutton, it will be automatically copied to the clipboard!
- Mon Jun 29, 2020 3:58 pm
- Forum: MUI Royale
- Topic: MUI under Android?
- Replies: 2
- Views: 1033
Re: MUI under Android?
No, you need to use RapaGUI as gui system
- Sat Jun 20, 2020 12:03 am
- Forum: RapaGUI
- Topic: Some features not supported on RapaGUI on Android!?
- Replies: 1
- Views: 671
Some features not supported on RapaGUI on Android!?
Hi, I noticed that the "frametitle" attribute for a HGroup and ColGroup doesn't work on my Android 10 phone. The frame is also missing for the ColGroup. The "accept" attribute for a TextEntry object isn't supported either, I set it to "0123456789,." but all other chars are accepted too. Is this a bu...
- Mon Jun 17, 2019 2:38 pm
- Forum: Newbie questions
- Topic: Math operator to return the same value regardless if it is minus or plus.
- Replies: 2
- Views: 1274
Re: Math operator to return the same value regardless if it is minus or plus.
I think what you are looking for is Abs()!
Code: Select all
distance = distance + Abs(C)
- Sun May 19, 2019 8:34 am
- Forum: Newbie questions
- Topic: List and strings
- Replies: 16
- Views: 7315
Re: List and strings
You have to use parenthesis:
Code: Select all
If not (loadedline$ = "unwanted") ;dont load this entry
InsertItem(myvar$, loadedline$)
EndIf
- Mon Apr 15, 2019 2:05 pm
- Forum: General programming
- Topic: How to know if a directory or Path is valid?
- Replies: 5
- Views: 2018
Re: How to know if a directory or Path is valid?
Have a look at this https://www.hollywood-mal.com/docs/html ... dling.html.
It doesn't helps you to check if the path is correct, but if the functions fails the script won't abort!
You can check the error yourself and message the user to choose a valid path.
It doesn't helps you to check if the path is correct, but if the functions fails the script won't abort!
You can check the error yourself and message the user to choose a valid path.