|
 |
|
07-10-2005, 05:25 PM
|
#16
|
|
Newbie
Join Date: Jun 2005
Posts: 11
|
I would like to help beta testing...
Specs on my PC:
1.6Ghz Banias Centrino @ 600mhz
512DDr PC2100
40Gb 4200Rpm
Ati9000 Mobile
15" TFT
If you want me to test, plz mail me
Palcom@nein.dk
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
07-14-2005, 12:05 AM
|
#17
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
I just ran into a slight problem. I have been using buttons in flash to send fscommands to RR and it usually works great. I'm trying to send the fscommand:
fscommand("MM;Hotkey_CMD|FE_VIEWMODE_TOGGLE","3D or 2D","");
and I have the following button defined in the skin:
B,0,0,0,0,"MM;Hotkey_CMD|FE_VIEWMODE_TOGGLE","3D or 2D",
I'm wondering if the fscommand can't be too long in length or something because it works fine with almost every other command i've tried. Any Ideas?
|
|
|
07-14-2005, 05:00 AM
|
#18
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
It should just be:
fscommand("MM;Hotkey_CMD|FE_VIEWMODE_TOGGLE","");
2 parameters only... and you don't have to define BUTTONS on the skin (only LABELS need to be defined and only if you need/want to use them in Flash)
I do not know if the MM command is correct so I'd recommend trying it on a skin button to verify that it actually works, then you can try it in Flash.. this should at least tell you if the problem is in flash or on your command.
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-14-2005, 05:25 AM
|
#19
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
Quote:
fscommand("MM;Hotkey_CMD|FE_VIEWMODE_TOGGLE","");
I tried that one too with no luck. I'm 90% sure It has something to do with the "|" symbol in the fscommands. It works on "MM;Destinate_Favorites" and other ONE command codes but not on anything that has a "|" in it, including double commands like "EXIT||PLAY"
Quote:
and you don't have to define BUTTONS on the skin
Didn't know that.... thanks (just saved me a ton of time)
|
|
|
07-14-2005, 05:37 AM
|
#20
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
That's interesting... I can offer an alternative character to be replaced to | when RR receives the message from flash -- in attempt to allow that to work propperly.. let me know if you'd like to give that a try..
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-14-2005, 12:20 PM
|
#21
|
|
FLAC
Join Date: May 2001
Location: USA
Posts: 1,352
|
This looks very nice. Clean and sylish like OS X. I'm a big fan of the Aqua look. Can't wait for the release. Hopefully it will run fine on my PII 600.
|
|
|
07-14-2005, 12:41 PM
|
#22
|
|
Raw Wave
Join Date: Apr 2005
Posts: 2,705
|
Dunno about the screenies, but that Mezzanine album is great.
|
|
|
07-15-2005, 03:56 AM
|
#23
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
Quote:
Hopefully it will run fine on my PII 600
PII  I doubt it..
guino,
The "|" are not a problem for the double commands because for every button press event in flash, I can send as many fscommands as I want. I narrowed the issue down to the commands that you can't split up into separate fscommands such as the MM hotkey ones. Also, I get the same problem with "\" slashes when doing LOAD commands from flash so I think I might take you up on your offer at least to find a solution to the problem.
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
07-15-2005, 01:30 PM
|
#24
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
So far I know that those characters offer issues: "!", "|" and "\", can you think/try any others so I can add support for them as well ? This also would help me define how to go around the issue.. if you add the debugmode=true to RR.INI you should be able to see what RR is receiving from flash when using those commands...
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-15-2005, 02:49 PM
|
#25
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
The only important ones that I can think of are the ones you mentioned, however here is a list of fscommands with the corresponding RR debug in case you need any others.
fscommand("/",""); ------ Executing: /
fscommand("(",""); ------ Executing: (
fscommand(")",""); ------ Executing: )
fscommand("-",""); ------ Executing: -
fscommand("_",""); ------ Executing: _
fscommand("=",""); ------ Executing: =
fscommand(";",""); ------ Executing: ;
fscommand(":",""); ------ Executing: :
fscommand("&",""); ------ Executing: &
fscommand("#",""); ------ Executing: #
fscommand("!",""); ------ Executing:
fscommand("|",""); ------ Executing: %7c
fscommand("||",""); ------ Executing: %7c%7c
fscommand("?",""); ------ Executing: ?
fscommand("*",""); ------ Executing: *
fscommand("~",""); ------ Executing: ~
fscommand("%",""); ------ Executing: %25
fscommand("@",""); ------ Executing: @
fscommand("+",""); ------ Executing: +
fscommand(">",""); ------ Executing: %3e
fscommand("[",""); ------ Executing: %5b
fscommand("]",""); ------ Executing: %5d
fscommand("{",""); ------ Executing: %7b
fscommand("}",""); ------ Executing: %7d
- fscommand("RUN;C:\Program Files\Road Runner\rrconfig.exe","");
Executing: RUN;C:Program%20FilesRoad%20Runner%0drconfig.exe
Shell: "C:Program%20FilesRoad%20Runner%0drconfig.exe"
- fscommand("RUN;C:\Program Files\Road Runner\RRCONFIG.EXE","");
Executing: RUN;C:Program%20FilesRoad%20RunnerRRCONFIG.EXE
Shell: "C:Program%20FilesRoad%20RunnerRRCONFIG.EXE"
|
|
|
07-16-2005, 03:02 PM
|
#26
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
Quote: Originally Posted by DiNASTY
The only important ones that I can think of are the ones you mentioned, however here is a list of fscommands with the corresponding RR debug in case you need any others.
fscommand("/",""); ------ Executing: /
fscommand("(",""); ------ Executing: (
fscommand(")",""); ------ Executing: )
fscommand("-",""); ------ Executing: -
fscommand("_",""); ------ Executing: _
fscommand("=",""); ------ Executing: =
fscommand(";",""); ------ Executing: ;
fscommand(":",""); ------ Executing: :
fscommand("&",""); ------ Executing: &
fscommand("#",""); ------ Executing: #
fscommand("!",""); ------ Executing:
fscommand("|",""); ------ Executing: %7c
fscommand("||",""); ------ Executing: %7c%7c
fscommand("?",""); ------ Executing: ?
fscommand("*",""); ------ Executing: *
fscommand("~",""); ------ Executing: ~
fscommand("%",""); ------ Executing: %25
fscommand("@",""); ------ Executing: @
fscommand("+",""); ------ Executing: +
fscommand(">",""); ------ Executing: %3e
fscommand("[",""); ------ Executing: %5b
fscommand("]",""); ------ Executing: %5d
fscommand("{",""); ------ Executing: %7b
fscommand("}",""); ------ Executing: %7d
- fscommand("RUN;C:\Program Files\Road Runner\rrconfig.exe","");
Executing: RUN;C:Program%20FilesRoad%20Runner%0drconfig.exe
Shell: "C:Program%20FilesRoad%20Runner%0drconfig.exe"
- fscommand("RUN;C:\Program Files\Road Runner\RRCONFIG.EXE","");
Executing: RUN;C:Program%20FilesRoad%20RunnerRRCONFIG.EXE
Shell: "C:Program%20FilesRoad%20RunnerRRCONFIG.EXE"
Cool man, thanks.. You have no idea how much time you saved me.. (I don't have FlashMX installed currently)... I'll make RR automatically interpret some of those codes ... but I would like you to try using "\!" instead of just "!" and "\\" instead of just "\" to see how they execute.. those two have to be done inside flash because I don't think RR receives anything for them... also, "\ " (backslach+space) may work in place of " " (space)...
Try this for instance:
fscommand("RUN;C:\\Program\ Files\\Road\ Runner\\RRCONFIG.EXE","");
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-16-2005, 05:33 PM
|
#27
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
Quote:
I don't think RR receives anything for them...
Your right, It doesn't look like it read much of anything.
fscommand("\!",""); ----- Executing:
fscommand("\\",""); ----- Executing: %5c
fscommand("\ ",""); ----- Executing:
fscommand(" ",""); ----- Executing:
fscommand("!SELECT+",""); ----- Executing: SELECT+
fscommand("\!SELECT+",""); ----- Executing: SELECT+
fscommand("RUN;C:\\Program\ Files\\Road\ Runner\\RRCONFIG.EXE","");
Executing: RUN;C:%5cProgram%20Files%5cRoad%20Runner%5cRRCONFI G.EXE
|
|
|
07-16-2005, 06:25 PM
|
#28
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
yeah, guess I have more work than I thought.. anyway, I'll look into this shortly. I believe we may have to add something special for "!" like "@@" or something like that. I'll post a "patch" for you to try out shortly.. in the meantime if you can try: fscommand("!!",""); I'd appreciate it.. for now I can tell you that when using "\" you'llhave to use "\\" from flash -- all other characters will be used normally (when I'm done)... then we need to do something for the "!" ...
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-16-2005, 09:05 PM
|
#29
|
|
RoadRunner Mastermind
Join Date: Nov 2004
Location: Vitória, ES - Brazil
Posts: 9,064
|
Here's something for you to try:
http://guino.mpug.co.uk/rr.exe
It should accept all the characters that were giving you trouble.. also, @@ can be used as ! (i.e. "@@SELECT+") ... remember to use \\ instead of single \ ... also, you can execute commands in "repeat" mode by setting the parameter to "asrepeat" and simulate mouse Down and Up events using "buttonup" and "buttondown" as paramter...
to execute "!SELECT+" either: fscommand("@@SELECT+","") or fscommand("SELECT+","ASREPEAT")...
the up/down events are usefull if your flash object by any means "repeats" presses at random... i.e. fscommand("NEXT","BUTTONDOWN") -- starts fast forwarding the song until a fscommand("NEXT","BUTTONUP") is executed...
__________________
Ride Runner RR's Myspace
"Being happy is not about having what you want, it's about wanting what you have."
"The best things in life are always free - but that doesn't mean money can't buy you good things."
|
|
|
07-17-2005, 01:25 PM
|
#30
|
|
Maximum Bitrate
Join Date: Mar 2005
Location: Concord, California
Posts: 598
|
Thanks for the support guino, everything works perfect
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:18 AM.
| |