| View previous topic :: View next topic |
| Author |
Message |
Raymond175 Contributor


Joined: 24 Apr 2002 Posts: 72
|
Posted: Tue May 21, 2002 2:13 pm Post subject: A few more little questions... |
|
|
----- Question 1: A practical one...
Can you use more than 1 command on a line? Like:
IF @EQUAL(%I,10): %A = @SUCC(%A): END
or...
IF @EQUAL(I%,10) THEN %A = @SUCC(%A)
instead of using:
IF @EQUAL(%I,10)
%A = @SUCC(%I)
END
----- Question 2: Poll...
How many buttons do you have on your mouse? What would be the average? Two or three? Please answer this question, because I really need to know this and you soon become to know why .
----- Question 3: @MCI commands...
Using the @MCI commands, is it possible to set the bass, treble and balance or MP3-FILES? The commands are there but they do not seen to work with MP3-files. Is there a DLL-file which can set these options on a MP3 started with the MCI commands?
----- Question 4: Xaudio.dll commands...
Does somebody know the commands of the Xaudio DLL? I think this DLL has a lot of goodies but I cannot get it, unless I know the right commands.
Well, I think this is it for now!
Thanks,
-=Raymond=- |
|
| Back to top |
|
 |
LiquidCode Moderator Team
Joined: 05 Dec 2000 Posts: 1753 Location: Space and Time
|
Posted: Tue May 21, 2002 2:52 pm Post subject: |
|
|
answer 1: no you cannot have more than one command on a line
unless they are nested
| Code: |
rem The line below has nested commands.
if @not(@greater(@sum(2,3),@sum(2,5)))
Goto Next
end
|
answer 2: I have 5 buttons on my mouse. I'ts a Microsoft Optical
trackball. I can't live without it!
answer 3: I think there is a dll for that on VDSWorld.com but I
don't remember what the name is. You'll have to look.
answer 4: I don't know anything about the Xaudio.dll. Sorry. _________________ Chris
Http://theblindhouse.com |
|
| Back to top |
|
 |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Tue May 21, 2002 5:09 pm Post subject: |
|
|
| Quote: | ----- Question 3: @MCI commands...
Using the @MCI commands, is it possible to set the bass, treble and balance or MP3-FILES? The commands are there but they do not seen to work with MP3-files. Is there a DLL-file which can set these options on a MP3 started with the MCI commands? |
I'm not sure its possible for now. There's not any DLL to do that. Because some SoundCards card doesnt support changing the BASS and TREBLE. A DirectSound (part of DirectX) DLL would be able to do that. But for that someone would have to create such a DLL
Of course someone could make a new VDS DLL using the BASS.DLL that has lots of features including a built in equalizer or add the equalizer support in the VDSMP3.DLL using the XAUDIO.DLL
| Quote: | ----- Question 4: Xaudio.dll commands...
Does somebody know the commands of the Xaudio DLL? I think this DLL has a lot of goodies but I cannot get it, unless I know the right commands. |
For the XAUDIO.DLL you can use only the functions that were implemented in the VDSMP3.DLL from Tommy. The extra features of the XAUDIO.DLL would have to be added in the VDSMP3 one. Only Tommy could add them.

Last edited by marty on Thu May 23, 2002 1:55 pm; edited 1 time in total |
|
| Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Thu May 23, 2002 1:48 pm Post subject: |
|
|
For the mouse buttons question, all of our mouses and trackballs here,
including some very old ones, do have exactly 3 mouse buttons. I think
it's very reasonable to assume that number for everyone. Some of the
rare 2 button mouses will be able to emulate a third button by pressing
the first and second button simultaneously.
Tommy |
|
| Back to top |
|
 |
PGWARE Web Host

Joined: 29 Dec 2001 Posts: 1565
|
Posted: Thu May 23, 2002 7:34 pm Post subject: |
|
|
| I use a notebook computer and it only has two mouse buttons on the touchpad. It also allows you to simulate a 3rd key button too but that requires you manually go into the mouse control panel settings and set it up. |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Fri May 24, 2002 11:53 pm Post subject: |
|
|
My mouse has 2 buttons and a wheel that also acts as a button - fully configurable!
Serge _________________
|
|
| Back to top |
|
 |
|