We would like to build a community for Small Basic programmers of any age who like to code. Everyone from total beginner to guru is welcome. Click here to register and share your programming journey!


sm4llprogrammer2008
(Junior Member)
**

Registration Date: 04-18-2025
Date of Birth: Not Specified
Local Time: 07-18-2025 at 07:31 AM
Status: Offline

sm4llprogrammer2008's Forum Info
Joined: 04-18-2025
Last Visit: 07-10-2025, 08:13 PM
Total Posts: 46 (0.51 posts per day | 2.15 percent of total posts)
(Find All Posts)
Total Threads: 26 (0.29 threads per day | 12.75 percent of total threads)
(Find All Threads)
Time Spent Online: 14 Hours, 11 Minutes, 48 Seconds
Members Referred: 0
Total Likes Received: 19 (0.21 per day | 1.79 percent of total 1060)
(Find All Threads Liked ForFind All Posts Liked For)
Total Likes Given: 10 (0.11 per day | 0.94 percent of total 1060)
(Find All Liked ThreadsFind All Liked Posts)
Reputation: 1 [Details]
  
sm4llprogrammer2008's Most Liked Post
Post Subject Post Date/Time Numbers of Likes
Oh my gosh!! 04-19-2025, 05:48 PM 3
Thread Subject Forum Name
Oh my gosh!! Small Basic
Standard Small Basic
Post Message
I've made a media player w/ Small Basic!! Requirements: LitDev 1.2.30.0 Beta and higher ID: FMBV557.000 Link: https://smallbasic.com/program/?FMBV557.000 Code: -- Init() Sub Init     GraphicsWindow.BackgroundColor = "#FF408080"     GraphicsWindow.Title = "Untitled Small Media Player Window"   GraphicsWindow.BrushColor = "Black"   GraphicsWindow.FontName = "MS Gothic"   SlFlBtn = Controls.AddButton("Select File",20,140)   Controls.SetSize(SlFlBtn,101,25)     PlayBtn = Controls.AddButton("Play",20,170)   Controls.SetSize(PlayBtn,101,25)     GraphicsWindow.BrushColor = "#FF000040"   GraphicsWindow.PenColor = "#FF000040"   Overlay = Shapes.AddRectangle(530,290)   Shapes.Move(Overlay,220,100)     GraphicsWindow.BrushColor = "Black"   GraphicsWindow.FontName = "Times New Roman"   GraphicsWindow.FontBold = "False"   NmWnTb = Controls.AddTextBox(20,100)   Controls.SetTextBoxText(NmWnTb,"")   Controls.SetSize(NmWnTb,100,25)     GraphicsWindow.FontName = "MS Gothic"   GraphicsWindow.FontBold = "True"   SubmitBtn = Controls.AddButton("Submit",140,100)   Controls.SetSize(SubmitBtn,51,25)     GraphicsWindow.FontName = "Ubuntu Mono"   GraphicsWindow.FontBold = "False"   LabelNmWn = Shapes.AddText("Name Window:")   Controls.SetSize(LabelNmWn,87,15)   Shapes.Move(LabelNmWn,20,80)     GraphicsWindow.BrushColor = "#FFFFFF80"   GraphicsWindow.FontName = "Segoe UI"   GraphicsWindow.FontBold = "True"   GraphicsWindow.FontSize = 24   Logo = Shapes.AddText("Basic Media Player")   Controls.SetSize(Logo,220,30)   Shapes.Move(Logo,0,0)   GraphicsWindow.FontBold = "False"     GraphicsWindow.BrushColor = "Black"   GraphicsWindow.FontName = "MS Gothic"   GraphicsWindow.FontSize = 12   GraphicsWindow.FontBold = "True"   AboutBtn = Controls.AddButton("About",230,10)   Controls.SetSize(AboutBtn,51,25)     LicenseBtn = Controls.AddButton("Licensing",290,10)   Controls.SetSize(LicenseBtn,71,25)     MediaPlayer = LDControls.AddMediaPlayer(530,290)   Shapes.Move(MediaPlayer,220,100)     PauseBtn = Controls.AddButton("Pause",20,200)   Controls.SetSize(PauseBtn,101,24.5)     LDControls.MediaPlayerEnded = Pause   Controls.ButtonClicked = Onclick   EndSub   Sub Pause     LDControls.MediaPlayerPause(MediaPlayer)   EndSub   Sub Onclick     last = Controls.LastClickedButton     If last = SubmitBtn Then       windowname = Controls.GetTextBoxText(NmWnTb)       GraphicsWindow.Title = windowname     ElseIf last = LicenseBtn Then       GraphicsWindow.ShowMessage("GPLv3", "")     ElseIf last = AboutBtn Then       GraphicsWindow.ShowMessage("You have the right to modify and republish the altered software. Created by sm4llprogrammer2008", "")     ElseIf last = SlFlBtn Then       getfile = LDDialogs.OpenFile("1=png;2=jpg;3=mp3;4=wav;5=mp4","")     ElseIf last = PlayBtn Then       LDControls.MediaPlayerLoad(MediaPlayer, getfile)       LDControls.MediaPlayerPlay(MediaPlayer)     ElseIf last = PauseBtn Then       LDControls.MediaPlayerPause(MediaPlayer)     EndIf   EndSub -- Feel free to expand, again!

sm4llprogrammer2008's Received and Given Likes
  Likes Received Likes Given
Last week 0 0
Last month 5 5
Last 3 months 19 10
Last 6 months 19 10
Last 12 months 19 10
All Time 19 10
 
Most liked by
AbsoluteBeginner 8 42%
litdev 6 32%
z-s 5 26%
 
Most liked
litdev 4 40%
AbsoluteBeginner 3 30%
z-s 3 30%