Announcement

Collapse
No announcement yet.

SUF 6.0 Select Packages

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • SUF 6.0 Select Packages

    Hi !

    My question is how to select only one package from the Select Packages list, nad not to be able select more than one? I need to use the packages because they are different languages.

    Thx the answer in advance...

    Lipi


  • #2
    Re: SUF 6.0 Select Packages

    if you need to develop a multilanguage install routine, in my opinion, the best is to use a radio button screen.

    Comment


    • #3
      Re: SUF 6.0 Select Packages

      Use a "Radio Buttons 12" screen instead, so the choices will be mutually exclusive.

      In the "Store selected button's value in variable:" field for each radio button, put the name of the package variable that you used for each package, as appropriate.

      --[[ Indigo Rose Software Developer ]]

      Comment


      • #4
        Re: SUF 6.0 Select Packages

        Originally posted by Lorne:
        Use a "Radio Buttons 12" screen instead, so the choices will be mutually exclusive.

        In the "Store selected button's value in variable:" field for each radio button, put the name of the package variable that you used for each package, as appropriate.

        1st thanx for the answer, but there is something, I don't understand. 4 example I have HUN and ENG, at the 1st two radio buttons.At the "Store selected button's value in variable:" I can only specify only one variable for all radio buttons.If I put in the rb value field the package names it is not working, copying all the files.So where can I get the connection between the rbs and the files??
        Thx in advance.....

        Lipi

        Comment


        • #5
          Re: SUF 6.0 Select Packages

          http://www.indigorose.com/ubb/Forum7/HTML/000570.html

          hope this will help u, if u need more help you can email me your project to, i will take a look at it.

          [email protected]

          Comment


          • #6
            Re: SUF 6.0 Select Packages

            Originally posted by Lipi:
            1st thanx for the answer, but there is something, I don't understand. 4 example I have HUN and ENG, at the 1st two radio buttons.At the "Store selected button's value in variable:" I can only specify only one variable for all radio buttons.If I put in the rb value field the package names it is not working, copying all the files.So where can I get the connection between the rbs and the files??
            Thx in advance.....
            Lipi
            Sorry, I should have double-checked before I posted that; you're right, there is only one variable to hold the "radio button value" of the radio button that is selected.

            You'll need to use some IF actions to check the value of the %RadioSelection% variable (or whatever you rename it to) and assign TRUE or FALSE to the appropriate package variable using Assign Value actions.

            Tip: another method would be to use a Goto Label action instead: on the After action tab for the Radio Buttons 12 screen, set up one label for each radio button (option) that you have. Each label should have the same name as the "radio button value" for the corresponding radio button. Use a Goto Label action to "jump" to %RadioSelection% (or whatever you call it)...this way, it will jump to the label that has the same name as the "radio button value" for the radio button that was selected.

            Beneath each label, add Assign Value actions set the package variables to TRUE or FALSE as required for each situation.

            This method would actually run a bit faster than using IF actions, although you probably wouldn't be able to tell any difference between the two methods.
            --[[ Indigo Rose Software Developer ]]

            Comment

            Working...
            X