sag mal wird es nicht langsam mal zeit, dass dein addon ins kodinerds repo wandert?
bg
[ALPHA VERSION] SerienPlaner
-
sveni_lee -
27. März 2016 um 14:59 -
Erledigt
-
-
Hab ich noch gar nicht drüber nachgedacht...
Wäre aber durchaus denkbar von meiner Seite aus... -
-
kannst Du mir mal zeigen, wo bei false kommt...
ja natürlich , hier :hmm kann gerade keine screenshots mnachen, aber es ist aktuell bei :
Scott und Bailey -- > 12:20uhr
Men at work ---> 12:35
Community --> 12:40ich glaube das ist bei sendern die ich nicht in kodi habe, oder ist da quatsch?
-
wie sehen denn deine Settings aus?
Wenn Du den Sender nicht in deiner Senderliste hast, kannst Du auch keine
PVRID bekommen, weil diese ja gar nicht vorhanden ist...wenn Du in den Settings ausgewählt hast, dass nur Sender aus deiner Senderliste verarbeitet werden sollen, werden alle anderen natürlich geskippt...
-
-
so das problem scheint echt zu sein das das sender sind die ichg nicht habe, den gerade zb bei "arrow", arrow läuft auf "atv" den habe ich aber gar net
wenn ich jetzt sage "nur bei aktiviertem pvr client" nimmt er dann n ur die sender die ich auch habe? oder was muss ich da einstellen?
-
genau, "nur bei aktiviertem PVR" bewirkt das er nur Senden aus deiner Senderliste in die datenbank aufnimmt... wenn Du das deaktivierst nimmt er alle. Dann bringt die das Umschalten bzw Aufnehmen aber nichts mehr...
-
-
Hab ich was verpasst.
Deine Github Seite ist schon ne Weile down, aber im Kodinerds repo finde ich dein Addon auch nicht.
So macht eine Skinintegration keinen Spaß.
Was ist los?
Gruß
bg -
ich musste Github mal wieder anschreiben, die glauben immer ich ein Roboter....
-
-
ich musste Github mal wieder anschreiben, die glauben immer ich BIN ein Roboter....
kein Wunder
Was ist mit dem Repo? Du brauchst dich nur mal bei @Jugger melden.
bg -
sorry...
ich kann eigendlich nur lesen, schreiben kann meine Schwester.
wir mussten uns das als Kinder teilen...Ich werd mich mal mit @Jugger in Verbindung setzen....
-
-
Ich werd mich mal mit @Jugger in Verbindung setzen....
Wenn du es selbst in der Repo verwalten willst brauchst du aber ein Acc.
Wenn du kein hast musst du mir dein Addon immer zukommen lassen.. dann mach ich das. -
ich hab mich mal wieder an den SerienPlaner gesetzt und mir überlegt wie man die Übesicht vom Next.Aired "nachbauen" könnte.
In der Datenbank vom SP können bis zu 15 Tage vorlauf gespeichert werden also habe ich ja grundsätlich alle Daten in der Datenbank die ich brauche. Aber irdendwie stehe ich grad auf'm Schlauch. Ich überlege grade wie ich meinen dynamic content gestalten müsste damit ich das Fenster ungefähr so füllen könnte...
Externer Inhalt i.imgur.comInhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.links sollte eine Scroll-List mit dem Datum sein
rechts sollten dann die anstehenden Sendungenaufgelistet werden.
Also wenn ein Datum im Focus ist dann die entsprechenden Sendungen.
Aber irgendwie komm ich da grad nicht weiter wie ich Kodi dazu bewegt bekomme den Inhalt den entsprechendem Datum zu zuordnen... -
-
so, ich habe jetzt scheinbar eine Möglichkeit gefunden die ListItemsso auszugeben wie ich sie benötige...
ABER jetzt laufe ich einen Fehler:Python15:31:20 T:1224 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: <type 'exceptions.NameError'> Error Contents: name 'addon_handle' is not defined Traceback (most recent call last): File "G:\Kodi\portable_data\addons\plugin.program.serienplaner\default.py", line 847, in <module> xbmcplugin.addDirectoryItem(handle=addon_handle, url=url, listitem=li) NameError: name 'addon_handle' is not defined
und so sieht die methode aus:
Python
Alles anzeigenelif methode == 'get_SP_Guide': gdate = datetime.datetime.strftime(datetime.date.today(), '%d.%m.%Y') i=0 for i in range(15): _gdate = datetime.date.today() + datetime.timedelta(days=i) li = xbmcgui.ListItem() gdate = _gdate.strftime('%d.%m.%Y') wday = _gdate.strftime("%a") li.setProperty("weekday", wday) li.setProperty("date", str(gdate)) spg_items = get_Guide_Items(gdate) writeLog('spitems %s - %s' % (wday, gdate), level=xbmc.LOGDEBUG) writeLog('spitems %s' % (spg_items), level=xbmc.LOGDEBUG) for gitem in spg_items: li.setProperty("channel", gitem['Channel']) li.setArt({'poster': gitem['Poster'], 'fanart': gitem['Fanart'], 'clearlogo' : gitem['Clearlogo']}) li.setInfo('video', {'Season' : gitem['Staffel'], 'Episode' : gitem['Episode'], 'Title' : gitem['Title'], 'Genre' : gitem['Genre'], 'mpaa' : gitem['Altersfreigabe'], 'year' : gitem['Jahr'], 'duration' : '{:01d}:{:02d}'.format(*divmod(int(gitem['RunningTime']), 60)), 'plot' : gitem['Description'], 'rating' : gitem['Rating'], 'studio' : gitem['Studio'], 'tvshowtitle' : gitem['TVShow']}) li.setProperty("senderlogo", gitem['Logo']) li.setProperty("starttime", gitem['Starttime']) li.setProperty("RunTime", gitem['RunningTime']) li.setProperty("PVRID", gitem['PVRID']) li.setProperty("status", gitem['Status']) li.setProperty('datetime', '%s %s' % (gitem['Datum'], gitem['Starttime'])) li.setProperty('recordtime', gitem['_Starttime']) li.setProperty("recordname", '%s.S%sE%s.%s' % (gitem['TVShow'], gitem['Staffel'], gitem['Episode'], gitem['Title'])) i+1 xbmcplugin.addDirectoryItem(handle=addon_handle, url=url, listitem=li) xbmcplugin.endOfDirectory(addon_handle)
hat jemand ( @BJ1 ) eine Idee?bei der Anderen MEthode gibt es diesen Fehler nicht...
-
Ein addon_handle gibt es nur, wenn Dein Addon per Plugin-Methode (also aus dem Skin heraus oder mit RunPlugin) aufgerufen wird. Ich hab' das bei mir so:
-
-
n.
Ein addon_handle gibt es nur, wenn Dein Addon per Plugin-Methode (also aus dem Skin heraus oder mit RunPlugin) aufgerufen wird. Ich hab' das bei mir so:
Danke für die Info, ich werds im script ein wenig umstellen, dann sollte es so funktionieren...
Ich hab jetzt ein kleines Problem mit dem skinnen:
Ich habe eine Liste erstellt die sich aus dem Plugin befüllen soll. Mit dem Datum klappt das auch schon nur leider
kann nich innerhalb der Liste nicht navigieren und habe keine ahnung warum nicht...XML
Alles anzeigen<?xml version="1.0" encoding="UTF-8"?> <window> <onload>SetProperty(Window.HasSettings,True,home)</onload> <onload>ClearProperty(MediaMenu,Home)</onload> <onunload>ClearProperty(Window.HasSettings,Home)</onunload> <controls> <include>CommonBackground</include> <control type="group"> <left>0</left> <top>128</top> <include>Window_OpenClose_Animation</include> <include>SystemLeftPanel</include> <control type="list" id="9000"> <left>82</left> <top>32</top> <width>356</width> <height>720</height> <onup>9000</onup> <ondown>9000</ondown> <itemlayout height="90" width="356"> <control type="image"> <top>30</top> <width>356</width> <height>60</height> <texture border="1">separator2.png</texture> </control> <control type="group"> <visible>!StringCompare(System.Date(ddd),ListItem.Property(day))</visible> <control type="label"> <width>356</width> <height>90</height> <font>font15_bold</font> <textoffsetx>20</textoffsetx> <textcolor>grey2</textcolor> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <label>$INFO[ListItem.Property(weekday)]</label> </control> <control type="label"> <width>356</width> <height>90</height> <font>font15</font> <textoffsetx>20</textoffsetx> <textcolor>grey2</textcolor> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <align>right</align> <aligny>center</aligny> <label>$INFO[ListItem.Property(date)]</label> </control> </control> <control type="group"> <visible>StringCompare(System.Date(ddd),ListItem.Property(day))</visible> <control type="label"> <width>356</width> <height>90</height> <font>font15_bold</font> <textoffsetx>20</textoffsetx> <textcolor>$VAR[ThemeLabelColor]</textcolor> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <label>$INFO[ListItem.Property(weekday)]</label> </control> <control type="label"> <width>356</width> <height>90</height> <font>font15</font> <textoffsetx>20</textoffsetx> <textcolor>$VAR[ThemeLabelColor]</textcolor> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <align>right</align> <aligny>center</aligny> <label>$INFO[ListItem.Property(date)]</label> </control> </control> </itemlayout> <focusedlayout height="90" width="356"> <control type="image"> <top>30</top> <width>356</width> <height>60</height> <texture border="1">separator2.png</texture> </control> <control type="image"> <left>0</left> <top>0</top> <width>356</width> <height>90</height> <texture colordiffuse="$VAR[HighlightBarColor]" border="4">listselect_fo.png</texture> <include>VisibleFadeEffect</include> </control> <control type="group"> <control type="label"> <width>356</width> <height>90</height> <font>font15_bold</font> <textoffsetx>20</textoffsetx> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <label>$INFO[ListItem.Property(weekday)]</label> </control> <control type="label"> <width>356</width> <height>90</height> <font>font15</font> <textoffsetx>20</textoffsetx> <selectedcolor>$VAR[ThemeLabelColor]</selectedcolor> <align>right</align> <aligny>center</aligny> <label>$INFO[ListItem.Property(date)]</label> </control> </control> </focusedlayout> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide</content> </control> <control type="image"> <description>LOGO</description> <left>82</left> <top>752</top> <width>356</width> <height>120</height> <aspectratio>keep</aspectratio> <texture>aeon-nox-logo.png</texture> </control> <include>SystemRightPanel</include> </control> </controls> </window>
-
so nach ein wenig fummelei kann ich schon mal ein paar Fortschritte zeigen...
Externer Inhalt i.imgur.comInhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.Im Moment is es so, das nur Erstausstrahlungen in Free-TV und Pay-TV angezeigt werden, die in den
nächsten 15 Tagen laufen, auf den Sendern die ihr in eurter Senderliste habt...Ich bin noch am überlegen, ob ich soetwas wie "Missing Episode" einbaue. Dann soll geprüft werden ob iht die Episode schon in der Datenbank habt oder nicht. Wenn nicht sollte sie mit angezeigt werden...
-
-
update:
- Fanart für den Backgraoun hinzugefügt.
Externer Inhalt i.imgur.comInhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.ein kleines Problem stellt sich jetzt allerdings dar, der dynamic content scheint keine gute Idee zu sein für diese Anwendung. Da werde ich wohl über einen static content nachdenken müssen.
Problem ist, dass der Content natürlich für jedes Datum neu abgefragt wird und das dauert leider scheinbar etwas... den static content könnte man schon gleich beim Start oder bei <onload> der Seite aufbauen lassen und nach bendetem scrapen... sollte gehen... -
so wie es jetzt ist, ruft das script 16x auf und das dauert natürlich...
Code
Alles anzeigen16:29:02 T:5180 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','279','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:02 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','280','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:02 T:5128 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','281','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:11 T:5128 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','282','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:11 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','283','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:11 T:5180 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','284','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:17 T:5128 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','285','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:18 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','286','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:18 T:5180 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','287','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:23 T:5128 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','288','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:24 T:5180 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','289','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:24 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','290','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:30 T:5128 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','291','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:30 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','292','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:30 T:5180 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','293','?methode=get_SP_Guide&guidedate=01.09.2016') 16:29:36 T:1184 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin Serienplaner('plugin://plugin.program.serienplaner/','294','?methode=get_SP_Guide&guidedate=01.09.2016')
Im Moment weiß ich noch nicht wie es umgehen soll...
es scheint als ob für jedes Panal abgefragt wird....XML
Alles anzeigen<control type="group" id="9001"> <control type="scrollbar" id="60"> <left>522</left> <top>18</top> <width>1316</width> <height>12</height> <onup>9001</onup> <ondown condition="Container(9000).HasFocus(1)">200</ondown> <ondown condition="Container(9000).HasFocus(2)">201</ondown> <ondown condition="Container(9000).HasFocus(3)">202</ondown> <ondown condition="Container(9000).HasFocus(4)">203</ondown> <ondown condition="Container(9000).HasFocus(5)">204</ondown> <ondown condition="Container(9000).HasFocus(6)">205</ondown> <ondown condition="Container(9000).HasFocus(7)">206</ondown> <ondown condition="Container(9000).HasFocus(8)">207</ondown> <ondown condition="Container(9000).HasFocus(9)">208</ondown> <ondown condition="Container(9000).HasFocus(10)">209</ondown> <ondown condition="Container(9000).HasFocus(11)">210</ondown> <ondown condition="Container(9000).HasFocus(12)">211</ondown> <ondown condition="Container(9000).HasFocus(13)">212</ondown> <ondown condition="Container(9000).HasFocus(14)">213</ondown> <ondown condition="Container(9000).HasFocus(15)">214</ondown> <ondown condition="Container(9000).HasFocus(16)">215</ondown> <onleft>9000</onleft> <texturesliderbackground border="1">-</texturesliderbackground> <texturesliderbar border="6,0,6,0">scrollbar/texturesliderbar_hor.png</texturesliderbar> <texturesliderbarfocus border="6,0,6,0">scrollbar/texturesliderbarfocus_hor.png</texturesliderbarfocus> <textureslidernib>-</textureslidernib> <textureslidernibfocus>-</textureslidernibfocus> <showonepage>false</showonepage> <orientation>horizontal</orientation> <animation effect="fade" start="100" end="0" time="500" delay="500" condition="!Control.HasFocus(60) + !Container.Scrolling">Conditional</animation> </control> <control type="panel" id="200"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(1)] | Control.HasFocus(200) | [Container(9000).HasFocus(1) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>200</onright> <include>SerienplanerListCommonLayout</include> <oninfo>ActivateWindow(1199)</oninfo> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="201"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(2)] | Control.HasFocus(201) | [Container(9000).HasFocus(2) + Control.HasFocus(60)]</visible> > <include>SettingsFadeEffect</include> <onright>201</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="202"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(3)] | Control.HasFocus(202) | [Container(9000).HasFocus(3) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>202</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="203"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(4)] | Control.HasFocus(203) | [Container(9000).HasFocus(4) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>203</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="204"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(5)] | Control.HasFocus(204) | [Container(9000).HasFocus(5) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>204</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="205"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(6)] | Control.HasFocus(205) | [Container(9000).HasFocus(6) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>205</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="206"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(7)] | Control.HasFocus(206) | [Container(9000).HasFocus(7) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>206</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="207"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(8)] | Control.HasFocus(207) | [Container(9000).HasFocus(8) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>207</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="208"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(9)] | Control.HasFocus(208) | [Container(9000).HasFocus(9) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>208</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="209"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(10)] | Control.HasFocus(209) | [Container(9000).HasFocus(10) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>209</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="210"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(11)] | Control.HasFocus(210) | [Container(9000).HasFocus(11) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>210</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="211"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(12)] | Control.HasFocus(211) | [Container(9000).HasFocus(12) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>211</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="212"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(13)] | Control.HasFocus(212) | [Container(9000).HasFocus(13) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>212</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="213"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(14)] | Control.HasFocus(213) | [Container(9000).HasFocus(14) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>213</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="214"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(15)] | Control.HasFocus(214) | [Container(9000).HasFocus(15) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>214</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> <control type="panel" id="215"> <visible allowhiddenfocus="true">[Control.HasFocus(9000) + Container(9000).HasFocus(16)] | Control.HasFocus(215) | [Container(9000).HasFocus(16) + Control.HasFocus(60)]</visible> <include>SettingsFadeEffect</include> <onright>215</onright> <include>SerienplanerListCommonLayout</include> <content>plugin://plugin.program.serienplaner/?methode=get_SP_Guide&guidedate=$INFO[Container(9000).ListItem.Label]</content> </control> </control
-
-
sieht aber schon ganz gut aus.. jetzt hab ichs auch endlich kapiert wie es aussehen soll .
Genau das meinte ich.. hatte ich auch schon versucht mit einer studioview für Serien nach Studios respektive Sendern..
Das ruckelt selbst dort aus der DB schon ordentlich.. Seite auf/ab kannst da ganz vergessen wenn er gleichzeitig alle content erneuern muss..
Vielleicht doch per propertys wie es das original macht? Da sinds ja glaub ich listen die irgendwie vom Script gefüllt werden ohne content..Grüße
-
da ich jeden Tag auf der IFa bin, kommr ich leider nicht so recht voran...
Hab jetzt aber alles auf static content umgestellt und nun funktioniert schon richtig gut...
Hat ne weile gedauert bis ich mit den PARAM's klar gekommen bin aber ich denke, so könnte es dann auch aussehen....Externer Inhalt i.imgur.comInhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.die Anzeide der Itemsanzahl in Klammern funktionieert jetzt auch...
-
-
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!