Search found 18 matches

by Lush
Wed Feb 26, 2014 4:09 pm
Forum: Applications - Feedback and Discussion
Topic: GNU Rocket for PureBasic
Replies: 5
Views: 3768

Re: GNU Rocket for PureBasic

Hello!

I made a video of the demo and the editor running side by side:
http://www.youtube.com/watch?v=Sb34lU7c4KU

And a snapshot of the video in case you can't play videos:
https://dl.dropboxusercontent.com/u/24704148/pbrocket_demo.jpg

I also made a "demo pack" (for Windows) with the demo ...
by Lush
Sat Feb 22, 2014 11:34 pm
Forum: Applications - Feedback and Discussion
Topic: GNU Rocket for PureBasic
Replies: 5
Views: 3768

Re: GNU Rocket for PureBasic

Thanks Fred, I had overlooked that line from the doc: "On Windows, binding only to the localhost avoid to trigger the built-in firewall."

Changes made and repository updated. :)
by Lush
Sat Feb 22, 2014 9:24 pm
Forum: Applications - Feedback and Discussion
Topic: GNU Rocket for PureBasic
Replies: 5
Views: 3768

Re: GNU Rocket for PureBasic

As written in the README, the demo and the editor communicate through a network connection, it's rather good news your firewall noticed it :)
by Lush
Sat Feb 22, 2014 8:14 pm
Forum: Applications - Feedback and Discussion
Topic: GNU Rocket for PureBasic
Replies: 5
Views: 3768

GNU Rocket for PureBasic

Hello!

I've been working on a PureBasic port of GNU Rocket and I think it's finally usable so I made a git repo (my first one!) to host it: https://github.com/Dartcode/pbrocket

In case you don't know what the original Rocket is, it's a tool to help you synchronize your demo effects/scenes with ...
by Lush
Sun Jan 19, 2014 2:36 am
Forum: Coding Questions
Topic: SetSoundPosition() limitations?
Replies: 4
Views: 1533

Re: SetSoundPosition() limitations?

Thanks luis, bug reported ;)
by Lush
Sun Jan 19, 2014 1:22 am
Forum: Coding Questions
Topic: SetSoundPosition() limitations?
Replies: 4
Views: 1533

Re: SetSoundPosition() limitations?

Thanks for testing, luis :)

Using frames and changing my formula from "sec x 1000" to "sec x 44100" seems to do the trick.
(44100 being returned by GetSoundFrequency() )
by Lush
Sat Jan 18, 2014 6:31 pm
Forum: Coding Questions
Topic: SetSoundPosition() limitations?
Replies: 4
Views: 1533

SetSoundPosition() limitations?

Hello,

I'm using PureBasic 5.21 LTS. I'm trying to set the play position of a song and I can't set it past 25 seconds or so.

When I use higher values, the position retrieved with GetSoundPosition() loops and start from 0 again.

I tried with various .wav and .ogg files but there's no difference ...
by Lush
Thu May 23, 2013 2:31 am
Forum: Linux
Topic: Compiled executable doesn't work on a clean Ubuntu 13.04
Replies: 2
Views: 2412

Re: Compiled executable doesn't work on a clean Ubuntu 13.04

Hello,

The executable bit is probably not set for your file. Move to the directory where the file resides (cd) and try:

Code: Select all

chmod +x proofingtoolgui_linux
You'll need to be either the owner of the file or root for this to work.
by Lush
Thu Mar 01, 2012 1:27 am
Forum: Off Topic
Topic: Why not make PureBasic Open Source ?
Replies: 91
Views: 25494

Re: Why not make PureBasic Open Source ?

have you actually read any open source licenses? :lol:
Well, yes I have but your question shows you missed the whole point once again: I wasn't talking about specific licenses terms but about the underlying philosophy of Open Source.

There's a difference between what people can do with open ...
by Lush
Wed Feb 29, 2012 5:45 pm
Forum: Coding Questions
Topic: Web Gadget Won't Load Page Fully
Replies: 6
Views: 1240

Re: Web Gadget Won't Load Page Fully

Tried it in PureBasic and on Chrome, Safari, Firefox and IE9 (in all IE7, IE8, IE9 and compatibility modes) on Windows 7.

Wouldn't display any banner at times (like 2/10 times) in every browser.

Also the banner is not part of the page, it's inside an iframe. So I think it's the website that's at ...
by Lush
Wed Feb 29, 2012 5:27 am
Forum: Off Topic
Topic: Why not make PureBasic Open Source ?
Replies: 91
Views: 25494

Re: Why not make PureBasic Open Source ?

Yes, SQLite is suffering wildly from their OpenSource decision. :wink:
Good grief...I only asked about the IDE and VD?
FWIW, I was only responding to the OP's question (Why not make PureBasic Open Source ?) and to Blood's vision that giving code for free to your competitors is the whole point of ...
by Lush
Wed Feb 29, 2012 2:06 am
Forum: Off Topic
Topic: Why not make PureBasic Open Source ?
Replies: 91
Views: 25494

Re: Why not make PureBasic Open Source ?

That's the whole point of open source! :lol:
The whole point?
I always thought the main point was to let the community improve and add to the original software for the benefit of both the company and the user community. I'm not really sure Fantaisie Software and the PureBasic community did benefit ...
by Lush
Sat Jul 02, 2011 5:53 pm
Forum: Coding Questions
Topic: Redirecting web file to local file?
Replies: 7
Views: 1686

Re: Redirecting web file to local file?

The "easy" way to achieve this would be to

1) redirect "http://www.purebasic.com" to 127.0.0.1 in Windows's HOSTS file
2) set up a web server with php (such as easyphp or wampserver)
3) have a local news.php file (plain text, no code necessary) to be served to your app

Depending on the kind of ...
by Lush
Sat Jul 02, 2011 3:36 pm
Forum: Coding Questions
Topic: Redirecting web file to local file?
Replies: 7
Views: 1686

Re: Redirecting web file to local file?

You could pass some variables to the php script and use them to perform a check (whatever calculations you want to make) and return the result.

You would do the same calculations in your PB app with the same values and compare the two results.

If they're different, tell the user there's a problem ...
by Lush
Sun Feb 20, 2011 9:21 pm
Forum: General Discussion
Topic: Software specialized in creating GUI screenshots ?
Replies: 9
Views: 1590

Re: Software specialized in creating GUI screenshots ?

Just tried it and Alt+PrintScreen captures the active window but not its shadow :?