Subscribe to library updates

Erel

B4X founder
Staff member
Licensed User
Longtime User
B4XTable: https://www.b4x.com/android/forum/t...chable-customizable-table.102322/#post-642085

SS-2019-02-05_13.01.57.png
 

Erel

B4X founder
Staff member
Licensed User
Longtime User

hatzisn

Well-Known Member
Licensed User
Longtime User
I posted a new version of Social share library. The Enum SocialChannel was removed (because it was practically useless) and the library use has changed.

NHSocialShare library
 

DonManfred

Expert
Licensed User
Longtime User
Pdfium 1.02

Support for a Linkhandler. If you add a linkHandler YOU are responsible to Handle the Links.

B4X:
Sub Pdfium_LinkEvent(link As Map)
    Log($"Pdfium_LinkEvent(${link})"$)
    If link.ContainsKey("DestPageIdx") And link.Get("DestPageIdx") <> Null And link.Get("DestPageIdx") > -1 Then
        Log($"Internal Link in PDF clicked: Jump To Page ${link.Get("DestPageIdx")}"$)
        PDFView1.jumpTo(link.Get("DestPageIdx")) ' without this nothing will happen in the PDFView if the User clicks a internal link. 
    else if link.ContainsKey("Link") And link.Get("Link") <> "" Then
        Log($"External Link in PDF clicked: ${link.Get("Link")}"$)
        ' You can open the URL in a Webview, download the link, whatever....
    End If
End Sub
 

hatzisn

Well-Known Member
Licensed User
Longtime User
Added new features in the TTSFunctions

The voices functions require API 21 and more...

(1/3/2019)
* Changed the GetListOfAvailableLanguages function which now accepts the TTS package and returns the available language of the given TTS or accepts just "" for the default TTS.
* Added SpeakLongText function which speaks text without limit in length
* Added StopSpeakingLongText function to make the Speaking of a Long Text Stop
* Added SetVoice function which sets one of the voices you have got as a return from the function GetVoices. See the example of usage in the zip file
* Added GetVoices function which returns all the voices available in the TTS or just the voices of the given locale if we set the OnlyCurrentLocale boolean to true. See the example of usage in the zip file
* Added GetTTSCurrentLocale function which returns the current locale set to the TTS

See post #1 in https://www.b4x.com/android/forum/threads/ttsfunctions.94306
 

Alexander Stolte

Expert
Licensed User
Longtime User
[B4X] [XUI] AS Onboarding View
-V1.1
  • Add getNextButton
  • Add getBackButton
  • Add getSkipButton
  • Add getFinishButton
  • Add SwipeGesture swipe right to left to get next, or swipe left to right to get back
  • Add SwipeGesture Enable Property
  • Add Fix DesignerPropertys Description Texts
 
Top