Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2005
    Posts
    572

    CheckBox.SetProperties not work why???

    tProperties = {};
    tProperties.TextAlignment = ALIGN_RIGHT;
    tProperties.ButtonAlignment = BTN_ALIGN_RIGHT;
    tProperties.ReadOrder = READ_RIGHT_TO_LEFT;
    CheckBox.SetProperties("CheckBox1", tProperties);

  2. #2
    Join Date
    Jul 2002
    Location
    Just South of Reality
    Posts
    778
    See if Getting the properties first, works any better for you...

    Code:
    tProperties=CheckBox.GetProperties("CheckBox1")
    tProperties.TextAlignment = ALIGN_RIGHT;
    tProperties.ButtonAlignment = BTN_ALIGN_RIGHT;
    tProperties.ReadOrder = READ_RIGHT_TO_LEFT;
    CheckBox.SetProperties("CheckBox1", tProperties);
    What you had seems to work on page preload, but wasn't working dynamically. You may want to ping IR support for clarification.

Similar Threads

  1. ANSI To UNICODE Is Finished!
    By coderanger in forum AutoPlay Media Studio 6.0
    Replies: 7
    Last Post: 08-13-2007, 09:27 AM
  2. Any one can let me know if this work with AMS
    By DaSoul in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 06-23-2007, 09:21 PM
  3. Does Autorun MAX Work on Macs?
    By Adam in forum Autorun MAX! 2.1 FAQ
    Replies: 0
    Last Post: 08-29-2006, 12:50 PM
  4. Having problems getting installer frontend to work
    By Scott Lawrence in forum AutoPlay Media Studio 5.0
    Replies: 2
    Last Post: 07-24-2006, 03:49 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