show img if application installed??

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Rashka
    Forum Member
    • Feb 2009
    • 8

    show img if application installed??

    Hi there,

    is it possible to set a script that only show f.e. the Skype Icon if Skype is installed and set it invisible if it is not?

    And how do i "read" the path to the f.e. skype.exe from registry and set ist to a file.open script?

    hope you can help me.
    regards
    Rashka
  • jackdaniels
    No longer a forum member
    • Mar 2007
    • 533

    #2
    Here that will show or hide the Image...

    Code:
    Skype = Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "Software\\Policies\\Skype\\Phone");
    
    if Skype then
    	Image.SetVisible("Image1", true);
    	else
    	Image.SetVisible("Image1", false);
    end

    Comment

    Working...
    X