Kodi Community Forum
v16 Custom Dialog Progress popup in addon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: v16 Custom Dialog Progress popup in addon (/showthread.php?tid=291624)



Custom Dialog Progress popup in addon - Demonstratorz - 2016-09-20

how would i acheieve this. for the sake of the argument ive just put the one from my skin into my addon skin folder.


RE: Custom Dialog Progress popup in addon - ronie - 2016-09-20

does this answer your question?
http://mirrors.xbmc.org/docs/python-docs/16.x-jarvis/xbmcgui.html#DialogProgress


RE: Custom Dialog Progress popup in addon - Demonstratorz - 2016-09-20

not really. i see a progreess control and i noticed how theyve implimented it in the xml but id like to use a custom window
well maybe if i use WindowXMLDialog insead and impliment that on top of my window. thanks again ronie


RE: Custom Dialog Progress popup in addon - Demonstratorz - 2016-09-20

http://forum.kodi.tv/showthread.php?tid=162901


RE: Custom Dialog Progress popup in addon - tknorris - 2016-09-20

I literally just coded something like this yesterday.

This Context Manager pops-up a native progress dialog if it can, if not it falls back to a custom one. (Line 174)


RE: Custom Dialog Progress popup in addon - Demonstratorz - 2016-09-20

(2016-09-20, 23:28)tknorris Wrote: I literally just coded something like this yesterday.

This Context Manager pops-up a native progress dialog if it can, if not it falls back to a custom one. (Line 174)

awesome thanks man