User Tag List

Results 1 to 6 of 6

Thread: Installation Build Question

  1. #1
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Oct 2007
    Posts
    82
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Installation Build Question

    This is the kind of question that I could probably resolve for myself after about twenty false-starts and several hours of wasted time, but I'm really hoping someone can provide me an answer and save me some trouble.

    My game is made up of five executables, all of which call on various video files and each other, terminating themselves after they open the new executable and passing information back and forth with the .INI file. (It's a little clumsy, but it works.) But when I build as an application, I get a long string of warnings about how the files aren't in the appropriate directories which may prevent the program(s) from working on a different computer.

    So... How exactly do I set up a directory with the appropriate files in the appropriate places, and which command should I use to make sure that when the execuatables "start" each other, they're looking in the right place? (Fixed pathname, evaluated pathname...?)

  2. #2
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: Installation Build Question

    Always use evaluated pathname if you plan to distribute your app. This means that for file browsers you click the expression button, and when possible use the evaluated expression events.

    To get a file that is in the same directory as your app, you can type one of the following into the expression editor.

    This is the preferred method:
    Code:
    AppPath$+"MyFileName.exe"
    The AppPath$ expression can be retrieved from the Special Object (two computers) or typed in directly.

    This is an alternative method and should only be used in places where the AppPath$ expression cannot be used:
    Code:
    ".\MyFileName.exe"
    Working as fast as I can on Fusion 3

  3. #3
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Oct 2007
    Posts
    82
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Installation Build Question

    Thanks! I'll give it a try.

  4. #4
    Obliivious
    Guest

    Re: Installation Build Question

    Hey, I don't know how to use this evaluated pathname. I tried using ".\MyFileName.exe", but I got an error message that says syntax error. Any advice?

  5. #5
    Forum Moderator

    Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUniversal Windows Platform Export ModuleSWF Export ModuleXNA Export ModuleInstall Creator Pro
    nivram's Avatar
    Join Date
    Jul 2006
    Location
    Bandon, Oregon
    Posts
    6,773
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)

    Re: Installation Build Question

    Maybe...apppath$+"myfilename.exe"

    Marv
    ​458 TGF to CTF 2.5+ Examples and games
    http://www.castles-of-britain.com/mmf2examples.htm

  6. #6
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Installation Build Question

    Quote Originally Posted by Obliivious
    Hey, I don't know how to use this evaluated pathname. I tried using ".\MyFileName.exe", but I got an error message that says syntax error. Any advice?
    You left off the quotes. Don't.

Similar Threads

  1. Build #255 installation failed
    By Czentnar in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 21st July 2012, 05:55 PM
  2. Question of Unicode version of Build 252
    By ASD in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 27th July 2011, 07:06 AM
  3. Question - Running File Direct From Installation
    By ashfaellchen in forum Install Creator and Patch Maker
    Replies: 2
    Last Post: 30th May 2009, 09:45 AM
  4. Adding folders into the Build installation file
    By Robin_Manager in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 15th November 2008, 07:46 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
  •