Having trouble calling the favorites for Omega, not sure what I'm doing wrong



Here is the log:

https://paste.kodi.tv/olisatolas.kodi

So I have favorites on my main horizontal menu, when I click on it, says:

Code:

2024-04-27 21:46:12.049 T:7924    error <general>: Window Translator: Can't find window Favourites
2024-04-27 21:46:12.050 T:7924    error <general>: Activate/ReplaceWindow called with invalid destination window: Favourites

I’ve searched my entire skin for: ActivateWindow(favourites) and replaced it with: ActivateWindow(favouritesbrowser)

The file was renamed as: MyFavourites.xml as defined from DialogFavourites.xml.

I realize that the entire structure of the file may not be 100% right because it is still using ID=450, but as it stands, it isn’t even finding the “window” as shown by the log.

Here is the entire MyFavourites.xml. Is there something I’m missing? I tried to follow other skins “approach” realizing they are not all the same, but the key elements seem to be the same at the start of file.

50 is my simple list view for the skin, and I searched my entire skin for menucontrol and they all come back as 9050, so that should be right for the menucontrol value.

Anyway, looking for some guidance on how I can fix it. TY.

xml:


<?xml version="1.0" encoding="utf-8"?>
<window>
    <defaultcontrol always="true">50</defaultcontrol>
    <menucontrol>9050</menucontrol>
    <views>50,52,55</views>
    <include>AnimationDialogPopupWindow</include>
    <controls>
        <control type="group">
            <include content="DialogBackground">
                <param name="width" value="1220"/>
                <param name="height" value="760"/>
                <param name="label">$LOCALIZE[1036]</param>
            </include>
            <control type="list" id="450">
                <left>20</left>
                <top>90</top>
                <width>858</width>
                <height>600</height>
                <onleft>60</onleft>
                <onright>8000</onright>
                <pagecontrol>60</pagecontrol>
                <include content="DialogListDefault">
                    <param name="id" value="450"/>
                </include>
            </control>
            <control type="image">
                <left>878</left>
                <include>DialogVerticalSeparator</include>
            </control>
            <control type="grouplist" id="8000">
                <right>50</right>
                <top>100</top>
                <width>281</width>
                <onleft>450</onleft>
                <include content="DialogButtonAction">
                    <param name="id">8001</param>
                    <param name="label">$LOCALIZE[15067]</param>
                    <param name="onclick">Action(close)</param>
                </include>
            </control>
            <include content="DialogImage">
                <param name="texture">$INFO[Container(450).ListItem.Icon]</param>
            </include>
            <control type="image">
                <include>DialogHorizontalSeparator</include>
            </control>
            <control type="label">
                <include>DialogItemCountLabel</include>
                <label>$INFO[Container(450).NumItems,, $LOCALIZE[31001]]$INFO[Container(450).CurrentPage, - ]$INFO[Container(450).NumPages,/]</label>
            </control>
            <control type="scrollbar" id="60">
                <onright>450</onright>
                <include>DialogScrollBar</include>
            </control>
        </control>
    </controls>
</window>