Search found 27 matches

by bob3695
Wed Jan 02, 2013 11:05 pm
Forum: Help Forum
Topic: 2-way feedback troubleshooting
Replies: 6
Views: 9405

Re: 2-way feedback troubleshooting

And this is the part when I go crawl back under a rock...

It seems I need to double check what I type because title != name :cry:

Thanks for giving me the hercules tip about the server, never thought about that!
by bob3695
Wed Jan 02, 2013 10:51 pm
Forum: Help Forum
Topic: 2-way feedback troubleshooting
Replies: 6
Views: 9405

Re: 2-way feedback troubleshooting

I got it to show me some information with having a general catch all regex pass the info on to Hercules. Here is the regex I used: ([A-Za-z0-9<>/.\s\n\?"=,:;&-]*) Here is the expected data: HTTP/1.1 200 OK Content-Length: 1629 Date: Wed, 02 Jan 2013 21:29:40 GMT Accept-Ranges: bytes <?xml version="1...
by bob3695
Wed Jan 02, 2013 9:44 pm
Forum: Help Forum
Topic: 2-way feedback troubleshooting
Replies: 6
Views: 9405

2-way feedback troubleshooting

Hello, I am playing around with 2-way feedback from an Apple TV which returns XML as a response. I wrote my RegEx and tested it throughly and it returns the exact data I expect it to. I put that into 2-way feedback and have it assign it to a label. I then setup the command to trigger the response wi...
by bob3695
Wed Jan 02, 2013 7:37 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

Another thing to note is I neglected the "space characters" which is handled by \s so new regex:

"title":"([A-Za-z0-9\s:-]*)
by bob3695
Wed Jan 02, 2013 4:31 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

Thanks! I'm glad it was helpful!
by bob3695
Wed Jan 02, 2013 1:26 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

After reading through the two-way feedback post in the tutorial section I have come to find that I was slightly incorrect. DemoPad takes the first grouped match so your reflex would be:

"title":"([a-zA-Z0-9:-]*)

And DemoPad should take care of the rest!
by bob3695
Wed Jan 02, 2013 1:16 pm
Forum: Help Forum
Topic: silly question on editing buttons
Replies: 3
Views: 5521

Re: silly question on editing buttons

You will want something more then paint. The last I remember paint didn't support transparency so you won't be able to do rounded corners or anything nicely. You probably will want to use photoshop or it's free alternative GIMP. Although of you never used those there is a learning curve to be able t...
by bob3695
Tue Jan 01, 2013 9:15 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

haha sorry, regex is a bit technical so it takes some explaining to get out what is needed :) As for the complexity of the setup that is needed, yes, it is more complex but not much more complex... for example (DemoPad - correct me if I am wrong here!) multiple regex 2-way feedback items can be trig...
by bob3695
Tue Jan 01, 2013 7:51 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

Ok, by applying regex I mean you need to write some regex. Regex is designed to do a few things which include, but not limited to, validation (for example when you are filling out a form online), pulling information out of a string of text (like getting the movie name out of the response you posted)...
by bob3695
Tue Jan 01, 2013 7:02 pm
Forum: Help Forum
Topic: Keeping State between devices
Replies: 6
Views: 8919

Re: Keeping State between devices

Hey tyherman, I don't think there is a public web server option for this as of right now (at least not what I could find). There is a good chance I will be writing a general purpose server utilizing NodeJS, AngularJS, and Mongo (so it can run on any platform) that I will make public when it is ready...
by bob3695
Tue Jan 01, 2013 5:08 pm
Forum: Help Forum
Topic: XBMC frodo
Replies: 21
Views: 28032

Re: XBMC frodo

I don't have an example project but am here to give some help in the form of some web URLs! http://wiki.xbmc.org/index.php?title=JSON-RPC_API/v6 <- That shows you what you can request via JSON and what it returns. Armed with that information you just need to re-write the commands and the Regex for g...
by bob3695
Mon Dec 31, 2012 3:06 am
Forum: Help Forum
Topic: Keeping State between devices
Replies: 6
Views: 8919

Keeping State between devices

Hello, I was wondering/hoping there was this little gem hidden in a place I have not found yet... so if it is, can someone direct me to it? If not, consider this a feature request! I am in the development process of my first remote with DemoPad and realized that there will be a slight issue with mul...