Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 8 of 8

Thread: Giving back...

  1. #1
    Join Date
    Feb 2004
    Location
    Washington DC Area
    Posts
    73

    Giving back...

    Like many of us, the projects that I develop using AMS are not able to be distributed due to restrictions placed upon us by our employers/folks who paid for the app.
    In my case, it's not a situation where I am not able to show my work in general but rather I am not able to release restricted corporate information that is contained inside my apps.

    With this in mind, I've decided to release bits and pieces of some of my projects. Just the AMS goodies, not the corporate meat.

    Here's a goofy active button piece I tossed together for one of my projects. I still haven't decided if I will incorporate it into the release version yet.

    Forgive the corporate branding; it's kinda integral to the piece...

    1.7MB JackMenu.apz

    Comments & suggestions welcome!

  2. #2
    Join Date
    Jun 2002
    Location
    Southeast USA
    Posts
    1,804
    Very cool, PJ. I like the way it exits, too. Very slick little use of corporate identity to leave with your audience. Nice work!
    Eric Darling
    eThree Media
    http://www.ethreemedia.com

  3. #3
    Join Date
    Jun 2001
    Location
    California
    Posts
    2,014
    Thanks PJ! Nice work.

  4. #4
    Join Date
    Feb 2004
    Location
    Washington DC Area
    Posts
    73

    More...

    Thanks for your positive replies. Always nice to get feedback!

    Here's another sample.

    In this case I wanted to collect some system info and email it.

    I had problems using the blat.dll method because my app was often run inside corporate LANs where Internet bound port 25 traffic was blocked.

    The fix was to setup a PHP script out in the world that would take my info and mail it for me.

    Here is the AMS portion: 166K SendEmail-PHP.apz

    I can't have folks sending email from my server so the script dosnt exist there, you'll have to setup the PHP on your own server before you can use this.

    PHP Code:
    <?php

      $mail_to 
    $_REQUEST['mail_to'];
      
    $subject $_REQUEST['subject'];
      
    $message $_REQUEST['message'];
      
    $mail_from $_REQUEST['mail_from']; 
      
    $reply_to $_REQUEST['reply_to'];
       
      
    $headers  "From: $mail_from\r\n";
      
    $headers .= "Reply-To: $reply_to\r\n";
      
    $headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
      
    $headers .= "Content-Transfer-Encoding: 7bit\r\n";
        
      
    mail(
      
    $mail_to,
      
    $subject,
      
    $message
      
    $headers  
      
    );

    ?>
    I hope this is helpful to someone.

  5. #5
    Join Date
    Feb 2006
    Posts
    89

    Where does the address of the php script go in am6?

    This could be really helpful to me but I can not work out where to enter in the address of the php script on my server.

  6. #6
    Join Date
    May 2006
    Posts
    5,380
    Quote Originally Posted by travisperkins
    This could be really helpful to me but I can not work out where to enter in the address of the php script on my server.

    on page 2,(send page) look in the page show tab, you will see it

    Send = HTTP.Submit("http://www.yourserver.com/ams_sendmail.php", SubmitValues, SUBMITWEB_POST, 20, 80, nil, nil);

    Dialog.Message("Result message from web server. Blank usually means your message was sent.", ""..Send, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);

  7. #7
    Join Date
    Jul 2007
    Posts
    64
    Thanks for your generosity. This is the only example that really works.

    Good luck to you!

  8. #8
    Join Date
    Jul 2007
    Posts
    1,512
    I like i never thought of using that kinda on and off option to move images
    thanks thats give me a idea to integrat in to a new project if i ever come up
    with a new idea that is for a project


    Rex


Similar Threads

  1. Move back screens from after install
    By toad32 in forum Setup Factory 6.0
    Replies: 1
    Last Post: 08-14-2003, 09:16 AM
  2. back to original url in a webbrowser object
    By yosik in forum AutoPlay Media Studio 4.0
    Replies: 5
    Last Post: 04-08-2003, 03:17 PM
  3. WebPage Jump and back to webpage
    By kpsmith in forum AutoPlay Media Studio 4.0
    Replies: 2
    Last Post: 11-06-2002, 12:56 PM
  4. getting back
    By oshtruck in forum AutoPlay Menu Studio 3.0
    Replies: 4
    Last Post: 05-03-2002, 10:13 AM
  5. Can the BACK button have a history?
    By jsdunlap in forum AutoPlay Menu Studio 3.0
    Replies: 2
    Last Post: 08-07-2001, 04:00 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