Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 5 of 5
  1. #1
    Join Date
    Jan 2005
    Posts
    18

    Problem with Dialog.Message

    Hey there all. I know this has to be an easy fix, but I am just having one of those days. I am trying to get a dialog box with a little text and then the results of a variable. Here is what I put:

    Code:
    Dialog.Message ("Important", "Documents have been copied to ", Session.Expand"%ManualDir%!", MB_OK, MB_ICONEXCLAMATION);
    Thanks,

    Parallon

  2. #2
    Join Date
    May 2003
    Location
    Pendleton, Oregon
    Posts
    1,038
    I haven't tried this, but try changing
    Session.Expand"%ManualDir%!"
    to
    SessionVar.Expand("%ManualDir%").."!"

    .
    Add-ons for AMS. Toolbar Buttons Galore, System Animations, the Window Construction Kit, and more.
    Visit Acme-Tek

  3. #3
    Join Date
    Sep 2004
    Posts
    60
    Quote Originally Posted by parallon
    Hey there all. I know this has to be an easy fix, but I am just having one of those days. I am trying to get a dialog box with a little text and then the results of a variable. Here is what I put:


    Thanks,

    Parallon
    Bad stuff in RED

    Code:
    Dialog.Message ("Important", "Documents have been copied to ", Session.Expand"%ManualDir%!", MB_OK, MB_ICONEXCLAMATION);
    Fixed version
    Code:
    Dialog.Message ("Important", "Documents have been copied to "..SessionVar.Expand("%ManualDir%!"), MB_OK, MB_ICONEXCLAMATION);

  4. #4
    Join Date
    Dec 2003
    Location
    Location! Location!
    Posts
    6,137
    Right, the Var added in! (and the elipses)

    Nice!
    Intrigued

  5. #5
    Join Date
    Jan 2005
    Posts
    18

    Thank you...

    Worked perfect! Thank you.

Similar Threads

  1. Video Problem
    By ScottDuncan in forum AutoPlay Media Studio 5.0
    Replies: 0
    Last Post: 07-10-2004, 01:38 PM
  2. PROBLEM: Setup Starts and then Crashes
    By Support in forum Setup Factory 5.0
    Replies: 0
    Last Post: 10-15-2002, 03:02 PM
  3. INFO: Tips for Debugging Action Lists in AutoPlay Media Studio 4.0
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-03-2002, 08:38 AM

Posting Permissions

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