Eclipse project now.

This commit is contained in:
2017-11-12 17:28:39 +01:00
parent 8ff7321a17
commit 7b17b52e33
13 changed files with 848 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
import xbmcaddon
import xbmcgui
def run():
# Implement what your contextmenu aims to do here
# For example you could call executebuiltin to call another addon
# xbmc.executebuiltin("RunScript(script.example,action=show)")
# You might want to check your addon.xml for the visible condition of your contextmenu
# Read more here http://kodi.wiki/view/Context_Item_Add-ons
addon = xbmcaddon.Addon()
addon_name = addon.getAddonInfo('name')
line1 = "Hello World!"
xbmcgui.Dialog().ok(addon_name, line1)