Skip to content

Load parameters

hasenbolle edited this page Jan 15, 2016 · 2 revisions

Since InfoService v1.85, the plugin can be loaded with parameters.

Parameters

Parameter Description
feedIndex Used to show a feed which is specified by a index. Index is 0-based.
feedGuid Used to show a feed which is specified by a distinct guid. Every feed has a distinct internal guid. Internal use only.
feedTitle Used to show a feed which is specified by the title of the feed.
feedItemIndex Used to select a feed item which is specified by aindex. Index is 0-based.
twitterTimeline Used to show a timeline which is specified by the name of the timline. Following timelines can be used: "Home Timeline", "User Timeline", "Mentions Timeline", "Retweets of me Timeline"
twitterItemIndex Used to select a tweet which is specified by a index. Index is 0-based.
twitterItemId Used to show a timeline which is specified by a distinct id. Every timeline has a distinct internal id. Internal use only.

Examples

Open a feed (Index 2) with a selected item in the InfoService feed window from c#:

GUIWindowManager.ActivateWindow(16001, string.Format("feedIndex:\"{0}\",feedItemIndex:\"{1}\"", 2, 0));

Open the feed with title "Spiegel.de" with a selected item in the InfoService feed window from c#:

GUIWindowManager.ActivateWindow(16001, string.Format("feedTitle:\"{0}\",feedItemIndex:\"{1}\"", "Spiegel.de", 3));

Open the home timeline in the InfoService twitter window from c#:

GUIWindowManager.ActivateWindow(16003, string.Format("twitterTimeline:\"{0}\"", "Home Timeline"));

Intro

Installation

  • [Plugin installation](Plugin installation)

Getting Started

Development

  • [How to make a translation](How to make a translation)
  • [Skin developer guide](Skin developer guide)
  • [Skin changelog](Skin changelog)
  • [Load parameters](Load parameters)

Troubleshooting

  • [Report a issue / Send a feature suggestion](Report an issue or send a feature suggestion)

Clone this wiki locally