![]() |
|
|||
|
Re: Firefly profile tutorial
Is there a config file for the Firefly software? I'm trying to figure out where the info about the sound scheme is stored. I'd like to be able to shut off remote sounds without having the user go into the interface. It must be in the registry or an ini file someplace.
Greg |
|
|||
|
Re: Firefly profile tutorial
Quote:
Hey, im new to this, but how to make he description for when your using your control is by changing the ShowOSD="True" to "False" How to make to this to the individuel settings i dont know. i havnt played around, but when you got this info it may help you to play around by yourself. |
|
|||
|
Re: Firefly profile tutorial
Quote:
C:\Documents and Settings\All Users\Application Data\SnapStream\Firefly the file is "Firefly.xml" change the sound line to: <Sound Current="None.xml" /> if you want to change other things the has to do with sound, go into the "sound" catalog. |
|
|||
|
Re: Firefly profile tutorial
I'm trying to run an application from within the Beyond TV viewer that will start a program, and then give BTV viewer back focus. So far I can get the other application to start, but I can't seem to figure out how to return focus to BTV.
Here's what I'm running from within BTV-SnapStream-3.4.xml: <Actions Button="A" Description="Toggle Secondary"> <PlaySoundAction ActivationState="Down" Sound="Select"/> <LaunchAction ActivationState="Up" Program="C:\windows\ScrPlayer.exe - Shortcut" Arguments="" Description="Secondary Monitor Off"/> <SwitchAppAction Text="Beyond TV" Class="WindowsForms" File="BTVD3DShell.exe" State="" IfAlreadyShowing="" /> </Actions> What am I doing wrong? |
|
|||
|
Re: Firefly profile tutorial
aaronmielke ---
Thank you for the tutorial. I needed to make some changes and the tutorial made it easy.
__________________
Athlon64 X2 4600+; 2GB memory Built my own wooden case - curly cherry:
|
|
|||
|
Re: Firefly profile tutorial
Alright, I don't know why anyone has not posted this earlier, because it was fairly easy to do, but to switch active windows, you can use CTRL+ESC which works better as a map to a button. Whereas, CTRL+Tab would require two dedicated buttons, one for CTRL and one for TAB. Anyways, Ctrl+Esc will cycle through open windows and serve it's purpose.
I mapped mine to the D button and labeled it "Next Window" <Actions Button="D" Description="Next Window"> <KeyAction Keys="%{ESC}" /> </Actions> Just copy and paste that into global and you're good to go. |
|
|||
|
Re: Firefly profile tutorial
hmm interesting question. I think the short answer is no, but let me verify and get back to you. what's your use case? I'm curious to know more about how you are using multiple remotes with the same PC.
__________________
To view links or images in signatures your post count must be 3 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 3 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 3 or greater. You currently have 0 posts. |
|
|||
|
I want to send CTRL+F12 to my application and I modified Global.xml like this:
<Actions Button="D" Description="SleepyTime"> <SpecialKeyAction Type="Down" Key="ControlKey" /> <SpecialKeyAction Type="Down" Key="{f12}" /> <SpecialKeyAction Type="Up" Key="ControlKey" /> <SpecialKeyAction Type="Up" Key="{f12}" /> </Actions> I get the "Global: SleepyTime" OSD message but nothing happens. If I use a wireless keyboard and hti CTRL+F12, it works fine. What am I doing wrong? |
|
|||
|
Re: Firefly profile tutorial
I found the new page for SendKeys commands. This link should work fine.
http://msdn.microsoft.com/en-us/libr...83(VS.85).aspx |
|
|||
|
Re: Firefly profile tutorial
Does anyone know what I need to put for the Windows key. On pretty much all new keyboards there is a Windows key. There are hot keys you can use in combination with this key. I.e. Show Desktop Win+D. I'd like to put this in my profile. How can I specify this key sequence.
BTW, the remote is very impressive, the configuration just gives you so much power. |
|
|||
|
Re: Firefly profile tutorial
I tried mapping the "Video" button on the Firefly remote to Boxee and I have Windows 7, MCE pointed to the rest of the buttons, including the Firefly button itself. When I replaced "Video" with:
<Actions Button="Video" Description="Boxee"> <LaunchAction ActivationState="Down" Program="C:\Program Files\Boxee\BOXEE.exe" Arguments="-fs -p" /> <PlaySoundAction ActivationState="Down" Sound="Select" /> </Actions> it would open Windows Media Player. When I opened the global.xml file by double clicking it and IE opened, it showed Windows Media Player under Actions button, Video. When I opened it up via notepad or wordpad, it shows the modified Video button as Boxee. Under Beyond Media Basic, it says the Video button is Windows OS default. When I changed that to None, it showed no Video button under Global. Any way to make the Boxee changes stick? I made these changes after shutting Firefely down. Any ideas? Thanks! EDIT: By placing the mapped button in the Default.xml rather than the Global.xml, it worked as desired. I do remember reading somewhere that it goes from Default to Global so I guess it makes sense in my situation. Last edited by mados123; 02-02-2009 at 11:29 PM. Reason: Found solution. |
|
|||
|
Re: Firefly profile tutorial
Quote:
I'm trying: Code:
<Actions Button="D" Description="Alt Tab">
<SpecialKeyAction ActivationState="Down" Type="Down" Key="RMenu" />
<SpecialKeyAction ActivationState="Down" Type="Down" Key="{TAB}" />
<SpecialKeyAction ActivationState="Up" Type="Up" Key="{TAB}" />
<SpecialKeyAction ActivationState="Up" Type="Up" Key="RMenu" />
</Actions>
My issue is really: 1. Beyond TV Link loads fine. 2. If I open PowerDVD, it loads fine. 3. If I go back to Beyond TV Link, I can't get back to PowerDVD as it is underneath BTL on the screen and I have to VNC to the machine to control it. Any thoughts on cycling through open programs? Last edited by WillieWilliams; 04-13-2009 at 11:54 PM. Reason: subscribe |
|
|||
|
Re: Firefly profile tutorial
I Have the following data:
ClassName: TDJMasterForm Filename: D:\0000DjMaster_DualMode\DJMasterTM.exe WindowText: POGEE Technologies -- Mp3 DJMaster I managed to modify the music button in FF to activate the program After I activate the program I need to map the FF buttons to the application. The application responds to the the following keys: ALT-P to play; ALT-S to stop; ALT-N for next; etc I copied one of the profiles and modified it as follows: <ProfileType="SnapStream.Firefly.Core.Profile"Name="DJMasterTM"ShowOSD="True"> <IdentifierClassName="TDJMasterForm"WindowText="POGEE Technologies -- Mp3 DJMaster"FileName="" /> I Tried the following to map the buttons: <ActionsButton="Right"Description="Right"> <SpecialKeyActionType="Down"Key="AltKey" /> <SpecialKeyActionType="Down"Key="N" /> <SpecialKeyActionType="Up"Key="AltKey" /> <SpecialKeyActionType="Up"Key="N" /> </Actions> <ActionsButton="Left"Description="Left"> <SpecialKeyActionType="Down"Key="AltKey" /> <SpecialKeyActionType="Down"Key="B" /> <SpecialKeyActionType="Up"Key="AltKey" /> <SpecialKeyActionType="Up"Key="B" /> </Actions> . . etc... Should I do the mapping like so: <ActionsButton="Next"Description="Next"> <KeyActionKeys="%n"OnRepeat="True" /> </Actions> <ActionsButton="Previous"Description="Previous"> <KeyActionKeys="%b"OnRepeat="True" /> </Actions> <ActionsButton="Down"Description="Down"> <KeyActionKeys="%w"OnRepeat="True" /> </Actions> etc... Can you help? |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Firefly won't use Sage profile | Prof | Firefly PC Remote | 6 | 06-13-2007 11:07 PM |
| Firefly XML Profile documentation | jayrbrown77 | Firefly PC Remote User-to-User Troubleshooting & Support Forum | 1 | 09-27-2006 12:56 PM |
| Firefly keyboard profile | nicknero | Firefly PC Remote User-to-User Troubleshooting & Support Forum | 0 | 07-18-2006 11:34 AM |
| FireFly profile programming | tshoemaker | Firefly PC Remote | 1 | 11-11-2005 03:47 PM |