Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2009
    Posts
    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

  2. #2
    Join Date
    Mar 2007
    Location
    HeaveN
    Posts
    534
    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

Similar Threads

  1. HOWTO: Distribute an AutoPlay Application with Setup Factory 6.0
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-25-2002, 02:33 PM
  2. INFO: Dynamically Resizing an Application at Runtime
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-21-2002, 02:23 PM
  3. HOWTO: Make an AutoPlay Application Expire
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-09-2002, 10:10 AM
  4. INFO: How to Set the Default Application Directory
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-25-2002, 12:02 PM
  5. Packages and If Statements
    By Medlir in forum Setup Factory 6.0
    Replies: 4
    Last Post: 05-09-2002, 03:51 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts