Mp3car Home Page The mp3Car.com Forums The mp3Car.com Store The mp3Car.com Blog About mp3Car.com    

Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development > Front Ends > FrodoPlayer > FP FrodoComm > FP FCSH Services

Notices

Closed Thread
 
Share Thread Tools Display Modes
Old 05-14-2005, 08:18 PM   #1
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
Frodo Authored Services

This thread is where I will post my own services for
FrodoComm Services Host.

Frodo
__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Advertisement
 
Advertisement
Sponsored links

Old 05-14-2005, 08:33 PM   #2
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
PowerFunctions

PowerFunctions Service
Download:
PowerFunctions.zip

Install:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum Install instructions. Make a folder called PowerFunctions inside the COM Plugins portion of the FrodoComm Services Host folder. Place the extracted files in that folder, make sure the files are in that folder, and not an additional sub directory. Run RegisterPowerFunctions.bat Now you should be able to enable the plugin in the services host. (It should automatically load if the host is running)

Use:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum VB Example FrodoCommObject.PostMessageByName "PowerFunctions", "SET", "POWERMESSAGE", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><PowerMessage><Action><LOCK Force=""True""/></Action></PowerMessage>" FrodoCommObject.PostMessageByName "PowerFunctions", "SET", "POWERMESSAGE", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><PowerMessage><Action><STANDBY Force=""True""/></Action></PowerMessage>" FrodoCommName: PowerFunctions Message Type: SET Event Name: POWERMESSAGE Format: XML XML Messages List: Note: (Force="True" forces the system to do the selected action. Force="False" does not.) Lock Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <LOCK Force="True"/> </Action> </PowerMessage> Logoff Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <LOGOFF Force="True"/> </Action> </PowerMessage> Restart Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <RESTART Force="True"/> </Action> </PowerMessage> Shutdown Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <SHUTDOWN Force="True"/> </Action> </PowerMessage> Hibernate Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <HIBERNATE Force="True"/> </Action> </PowerMessage> Standby/Suspend Computer: <?xml version="1.0" encoding="UTF-8"?> <PowerMessage> <Action> <STANDBY Force="True"/> </Action> </PowerMessage>

License: Same as with FrodoComm Services Host.
__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Old 05-14-2005, 08:53 PM   #3
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
Simple Post Message

Simple Post Message Service
Download: Included with Services Host Download
(Also, source is included)

Use:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum VB Example FrodoCommObject.PostMessageByName "WindowsMessages", "SET", "WINDOWSMESSAGE", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><SimplePostMessage><HWND>" & CStr(FH) & "</HWND><UMSG>2054</UMSG><WPARAM>0</WPARAM><LPARAM>0</LPARAM></SimplePostMessage>" FrodoCommName: WindowsMessages Message Type: SET Event Name: WINDOWSMESSAGE Format: XML XML Messages List: Sample PostMessage: <?xml version="1.0" encoding="UTF-8"?> <SimplePostMessage> <HWND>32687</HWND> <UMSG>2054</UMSG> <WPARAM>0</WPARAM> <LPARAM>0</LPARAM> </SimplePostMessage>

__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Old 05-15-2005, 12:36 AM   #4
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
Speech Output Plugin Service

Speech Output Plugin Service
Download: Included with Services Host Download
(Also, source is included)

Use:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum VB Example FrodoCommObject.PostMessageByName "SpeechService", "SET", "SPEECH", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><Speech><Speak>Hello</Speak></Speech>" FrodoCommName: SpeechService Message Type: SET Event Name: SPEECH Format: XML XML Messages List: Sample Speech: <?xml version="1.0" encoding="UTF-8"?> <Speech> <Speak>Hello</Speak> </Speech>

__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Old 05-15-2005, 12:51 AM   #5
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
Volume Query And Control Service

Volume Query And Control Service
Download: Included with Services Host Download
(Also, source is included)

Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum VB Example FrodoCommObject.PostMessageByName "VolumeService", "SET", "VOLUME", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><Volume><Master><Level>75.4</Level></Master></Volume>" FrodoCommObject.PostMessageByName "VolumeService", "SET", "VOLUME", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><Volume><Master><Mute>False</Mute></Master></Volume>" FrodoCommObject.PostMessageByName "VolumeService", "SET", "VOLUME", "XML", "<?xml version=""1.0"" encoding=""UTF-8""?><Volume><Master><Command>Up</Command></Master></Volume>" Messages sent FROM the volume service: Message Type: STATUS Event Name: VOLUME Format: XML Should look just like messages sent to the service, except without the "Command" attributes. Messages sent TO the volume service: FrodoCommName: VolumeService Message Type: SET Event Name: VOLUME Format: XML XML Messages List: (Note, all are listed in one message, and will work. but not all are needed, you can do one at a time or all. This also applies to setting properties for each line) Sample Speech: <?xml version="1.0" encoding="UTF-8"?> <Volume> <Master> <Level>75.4</Level> <Mute>False</Mute> <Command>Up</Command> <Command>Down</Command> </Master> <Wave> <Level>75.4</Level> <Mute>False</Mute> <Command>Up</Command> <Command>Down</Command> </Wave> <CD> <Level>75.4</Level> <Mute>False</Mute> <Command>Up</Command> <Command>Down</Command> </CD> <Mic> <Level>75.4</Level> <Mute>False</Mute> <Command>Up</Command> <Command>Down</Command> </Mic> <Line> <Level>75.4</Level> <Mute>False</Mute> <Command>Up</Command> <Command>Down</Command> </Line> </Volume>"

__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Old 05-18-2005, 06:45 PM   #6
I'm sorry, and you are....?
 
frodobaggins's Avatar
 
Join Date: Jan 2003
Location: Ruston, LA
Posts: 9,862
JoystickEvents Service (Beta)
Download:
JoystickEvents.zip
Note: Update rate is 20/sec


Install:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum Install instructions. Make a folder called JoystickEvents inside the COM Plugins portion of the FrodoComm Services Host folder. Place the extracted files in that folder, make sure the files are in that folder, and not an additional sub directory. Run RegisterJoystickEvents.bat Now you should be able to enable the plugin in the services host. (It should automatically load if the host is running)

Use:
Code:
©2005 FrodoPlayer.com ©2005 Kevin Lincecum Messages sent FROM the JoystickEvents service: Message Type: STATUS Event Name: JOYBUTTON, JOYMOVE Format: XML Example XML Messages: Note: Index ranges 0 to 3 Note: Buttons range 0 to 32 Note: Axis are X,Y,Z,RX,RY,RZ Note: Move is NEGATIVE or POSITIVE <?xml version="1.0" encoding="UTF-8"?> <JOYSTICK INDEX="0"> <JOYBUTTON>0</JOYBUTTON> </JOYSTICK> <?xml version="1.0" encoding="UTF-8"?> <JOYSTICK INDEX="0"> <JOYMOVE AXIS="X">NEGATIVE</JOYMOVE> </JOYSTICK>

License: Same as with FrodoComm Services Host.
__________________
[H]4 Life
My next generation Front End is right on schedule.
It will be done sometime in the next generation.
I'm a lesbian too.
I am for hire!
frodobaggins is offline  
Sponsored links
Advertisement
 
Advertisement
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Release] FrodoComm, and FrodoComm Services Host frodobaggins FP FrodoComm 81 12-08-2008 11:35 PM
reinstall frodo after using FM radio Erwin FrodoPlayer 12 04-06-2005 10:28 AM
Frodo Album Art? Hopperhawk FrodoPlayer 2 02-07-2005 12:40 AM
What else is up your bag of tricks frodo? nappyjim FrodoPlayer 0 10-26-2004 01:57 PM
Switch between Frodo player and GPS (IGuidance)? Nanozic FrodoPlayer 2 07-12-2004 02:58 AM


All times are GMT -5. The time now is 12:29 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics