Jump to content

newsanti

uniGUI Subscriber
  • Posts

    319
  • Joined

  • Last visited

  • Days Won

    1

newsanti last won the day on March 30 2023

newsanti had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

newsanti's Achievements

Advanced Member

Advanced Member (4/4)

15

Reputation

  1. newsanti

    play video

    procedure TsnbxUnimCustomApp001MainForm.Run_PLAY(Sender: TObject); begin var oForm:= TMainmForm(Form); oForm.Image1.Visible:= False; var oFrame:= oForm.UnimHTMLFrame1; oFrame.HTML.Text:= '<!DOCTYPE html> '+ ' <html>'+ ' <body>'+ // ' <video id="video01" width= "100%" height="100%" controls muted loop autoplay>'+ ' <video id="video01" width= "100%" height="100%" muted loop autoplay>'+ ' <source src="files/video01.mp4" type="video/mp4">'+ ' </video>'+ ' </body>'+ ' </html> While Video Playing..if user Click on HTLMFrame (Video), How to Stop Playing? or How to Stop Playing with Code?
  2. How to setting image size (width,height) of TunimVideo.PosterURL?
  3. How to auto start video with tunimvideo? (at ClientSide unimForm.onShow) now, need click then play. procedure TMainmForm.UnimFormAfterShow(Sender: TObject); begin UnimVideo1.Play; //do not work end;
  4. Font: Noto Serif Thai Text: สิ้นงวด Text: รายไตรมาส
  5. After play youtube..How to stop playing?
  6. work.. if code with servermodule.create and mainmodule.create. not work (round3) if code with mainm.create. How to customize css in form at run-time ? (Update MainPain CSS at run-time) it work only refresh browser again. (After add CSS to ServerModule.CustomCSS>>work only new MainPage) runtimeCSS.zip
  7. constructor TMainmForm.Create(AOwner: TComponent); begin inherited; with UniServerModule.CustomCSS do begin Add('.Round1 {'); Add(' border-radius: 50px;'); Add('}'); end; TUniLayoutConfig(Panel1.LayoutConfig).Cls:= 'Round1'; end; Not work!
×
×
  • Create New...