DimitriFromParis Posted December 20, 2015 Share Posted December 20, 2015 Hi all. I am doing a custom setup of the "overview" screen seen below. For some reason, only some of the match widgets are read by any of the containers seen. For example if i copy paste the formation (home or away) into the lower left side panel (which is empty in the pic) it doesn't show in the drop-down menu of the panel. If i choose the "show both formation" it is chooseable, but when picked it just shows two empty pitches side by side, with no player icons on them. If i inset the code for match incidents (the one in the middle panel on top in the pic) no problem at all... What decides which work, which doesn't on this screen - and why does the formations code work, but only by showing pitches without kit icons? Quite weird. [/img] Link to post Share on other sites More sharing options...
michaeltmurrayuk Posted December 22, 2015 Share Posted December 22, 2015 Each of the Overview sub-panels should already include an option for the formation screen, adding the code for the extra formation panel inside the subpanel is likely to be what is breaking it as the game doesn't like it if you have the same id assigned to more than one view inside each subpanel. For the both formations panel you need to make sure you are using the correct coding as it is slightly different and should look like this: <widget class="both_match_formation_panels" title="Formations" file="match both formations" id="bmfs"/> Link to post Share on other sites More sharing options...
DimitriFromParis Posted January 27, 2016 Author Share Posted January 27, 2016 Here is the code. As far as i can see, the code is not doubled anywhere. It seems to appear only once (i made sure the panel files the pieces of code point to are in the panels folder as well): <widget class="match_view_selector_panel" id="MVS6" default_item="stsz" minimum_width="350" default_width="-1" priority="2" file="client object viewer selector match"> <record id="object_property"> <integer id="get_property" value="objt" /> <integer id="set_property" value="objt" /> </record> <widget class="match_info_panel" id="bmin" file="match info overview" small_version="true"> <translation id="title" translation_id="292788" type="use" value="Overview[COMMENT: match screen; match overview panel title]" /> </widget> <widget class="match_stats_panel" id="stsz" file="match stats"> <translation id="title" translation_id="247439" type="use" value="Match Stats" /> </widget> <widget class="match_stats_panel" id="mtst" file="match stats overview"> <translation id="title" translation_id="247439" type="use" value="Match Stats" /> </widget> <widget class="match_action_zones_panel" id="mazp" file="match action zones small"> <translation id="title" translation_id="247327" type="use" value="Action Zones" /> <colour id="ptlc" name="white" /> </widget> <widget class="match_home_team_motivation_short_panel" id="htms"> <translation id="title" translation_id="331892" type="use" value="Home Player Body Language" /> </widget> <widget class="match_away_team_motivation_short_panel" id="atms"> <translation id="title" translation_id="331834" type="use" value="Away Player Body Language" /> </widget> <widget class="home_match_team_stats_panel" id="hfMs" file="match team stats overview" /> <widget class="away_match_team_stats_panel" id="afMs" file="match team stats overview" /> <widget class="match_home_analysis_panel" id="Mhan" file="match analysis small"> <translation id="title" translation_id="281395" type="use" value="Home Analysis" /> </widget> <widget class="match_away_analysis_panel" id="Maan" file="match analysis small"> <translation id="title" translation_id="281396" type="use" value="Away Analysis" /> </widget> <widget class="match_report_panel" id="mtrp" file="match report small"> <translation id="title" translation_id="248079" type="use" value="Report" /> </widget> <widget class="match_latest_scores_panel" id="mlsp" file="match latest scores small" save_session_state="true"> <translation id="title" translation_id="243219" type="use" value="Latest Scores" /> </widget> <widget class="match_goal_update_panel" id="mgup" file="match goal update small"> <translation id="title" translation_id="336459" type="use" value="Latest Event Updates[COMMENT: match screen panel; information on goals, red cards, injuries etc from all matches taking place on a matchday]" /> </widget> <widget class="match_league_table_panel" id="mltp" MLTs="true"> <translation id="title" translation_id="248082" type="use" value="League Table" /> </widget> </widget> Result: Not there!!! Link to post Share on other sites More sharing options...
michaeltmurrayuk Posted February 4, 2016 Share Posted February 4, 2016 There is no formation widget code included in the code that you have quoted, you have also got the match stats code twice which may cause problems if you try and select either of those options. Link to post Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.