Kodi Community Forum
Arctic: Zephyr - Reloaded - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Arctic: Zephyr - Reloaded (/showthread.php?tid=337862)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418


RE: Arctic: Zephyr - Reloaded - FXB78 - 2021-04-02

(2021-04-02, 05:55)derrgoo123 Wrote: Maybe this question has been answered. it appears that movies by directors or movie actors information is being pulled by the moviedb helper add on? Therefore, is it possible when clicking on movies by directors or actors we can play the movie from that point? So, to be clear, if I see other movies from that director I want to watch can I watch from that point? Currently, I do not see any play icon but only can review this information?
I think when using the i button when nothing is playing it uses Embuary Helper, but when accessing via the Extra Info button from the Video OSD (whilst in-play) it uses TMDB Helper. An option to use TMDB Helper by default from the info screen would be great, however I don't know how easy this would be to achieve.


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

(2021-04-01, 21:01)pettergulbra Wrote:
(2021-03-20, 15:10)beatmasterrs Wrote:
(2021-03-16, 09:37)pettergulbra Wrote: I use "home menu style" Vertical Multi-Widgets, is it possible to always let the main menu be visible, not go out on the left side when you are using the widgets etc on the right side?

Please download and test this version:

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/homemenu-vertical-multiwidgets-noslide-testing.zip
Sorry for really late answer :-(

This was exactly was I was looking for. Works good :-)
Hope it get's in the releases.

Kindly

No problem Smile i have merged this into the master branch Smile


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

@FXB78 @derrgoo123 

It currently works as follows:

All list content in DialogVideoInfo, except actors comes from tmdb helper. If you click on it (except actors, there you have to click "up"), then a embuary.info dialog opens. With the video OSD it is the same, if you click on extended info, an embuary.info dialog opens. So all extended info dialogs are provided by embuary.info. In embuary.info dialogs, you can see e.g. movies in a list. If a movie from that list in in DB, you can see the play-icon. The visible condition for that is the following:

xml:
<visible>[!String.IsEmpty(Container(10051).ListItem.DBID) + !String.IsEmpty(Container(10051).ListItem.Property(file)) + !String.IsEqual(Container(10051).ListItem.Property(call),tv)] | [!String.IsEmpty(Container(10051).ListItem.DBID) + String.IsEqual(Container(10051).ListItem.Property(call),tv)]</visible>
 

I can take a look at it, when I have a bit more time, but can't promise anything.


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

Is it just about the visibility of the play button? Then I could add an override setting that makes the button always visible.


RE: Arctic: Zephyr - Reloaded - pettergulbra - 2021-04-02

(2021-04-02, 10:20)beatmasterrs Wrote:
(2021-04-01, 21:01)pettergulbra Wrote:
(2021-03-20, 15:10)beatmasterrs Wrote: Please download and test this version:

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/homemenu-vertical-multiwidgets-noslide-testing.zip
Sorry for really late answer :-(

This was exactly was I was looking for. Works good :-)
Hope it get's in the releases.

Kindly

No problem Smile i have merged this into the master branch Smile

Thanks a bunch :-)

Now I have another question:
I have tried to make a home button, like things work i Android an other apps.
I have made an script that "pushes" back button some times, because this seems to be the best solution.
But, when I'm inside an widget, it won't work.

This is the code I get when I'm in an widget:
Code:
#HandleKey: n (0xf04e) pressed, action is Playlist
#Keyboard: scancode: 0x2a, sym: 0x110, unicode: 0x006e, modifier: 0x0
And then nothing happens or sometimes it goes up an menu or what to say. Not quite sure.

If I'm in an normal menu, like in settings I get this code:
Code:
#HandleKey: n (0xf04e) pressed, action is activatewindow(home)
#Activating window ID: 10000
This is with the ActivateWindows(home), but it acts the same with script I have made.

Don't know if this is something you work with, but had to ask.
Maybe you know something about this :-)

Kindly


RE: Arctic: Zephyr - Reloaded - derrgoo123 - 2021-04-02

(2021-04-02, 15:54)beatmasterrs Wrote: Is it just about the visibility of the play button? Then I could add an override setting that makes the button always visible.

I looked again but I don’t see the play button. However, does this depend on what library items that are loaded? I have not loaded my library movies yet just using addons.


RE: Arctic: Zephyr - Reloaded - derrgoo123 - 2021-04-02

(2021-04-02, 16:23)pettergulbra Wrote:
(2021-04-02, 10:20)beatmasterrs Wrote:
(2021-04-01, 21:01)pettergulbra Wrote: Sorry for really late answer :-(

This was exactly was I was looking for. Works good :-)
Hope it get's in the releases.

Kindly

No problem Smile i have merged this into the master branch Smile

Thanks a bunch :-)

Now I have another question:
I have tried to make a home button, like things work i Android an other apps.
I have made an script that "pushes" back button some times, because this seems to be the best solution.
But, when I'm inside an widget, it won't work.

This is the code I get when I'm in an widget:
Code:
#HandleKey: n (0xf04e) pressed, action is Playlist
#Keyboard: scancode: 0x2a, sym: 0x110, unicode: 0x006e, modifier: 0x0
And then nothing happens or sometimes it goes up an menu or what to say. Not quite sure.

If I'm in an normal menu, like in settings I get this code:
Code:
#HandleKey: n (0xf04e) pressed, action is activatewindow(home)
#Activating window ID: 10000
This is with the ActivateWindows(home), but it acts the same with script I have made.

Don't know if this is something you work with, but had to ask.
Maybe you know something about this :-)

Kindly

I didn’t understand your question fully but do you want your android apps in a widget? If so, that is easy and can explain how if this is what your needing.


RE: Arctic: Zephyr - Reloaded - pettergulbra - 2021-04-02

(2021-04-02, 16:28)derrgoo123 Wrote:
(2021-04-02, 16:23)pettergulbra Wrote:
(2021-04-02, 10:20)beatmasterrs Wrote: No problem Smile i have merged this into the master branch Smile

Thanks a bunch :-)

Now I have another question:
I have tried to make a home button, like things work i Android an other apps.
I have made an script that "pushes" back button some times, because this seems to be the best solution.
But, when I'm inside an widget, it won't work.

This is the code I get when I'm in an widget:
Code:
#HandleKey: n (0xf04e) pressed, action is Playlist
#Keyboard: scancode: 0x2a, sym: 0x110, unicode: 0x006e, modifier: 0x0
And then nothing happens or sometimes it goes up an menu or what to say. Not quite sure.

If I'm in an normal menu, like in settings I get this code:
Code:
#HandleKey: n (0xf04e) pressed, action is activatewindow(home)
#Activating window ID: 10000
This is with the ActivateWindows(home), but it acts the same with script I have made.

Don't know if this is something you work with, but had to ask.
Maybe you know something about this :-)

Kindly

I didn’t understand your question fully but do you want your android apps in a widget? If so, that is easy and can explain how if this is what your needing.
Hi

I have my apps in an widget :-)

I try to make an button on my remote control that takes me home/main menu. 
And it works with the command in setting menu, but if I'm inside an widget it does not work. 
Code mentioned in my last post :-)


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

(2021-04-02, 16:57)pettergulbra Wrote:
(2021-04-02, 16:28)derrgoo123 Wrote:
(2021-04-02, 16:23)pettergulbra Wrote: Thanks a bunch :-)

Now I have another question:
I have tried to make a home button, like things work i Android an other apps.
I have made an script that "pushes" back button some times, because this seems to be the best solution.
But, when I'm inside an widget, it won't work.

This is the code I get when I'm in an widget:
Code:
#HandleKey: n (0xf04e) pressed, action is Playlist
#Keyboard: scancode: 0x2a, sym: 0x110, unicode: 0x006e, modifier: 0x0
And then nothing happens or sometimes it goes up an menu or what to say. Not quite sure.

If I'm in an normal menu, like in settings I get this code:
Code:
#HandleKey: n (0xf04e) pressed, action is activatewindow(home)
#Activating window ID: 10000
This is with the ActivateWindows(home), but it acts the same with script I have made.

Don't know if this is something you work with, but had to ask.
Maybe you know something about this :-)

Kindly

I didn’t understand your question fully but do you want your android apps in a widget? If so, that is easy and can explain how if this is what your needing.
Hi

I have my apps in an widget :-)

I try to make an button on my remote control that takes me home/main menu. 
And it works with the command in setting menu, but if I'm inside an widget it does not work. 
Code mentioned in my last post :-)

Okay if I understand correctly, then you are trying to get back to home, when you have focused a home widget? Or is there a dialog open? What do you mean with "inside a widget"?


RE: Arctic: Zephyr - Reloaded - pettergulbra - 2021-04-02

(2021-04-02, 18:16)beatmasterrs Wrote:
(2021-04-02, 16:57)pettergulbra Wrote:
(2021-04-02, 16:28)derrgoo123 Wrote: I didn’t understand your question fully but do you want your android apps in a widget? If so, that is easy and can explain how if this is what your needing.
Hi

I have my apps in an widget :-)

I try to make an button on my remote control that takes me home/main menu. 
And it works with the command in setting menu, but if I'm inside an widget it does not work. 
Code mentioned in my last post :-)

Okay if I understand correctly, then you are trying to get back to home, when you have focused a home widget? Or is there a dialog open? What do you mean with "inside a widget"?

I think it is my English that makes my explanation little bit strange. I'll try again :-)
But yes, I'll trying to get back home, so to say.
I have some playlists added to my home screen as widgets. Like newly added or unplayed movies and so on.
When I'm in those playlists (widgets in my head :-)), the home button (remote button) won't work. The it uses the command playlist, and I can't understand why,
when it doesn't do that in a plain menu like in settings menu.

I'll attach my log, where I'm just have startet Kodi->open playlist>try "home button" (does not work)->back->arrow down to exit Kodi :-)

Hope this explanation is better :-)


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

(2021-04-02, 19:00)pettergulbra Wrote:
(2021-04-02, 18:16)beatmasterrs Wrote:
(2021-04-02, 16:57)pettergulbra Wrote: Hi

I have my apps in an widget :-)

I try to make an button on my remote control that takes me home/main menu. 
And it works with the command in setting menu, but if I'm inside an widget it does not work. 
Code mentioned in my last post :-)

Okay if I understand correctly, then you are trying to get back to home, when you have focused a home widget? Or is there a dialog open? What do you mean with "inside a widget"?

I think it is my English that makes my explanation little bit strange. I'll try again :-)
But yes, I'll trying to get back home, so to say.
I have some playlists added to my home screen as widgets. Like newly added or unplayed movies and so on.
When I'm in those playlists (widgets in my head :-)), the home button (remote button) won't work. The it uses the command playlist, and I can't understand why,
when it doesn't do that in a plain menu like in settings menu.

I'll attach my log, where I'm just have startet Kodi->open playlist>try "home button" (does not work)->back->arrow down to exit Kodi :-)

Hope this explanation is better :-)

Thanks for your explanation. I will try to help you Smile Unfortunately, I do not yet know exactly which window you are currently in kodi. Can you please enable debugging in "settings -> skin settings -> Arctic: Zephyr - Reloaded -> Debugging -> Show debug information"? With this you can see which window you are currently in kodi. In the upper left corner the xml is displayed.

So, when you press the home button/command to go to home, what window/xml are you currently in kodi?


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-02

@FXB78 @derrgoo123 

I have added a setting for override the visible condition of the play button in embuary info dialog. If you like, you can test it from this branch/zip:

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/extended-info-play-testing.zip

The setting for testing you can find in skin settings -> extras at the bottom. With this setting enabled, the play button in embuary video info dialog is always shown. The play function is the same as in dialogvideoinfo. I dont know, if this works, we will see... Smile


RE: Arctic: Zephyr - Reloaded - derrgoo123 - 2021-04-03

(2021-04-02, 23:14)beatmasterrs Wrote: @FXB78 @derrgoo123 

I have added a setting for override the visible condition of the play button in embuary info dialog. If you like, you can test it from this branch/zip:

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/extended-info-play-testing.zip

The setting for testing you can find in skin settings -> extras at the bottom. With this setting enabled, the play button in embuary video info dialog is always shown. The play function is the same as in dialogvideoinfo. I dont know, if this works, we will see... Smile

The play button now shows up! But, when I press play, it doesn't play but it bounces back to home on the movie/ widget I first clicked on Information.

Here is a video to demonstrate. https://www.dropbox.com/s/2mpive2al5m0dv9/IMG_1742.mp4?dl=0


RE: Arctic: Zephyr - Reloaded - pettergulbra - 2021-04-03

(2021-04-02, 23:00)beatmasterrs Wrote:
(2021-04-02, 19:00)pettergulbra Wrote:
(2021-04-02, 18:16)beatmasterrs Wrote: Okay if I understand correctly, then you are trying to get back to home, when you have focused a home widget? Or is there a dialog open? What do you mean with "inside a widget"?

I think it is my English that makes my explanation little bit strange. I'll try again :-)
But yes, I'll trying to get back home, so to say.
I have some playlists added to my home screen as widgets. Like newly added or unplayed movies and so on.
When I'm in those playlists (widgets in my head :-)), the home button (remote button) won't work. The it uses the command playlist, and I can't understand why,
when it doesn't do that in a plain menu like in settings menu.

I'll attach my log, where I'm just have startet Kodi->open playlist>try "home button" (does not work)->back->arrow down to exit Kodi :-)

Hope this explanation is better :-)

Thanks for your explanation. I will try to help you Smile Unfortunately, I do not yet know exactly which window you are currently in kodi. Can you please enable debugging in "settings -> skin settings -> Arctic: Zephyr - Reloaded -> Debugging -> Show debug information"? With this you can see which window you are currently in kodi. In the upper left corner the xml is displayed.

So, when you press the home button/command to go to home, what window/xml are you currently in kodi?

When the home button/command don't work I'm in MyVideoNav.xml 
And from what I can see, that seems to be all the widgets that I have in my setup. Included the ones that i "custum" widgets.

Kindly


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2021-04-03

(2021-04-03, 03:16)derrgoo123 Wrote:
(2021-04-02, 23:14)beatmasterrs Wrote: @FXB78 @derrgoo123 

I have added a setting for override the visible condition of the play button in embuary info dialog. If you like, you can test it from this branch/zip:

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/extended-info-play-testing.zip

The setting for testing you can find in skin settings -> extras at the bottom. With this setting enabled, the play button in embuary video info dialog is always shown. The play function is the same as in dialogvideoinfo. I dont know, if this works, we will see... Smile

The play button now shows up! But, when I press play, it doesn't play but it bounces back to home on the movie/ widget I first clicked on Information.

Here is a video to demonstrate. https://www.dropbox.com/s/2mpive2al5m0dv9/IMG_1742.mp4?dl=0

Can you please try again? Note: This is only a version for testing the function. Behind the Movie Title, the tmdb id should appear for debugging after a few seconds. With this, the play button should be enabled.

https://github.com/beatmasterRS/skin.arctic.zephyr.mod/archive/refs/heads/extended-info-play-testing.zip