|
 |
|
01-15-2009, 01:27 PM
|
#46
|
|
Constant Bitrate
Join Date: Nov 2007
Posts: 119
|
The North American Version of Vista 32. That's why I can't understand why it is coming up with Chinese symbols.
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
01-15-2009, 03:12 PM
|
#47
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,938
|
Ah! vista, you need to be running in XP compatability mode I believe as Vista doesn't like some VB6 runtimes. (at least I think that is it)
|
|
|
01-15-2009, 03:40 PM
|
#48
|
|
Constant Bitrate
Join Date: Nov 2007
Posts: 119
|
Ahhh, have to love Microsoft
Ok I'll try that out when I get home a bit later.
|
|
|
01-15-2009, 11:05 PM
|
#49
|
|
Constant Bitrate
Join Date: Nov 2007
Posts: 119
|
I've been searching for ways to run this in compatibility mode but have come up with nothing. It seems you can only run specific programs in compatibility mode, and not something such as a .dll
|
|
|
01-21-2009, 12:00 AM
|
#50
|
|
Low Bitrate
Join Date: Feb 2008
Location: Maryland
Posts: 91
|
Nice lil plugin. I actually got it to work first time with no hitch. Now i can see whats happening in the trunk from up front. So now i woul like to explore a bit further
1. would it be possible (from rr) to monitor the power source, whether battery or external and then execute a command (Lets say, hibernate) when source changes from external to battery.
2 what would that command look like? (Maybe using that BYVAR command??)
__________________
NEVER BLEND IN!!!
|
|
|
01-21-2009, 12:05 AM
|
#51
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,938
|
Have a look at bluezx3's plugins, he has one which will monitor label values and then react to certain user defined values.
|
|
|
01-21-2009, 05:54 PM
|
#52
|
|
Low Bitrate
Join Date: Feb 2008
Location: Maryland
Posts: 91
|
Quote: Originally Posted by Enforcer 
Have a look at bluezx3's plugins, he has one which will monitor label values and then react to certain user defined values.
Thanks for the reply, i used the RRWarningWatcher and i actually got it to work. Im exctatic. There is only one sticking point though. I am using the battery level label which does a few things i specify and then hibernates when battery drops below 90% which happens when external power is dropped and battery starts discharging . Works like a charm.
Problem is, since the battery wont be charging while in hibernation, upon resume, battery level will still be below the 90%.
I would rather use the powersource label but its given in text rather than numeric. so i cant/dont know how to use the '<' or '>' criteria.
__________________
NEVER BLEND IN!!!
|
|
|
01-21-2009, 06:10 PM
|
#53
|
|
Confusion Master
Join Date: Sep 2003
Location: If you go down to the woods today, You're sure of
Posts: 11,938
|
can you not test it equal to charging or not charging
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
01-21-2009, 09:43 PM
|
#54
|
|
Low Bitrate
Join Date: Feb 2008
Location: Maryland
Posts: 91
|
I tried, with no luck. dont think the syntax allows "=", it seems to only respond when more or less than the set criteria which seem to need some numerical value.
__________________
NEVER BLEND IN!!!
|
|
|
01-22-2009, 11:39 AM
|
#55
|
|
FLAC
Join Date: Aug 2006
Location: Sun Diego
Posts: 1,407
|
Kinda round about, but you could set up a global timer event to evaluate the power source label and set a value based on the string.
Code:
SETVARBYCODE;pstate;powermon_powersrc||EVAL;pstate;strcomp("$pstate$";"Battery")||BYVAR;pstate;SETLABEL;CUSTOMpwrsrc;1<<SETLABEL;CUSTOMpwrsrc;3"
.
Then set RRWW to monitor "CUSTOMpwrsrc"
I think you can also use the BYSTR command to do the same thing, but I don't know if it can read labels directly. I know it can eval variables with string properties, tho.
__________________
Pico-ITX / nLite'd XP Pro with EWF-HORM / RR v9/22/2009 / Winamp v5.13 / RRMedia v1.2.2
Last edited by Sal R.; 01-22-2009 at 11:41 AM.
|
|
|
01-22-2009, 09:18 PM
|
#56
|
|
Low Bitrate
Join Date: Feb 2008
Location: Maryland
Posts: 91
|
Well that didnt work out. It did work somewhat, but the RRWW Alarm event kept firing no matter how i cofigured it. However i did, find a winning combination from that code.
Code:
"TIMER","SETVARBYCODE;pstate;powermon_powersrc||EVAL;pstate;strcomp("$pstate$";"Battery")||BYVAR;pstate;DONOTHING<<CUSTHib"
"CUSTHib","DIGITALOUT11TOGGLE||wAIT;1||FBDISCONNECT||wAIT;1||HIBERNATE"
Works like a gem and now i have no need for those external hibernation apps and i didn't even have to utilize RRWW.
__________________
NEVER BLEND IN!!!
|
|
|
05-01-2009, 12:04 PM
|
#57
|
|
The Last Good Gremlin
Join Date: Nov 2004
Location: St Louis
Posts: 1,934
|
Hey Sal, I just posted some code in the RREXTENDED Thread about triggering an RRCode command when powermon_powersrc label changes. Can this plugin be setup to do it for me, i.e., through a settings.ini or a switch. My method works, but it requires a RRCode timer fired every 15 seconds. And I'd like to get away from additional plugins and timers.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
|
|
|
05-01-2009, 12:39 PM
|
#58
|
|
FLAC
Join Date: Aug 2006
Location: Sun Diego
Posts: 1,407
|
I can probably add an indicator if the power source was a battery or external and you can then use the RRE's IndPoller.
I've never had much luck executing commands from a label change.
Looking at the code your provided in the RRE thread, it looks like it might work...
__________________
Pico-ITX / nLite'd XP Pro with EWF-HORM / RR v9/22/2009 / Winamp v5.13 / RRMedia v1.2.2
|
|
|
05-01-2009, 07:53 PM
|
#59
|
|
The Last Good Gremlin
Join Date: Nov 2004
Location: St Louis
Posts: 1,934
|
Quote: Originally Posted by Sal R. 
I can probably add an indicator if the power source was a battery or external and you can then use the RRE's IndPoller.
I've never had much luck executing commands from a label change.
Looking at the code your provided in the RRE thread, it looks like it might work...
Nah, my label change checker does work! Right now its the only thing using RRE. Was looking to reduce # of plugins.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
|
|
|
11-03-2009, 11:22 PM
|
#60
|
|
Newbie
Join Date: Nov 2009
Posts: 1
|
I am sorry, I read this thread but I dont think I am up to heavy coding.
I am using the digitalFX 4.o skin.
I tried using the examples people gave but with my 1024x600 res it is all screwed up placement wise. I would really like it small somewhere in the corner possibly next to the cpu%.
any ideas?
|
|
|
|
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:55 AM.
| |