Another thing is that if you're sending an infolabel into a builtin
function (eg PlayMedia($INFO[ListItem.Path]) sort of stuff) you'll want to
use $ESCINFO[] rather than $INFO.  Otherwise any commas returned by the
infolabel will be interpreted as if they're separating parameters in the
builtin.  eg:

PlayMedia($INFO[ListItem.Path])

might return:

PlayMedia(/some/path/with_a_file_that_includes,a_comma.avi)

This will be read by the builtin function generator as PlayMedia called
with 2 parameters: "/some/path/with_a_file_that_includes" and
"a_comma.avi".  Clearly this is not going to work.

Simple solution: Change to PlayMedia($ESCINFO[ListItem.Path]) will make
sure that whatever is returned by the infolabel is sent on to the builtin
as a single parameter.

An obvious example here is recently added on home.  Make sure you use
$ESCINFO[] as otherwise stacks won't play correctly (only the first bit
will be played).

tl;dr: Use $ESCINFO[] rather than $INFO[] if it's inside a builtin function.

Cheers,
Jonathan

On Mon, Feb 27, 2012 at 8:50 PM, Jezz_X <[email protected]> wrote:

> Thats a damn good question I guess we need either a dummy device or
> get back the original keyboard one that used to show up
> I'm kind of lucky because I have a device that shows up in it the
> Motorola remote
> It's kind of the same as how do you skin pvr when we don't have the
> hardware? though dushmaniac was working on that with a dummy pvr addon
>
> On Mon, Feb 27, 2012 at 6:25 PM, Kevin Goffe <[email protected]>
> wrote:
> > Hi,
> >
> > Re: DialogPeripheralManager.xml and DialogPeripheralSettings.xml
> >
> > Last time I checked there was no way to fake these windows so how are we
> > supposed to code them?
> >
> > Thanks,
> >
> > Kev.
> >
> >
> > ________________________________
> > From: Jezz_X <[email protected]>
> > To: trizinn <[email protected]>
> > Cc: [email protected]; XBMC ADDON LIST <[email protected]
> >;
> > [email protected]; Adam Lee <[email protected]>; Kevin Goffe
> > <[email protected]>; Predrag Mitić <[email protected]>
> > Sent: Monday, 27 February 2012, 3:23
> > Subject: Re: [Xbmc-addons] Call for Eden skins
> >
> > While we are on the topic of compatibility I'll throw in a few recent
> > changes since the creation of the pre-eden repo skinners might need to
> > look at before submitting
> >
> > * add the _screenshots folder (like TheUni said)
> > * Make sure you have removed the code for the video files windows
> > * Make sure you now use the Window.Property() stuff for weather
> > (including adding a label for the weather provider please) and check
> > all your labels display right
> > * Make sure you have the new dialogs added DialogPeripheralManager.xml
> > DialogPeripheralSettings.xml
> >
> >
> > On Mon, Feb 27, 2012 at 9:41 AM, trizinn <[email protected]> wrote:
> >> I'll submit it sometime next week.
> >>
> >>
> >> On Sun, Feb 26, 2012 at 2:04 PM, Cory Fields <[email protected]> wrote:
> >>>
> >>> Hi guys
> >>>
> >>> As Eden approaches, we want to be sure to have all compatible skins
> >>> listed in the official repo for maximum exposure. Now that all
> >>> features and strings are entirely frozen for release, for those of you
> >>> who maintain Eden skins that have not made it to the official Eden
> >>> repo yet (and anyone I may have missed), could you please take this
> >>> time to submit them now?
> >>>
> >>> Thanks!
> >>> Cory
> >>
> >>
> >>
> >>
> >> --
> >> - Tran
> >>
> >>
> >>
> ------------------------------------------------------------------------------
> >> Virtualization & Cloud Management Using Capacity Planning
> >> Cloud computing makes use of virtualization - but cloud computing
> >> also focuses on allowing computing to be delivered as a service.
> >> http://www.accelacomm.com/jaw/sfnl/114/51521223/
> >> _______________________________________________
> >> Xbmc-addons mailing list
> >> [email protected]
> >> https://lists.sourceforge.net/lists/listinfo/xbmc-addons
> >>
> >
> >
>
>
> ------------------------------------------------------------------------------
> Try before you buy = See our experts in action!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-dev2
> _______________________________________________
> Xbmc-addons mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/xbmc-addons
>
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to