Search found 10 matches

by JohnJohnsonSHERMAN
Fri Nov 11, 2016 3:30 pm
Forum: Coding Questions
Topic: Create Web App: Path-Question
Replies: 7
Views: 4742

Re: Create Web App: Path-Question

I dont have the Beta version, so it would be hard for me to help you in this case... :(
Could you try with "parent folder" path ("../")?
Example : if you've a 'wwwroot' folder containing a 'ressources' folder and your app's folder, the path should be "../ressources/"

I hope this will work, but I'm ...
by JohnJohnsonSHERMAN
Fri Nov 11, 2016 12:35 pm
Forum: Coding Questions
Topic: Create Web App: Path-Question
Replies: 7
Views: 4742

Re: Create Web App: Path-Question

You're welcome ! :)
by JohnJohnsonSHERMAN
Fri Nov 11, 2016 11:46 am
Forum: Coding Questions
Topic: Create Web App: Path-Question
Replies: 7
Views: 4742

Re: Create Web App: Path-Question

Try to use relative "internet" paths in the Javascript and Spiderbasic librairies fields.

In your example, you should have something like this :

Javascript filename : aah4.js
Spiderbasic librairies path : SpiderBasic

If you want to precise another path, use "/" instead of "\". I dont know if hard ...
by JohnJohnsonSHERMAN
Thu Nov 10, 2016 11:55 am
Forum: Coding Questions
Topic: how to make text in size bigger on text/button/frame gadget?
Replies: 3
Views: 2942

Re: how to make text in size bigger on text/button/frame gad

HTML code works also in a TextGadget.
TextGadget(0,0,0,200,30,~"This text is <b>bold</b> ! And this is an <a href=\"www.spiderbasic.com\">hyperlink to SB</a>...")
...so the use of <font size="[your_font_size]">Your amazing text here</font> is possible.
by JohnJohnsonSHERMAN
Wed Nov 09, 2016 1:15 pm
Forum: Feature Requests and Wishlists
Topic: Make label text copyable
Replies: 6
Views: 4375

Re: Make label text copyable

+1 for the option... And everyone will be happy ;)
by JohnJohnsonSHERMAN
Mon Nov 07, 2016 10:00 pm
Forum: Feature Requests and Wishlists
Topic: Make label text copyable
Replies: 6
Views: 4375

Re: Make label text copyable

Another method is to set the window as background with #PB_Window_Background. It works fine ...
OpenWindow(#PB_Any,0,0,200,60,"Example of selectable text", #PB_Window_Background)
TextGadget(#PB_Any,0,0,200,50,~"<font face = \"segoe ui\">You can Select this text And this <a href \"http://www.google ...
by JohnJohnsonSHERMAN
Tue Nov 01, 2016 11:43 am
Forum: Coding Questions
Topic: Full path with OpenFileRequester()
Replies: 4
Views: 3575

Re: Full path with OpenFileRequester()

It doesn't works for me :(
;
InitSound()

Procedure Play()
PlaySound(0)
EndProcedure

Procedure RequesterSuccess()

; Process all the selected filename
;
While NextSelectedFile()
Debug "Filename: " + SelectedFileName()
LoadSound(0,SelectedFileID())
Debug "Loading the sound..."
Wend ...
by JohnJohnsonSHERMAN
Mon Oct 31, 2016 4:16 pm
Forum: Coding Questions
Topic: Full path with OpenFileRequester()
Replies: 4
Views: 3575

Re: Full path with OpenFileRequester()

So, how applications like music converters or Google Drive file importer can upload files? Does it means that you've to read and copy the whole file in a known location (like "Data/somefiles.xxx") to be able, for example, to load a sound that the user selected in the OpenFileRequester?
by JohnJohnsonSHERMAN
Mon Oct 31, 2016 2:49 pm
Forum: Feature Requests and Wishlists
Topic: Full path with OpenFileRequester() and some ideas
Replies: 0
Views: 2580

Full path with OpenFileRequester() and some ideas

It would be great to have the full path of a file by using OpenFileRequester, for example to have a SelectedFilePath() function to return it while using NextSelectedFile() in the OpenFileRequester's callback. By the way, it would be easier to open local files (eg. : musics, documents or images to ...
by JohnJohnsonSHERMAN
Mon Oct 31, 2016 2:03 pm
Forum: Coding Questions
Topic: Full path with OpenFileRequester()
Replies: 4
Views: 3575

Full path with OpenFileRequester()

Hi all!
I was just trying to create a (basic) music player to discover SB, but when I use the OpenFileRequester() function, it gives me only the name of the file by using both SelectedFileName() and SelectedFileID() :( ... The full path is never returned, eg. if I had a file located like this : D ...