html

  1. jroriz

    Android Question [SOLVED] Creating a Server for HTML/JS Application Using B4A

    I created a page using an html/js framework (https://aframe.io). I will create an application from the html page. It turns out that the framework expects a server serving the page, as it uses relative paths, otherwise it won't work. To create the server I will use a third-party app...
  2. S

    Android Question Run local javasxcript file with html button

    Hello, I have a hard about my project. Only I get display in webview html file (not include javascript, css). In my Webview(Html code), the data input and a button include. When I click button, It does not work.So plese help and guide me. (The html, css and jacvascript file within same folder...
  3. M

    Can someone help me with B4PPC project (Webpage scraping)?

    I am aware that Windows Mobile and B4PPC are 'dead' for many years. Yet I still have a wonderful and fully operational Pocket PC Loox from Fujitsu that I would like to revive for a small project (instead of a Rasberry based one). In a separate thread ("Weather web service using HTTP") someone...
  4. walterf25

    B4J Question miniHtmlParser help

    Hi all, I have never used this library but I would like to try and parse the following URL here what I am trying to do is parse Opera Librettos, if you guys can check the URL you'll notice that there's the Original language and the translated which both are placed in a table, I am having a hard...
  5. Hackito

    Android Question WebView Error: ResponseError. Reason: , Response: <!DOCTYPE html>

    Hello. I'm trying to extract parts of web pages and load them into a webview, but for some reason it doesn't work. Please help! Error: ResponseError. Reason: , Response: <!DOCTYPE html> Private Sub CargarReparto Dim http As HttpJob http.initialize("", Me)...
  6. Patent

    B4J Question Difference in JS click() to mouseclick

    Hi community, wanna ask whats the difference (in a B4J WebView) in a real Mouseclick on a Button to one fired programmatically with Dim a as String = $"document.getElementsByClassName("myButton")[0].click();"$ myWebengine.RunMethod("executeScript", Array As String(a)) If i am clicking with...
  7. T201016

    B4J Question Creating MS Word Documents

    Hello everyone, Can Anyone help me convert the code of the four HTML text formatting tags to MS WORD format - I present below examples. It is supposed to be applied later, e.g .: Creating MS Word Documents shows @Erel as a great example đź‘Ť 1.EXAMPLE: <html dir="ltr"> <head></head>...
  8. G

    Android Question [Solved] Webview local html + css + js + images

    What I am trying to achieve: - download a zip file from a known URL - that zip file contains a html file + js + css + images (all files in the same folder) - I will then unzip the archive in : rp.GetSafeDirDefaultExternal("MYPAGE") or File.DirInternal - then I would like to open/show that...
  9. Guenter Becker

    B4A Library CustomView RichTextEditor

    OUTDATED! New Version to, have look here: RTFeditor Version 2021 | B4X Programming Forum Hello to all forum Members, I hope all of you are well. Looking through the forum I find the library SMMRichEditor. Playing around with it I started a new project to use this lib to build a custom view...
  10. MitchBu

    Android Question Printing PDF and HTML content on the same page ?

    I use the print library to print PDF content, as described at the post below. It works just fine. https://www.b4x.com/android/forum/threads/76712/#content Now, I need to print PDF on one part of the page, and HTML on the same page. Would it be possible to do that with the print library ?
  11. MitchBu

    Android Question Display pictures in an HTML iFrame

    I know how to display pictures in HTML, using code such as : <img src="file:///File.DirInternal/Default.jpg"> It works just fine, except when the same code is in an iFrame. It seems the HTML does not see the file. Any idea ? TIA
  12. P

    Android Question Very poor webview performance

    Hi I'm loading a local html in a webview, but the webview is extremely slow. I tried adding hardware accelerating to manifest, and everything else found in forum. But none of them worked. I uploaded my project. if that helps. Also there's only a webview in my activity. nothing else This is...
  13. KMatle

    Android Code Snippet HTML-Standalone QR-code generator for websites

    I placed it here as I use it with a B4A app... Sometimes you need a QR-code generator in your website (which is working together with B4x). I searched for a standalone creator which is easy to handle. I came to this site: QR-code generator. I uses Javascript to generate the QR-code. I've...
  14. bububrln

    Android Question How to clean invalid HTML to process with DOM parser?

    Hello everyone, I am a brandnew user and dare to ask my first question here. Please bear with me as I am a total beginner with all things regarding Android and B4A. :) I am trying to find my way into B4A by trying a few things out. Among them is this: I want to download a HTML file from the...
  15. MitchBu

    Android Question Access pics in file.dirassets from an html page.

    My help file is an html in File.DirAssets, which uses a dozen or so pictures and video. I don't seem to be able to address them in HTML, although they are in files.dirassets together with the html page. I suspect they are in compressed form, and need to be extracted somehow. I searched the...
  16. chris_selkis

    Android Question to read html with okhttputils 2 - character encoding

    Hello, sorry for my bad English. I'm using OkHttputils2 to download a text file and read it. this file contains html code. I display this code in a webview. it works well except for the characters "éèà% .." is there a library to read this encoding correctly? or how can I do it. thank you
  17. P

    B4J Question HTML data to SQL

    Hi everyone, I'm possibly being very slow here but web dev isn't something i've done much/any of... The aim is to try and get 2 text box inputs to be written to a database when a button is clicked. Dim tabParam As ResultSet = Main.IntSQL.ExecQuery("SELECT * FROM TabletParameters;") Dim...
  18. Brandsum

    Android Tutorial Load HTML to Label

    (Here is the iOS version) This is how you can set HTML data to Label (works only in release mode), Dependencies: StringUtils, jSoup, LabelExtras Here is the code, Dim extraHeight As Int = 0 'global variable (height of images) Dim htmlParser As Html 'global variable Dim jSoup As jSoup 'global...
  19. Brandsum

    iOS Tutorial Load HTML to Label

    (Here is the Android version) This is how you can set HTML data to Label, Public Sub SetHTML(l As Label, htmlString As String) Dim NaObj As NativeObject = Me NaObj.RunMethod("SetHTML::",Array(l,htmlString)) End Sub #if OBJC - (void)SetHTML: (UILabel*) Label :(NSString *) htmlString{...
  20. walterf25

    B4J Question BaNano JavaScript

    Hello everyone, first of all i apologize if this question is somewhat stupid, i honestly don't have much experience with HTML or JavaScript, i started playing around with BaNano library, I started wrapping the WebRTC library for android, but I wanted to see if i could create the WebRTC server...
Top