Search found 88 matches

by JustinJack
Sat Dec 14, 2013 6:54 am
Forum: Coding Questions
Topic: Video chat
Replies: 7
Views: 4194

Re: Video chat

Hey. Sorry if this is sloppy. Writing this quickly from my phone. I have written SIP VoIP clients, from start to finish, rtp mixers for conferencing and echo cancellation code in pb and in c. No libs.

I'd be happy to help you with this. The only bit I don't know off the top of my head is the ...
by JustinJack
Sat May 04, 2013 10:41 pm
Forum: Linux
Topic: How do you get command-line arguments in linux?
Replies: 16
Views: 10534

Re: How do you get command-line arguments in linux?

Si, Signore. I suspect you may be correct. Maybe we should all speak (learn?) esperanto. Ha. Anyway. What I meant was "Thank you". Have a good weekend, Luis. This has been too much social media for me, since I don't even have a facebook account. I guess I'll check this thread around this time next ...
by JustinJack
Sat May 04, 2013 7:05 pm
Forum: Linux
Topic: How do you get command-line arguments in linux?
Replies: 16
Views: 10534

Re: How do you get command-line arguments in linux?

And, by-the-way...the after-a-year deal. (shrug)...I just found it. But I know a *heck* of a lot more now than I did then...so I will peruse some threads and see if I can answer anyone's questions without asking them what their problem is...I dunno...I'll try!
by JustinJack
Sat May 04, 2013 7:02 pm
Forum: Linux
Topic: How do you get command-line arguments in linux?
Replies: 16
Views: 10534

Re: How do you get command-line arguments in linux?

Oh my goodness. You guys really crack me up. Seriously. In Texas jalepenos are popular. A spicy jalapeno is the best kind. So if a Texan calls you a "spicy jalapeno" that's a compliment. If you respond to a compliment, (heck anything) with "What's your problem?", no matter where you're from, that ...
by JustinJack
Sat May 04, 2013 12:27 am
Forum: Linux
Topic: How do you get command-line arguments in linux?
Replies: 16
Views: 10534

Re: How do you get command-line arguments in linux?

My problem? Probably that you need to take ESL...(eyes rolling...) But thanks for the help, mein kompf.
by JustinJack
Wed Oct 03, 2012 2:58 pm
Forum: Coding Questions
Topic: Enum / Change audio output device? (Windows)
Replies: 5
Views: 2881

Re: Enum / Change audio output device? (Windows)

Hey, man, NO problem. I'm glad it helps you!
by JustinJack
Tue Oct 02, 2012 6:35 pm
Forum: Tricks 'n' Tips
Topic: Enum / Change sound device playing WAV sound. [WINDOWS]
Replies: 0
Views: 1141

Enum / Change sound device playing WAV sound. [WINDOWS]

Here is something that is VERY helpful to me, I've been needing it for a while, and it may help others.

http://www.purebasic.fr/english/viewtop ... 13&t=51550
by JustinJack
Tue Oct 02, 2012 6:33 pm
Forum: Coding Questions
Topic: Enum / Change audio output device? (Windows)
Replies: 5
Views: 2881

Re: Enum / Change audio output device? (Windows)

By the way, I didn't spend a lot more time on this library before posting it on making sure it loops or splitting the RIFF 'data' into multiple buffers, or making my volume constants accurate for that matter, but if anyone wants to tinker with it and re-post for others, that would be great.
by JustinJack
Tue Oct 02, 2012 6:26 pm
Forum: Coding Questions
Topic: Enum / Change audio output device? (Windows)
Replies: 5
Views: 2881

Re: Enum / Change audio output device? (Windows)

Why...THANK YOU JUSTIN! :D
by JustinJack
Tue Oct 02, 2012 6:26 pm
Forum: Coding Questions
Topic: Enum / Change audio output device? (Windows)
Replies: 5
Views: 2881

Re: Enum / Change audio output device? (Windows)

Hello, Justin. I've been watching this thread, and since no one seems to have a quick and easy answer for you, I figured I'd give you some help. Here is the solution to your problem. A small library that for your purposes, works like the PB sound library, BUT it allows you to select an audio output ...
by JustinJack
Mon Oct 01, 2012 5:24 am
Forum: Coding Questions
Topic: Enum / Change audio output device? (Windows)
Replies: 5
Views: 2881

Enum / Change audio output device? (Windows)

Hello, everybody. Does anyone know of an easy way to enumerate, and change the audio device that playsound() uses. I want to ONLY redirect the audio that my PB program is playing and leave system sounds wherever they may be.

I am hoping that there will be an easy fix, and I wont have to go all API ...
by JustinJack
Sun Aug 26, 2012 10:03 pm
Forum: Tricks 'n' Tips
Topic: Very cool menu! Feel free to play! [WINDOWS]
Replies: 16
Views: 5892

Re: Very cool menu! Feel free to play! [WINDOWS]

Same way I maintain ALL my code with so few comments! It's a pain in the butt. I'm terrible about that.
by JustinJack
Wed Aug 22, 2012 5:50 pm
Forum: Tricks 'n' Tips
Topic: Very cool menu! Feel free to play! [WINDOWS]
Replies: 16
Views: 5892

Re: Very cool menu! Feel free to play! [WINDOWS]

The Transparent-Menu, can be drawn with or without a border, to use it full-screen, just set the bound of it as full screen, then you can use a regular window, or a borderless window, or any kind. It just draws itself over whatever you've specified as the parent window.

*** EDITED ***

I just made ...
by JustinJack
Wed Aug 22, 2012 5:47 pm
Forum: Tricks 'n' Tips
Topic: Very cool menu! Feel free to play! [WINDOWS]
Replies: 16
Views: 5892

Re: Very cool menu! Feel free to play! [WINDOWS]

Now run THIS sample program that uses "Transparent-Menu.pb"


IncludeFile "Transparent_Menu.pb"
IncludeFile "jelly_window.pb"

NewList miList.CUSTOM_MENU()


GetWindowRect_(GetDesktopWindow_(), @rcDesktop.rect ) ;----

myWindow = Create_Jelly_Window(rcDesktop\right-rcDesktop\left, rcDesktop\bottom ...
by JustinJack
Wed Aug 22, 2012 5:46 pm
Forum: Tricks 'n' Tips
Topic: Very cool menu! Feel free to play! [WINDOWS]
Replies: 16
Views: 5892

Re: Very cool menu! Feel free to play! [WINDOWS]

@J@ckWhiteIII
Include this file in your project as: "Jelly_Window.pb"


;- Jelly Window Library
;- by Justin Jack

Enumeration
#DT_UNDERLINED = 4
EndEnumeration

Structure MOVE_TO
x.i
y.i
cx.i
cy.i
cxAdjust.i
bounceback.i
iNumSteps.i
iStepCounter.i
iRemainder.i
bIsAnimating.b ...