Email Script

Hi,
I'd like to use the components in the Director Library to
make an e-mail form (your name, your e-mail address, your friends
e-mail address and the message). Does anyone know a Script that can
be attached to the Submit button that will actually send the
message directly from Director (without using an e-mail client)?
Also, does anyone know a Script for a browse button that will
open your local directory and allow you to attach a file to the
e-mail (directly from Director)?
Lastly, does anyone know a Script for an error message that
will inform the person that not all fields were filled or a message
that tells them that their message was sent successfully?
I've looked all over. Lots of stuff in Flash which I could
use but I'm trying to do this in Director.
Thanks,
mindforge

Hi,
No need to apologise for questions that may be 'thick'. Once
you know the
answer, the question may appear stupid. But it's definitely
not the case when
you're just learning.
Director movies - DIRs (source files), DCRs (Shockwave) and
DXRs (protected
files) are all cross platform. The same file can run on a PC
or Mac. The
projector self executable is platform specific. With Director
MX 04 +, you can
create a PC and Mac projectors from a single computer. But,
you create 2
separate files. The projectors can link to DIRs, DCRs, DXRs,
that can be shred
between the Mac and PC versions.
When you use Xtras, like DirectEmail, the Xtra extension is
also platform
specific so you need to bundle the Mac one with the mac
projector and PC version
for the PC projector.
I have a stub projector tutorial that covers the creation
process for projectors
and using Xtras. it is at:
http://www.deansdirectortutorials.com/publishing/projector.htm
regards
Dean
Director Next Roadmap Survey
http://www.deansdirectortutorials.com/survey/DirectorRoadmap/
Director Lecturer / Consultant / Director Enthusiast
http://www.deansdirectortutorials.com/
http://www.multimediacreative.com.au
email: [email protected]

Similar Messages

  • Render and Email script

    Hello everybody. I have a question that I have thoroughly researched on the web with no results.
    I am trying to get the default After Effects "Render and Email" script to run properly. I have only been able to successfully send FROM one specific email address TO another (slightly less specific) email address. Most other email services I put in (icloud, gmail, etc) all give strange errors upon execution.
    For the SENDING email address, I'm currently using one I created that is a part of my web hosting account (this is the only account I am able to successfully send from). For RECEIVING, I've only successfully gotten my gmail address to work. All other receiving addresses don't always give me error, but also never show up. Either that, or I get very weird errors. The most common one I get is "Unaable to send mail. 533 5.7.1 AUTH command is not enabled."
    I haven't been able to find this error documented anywhere online. I'd like to be able to send emails to my icloud account, since it pushes email notifications to my phone in real time.
    Long ago someone by the name of Ko Maruyama supposedly explained all this in detail, but the writeup was posted on a .mac website (http://homepage.mac.com/komaruyama/Tutorials/AE/AE_javamail/AE_mail.html), which Apple officially discontinued/took down several years ago.
    Does anyone have any experience with this?

    For Mac, the path is of course slightly different. If you cannot delete the file, you should at least be able to edit it in Extend Script Toolkit or any text editor or run the script separately to change its config data. Works for me...
    Mylenium

  • Outlook Email script won't work with Reader 9.1

    The attached form was designed in ES 8.2 and has worked fine with Reader 8.0. The "properties defaults" tab is set for Reader 9.0 or better. However, upon recent upgrade to Reader 9.1, the Outlook Email script stopped working. I'm new to Livecycle and scripts and was hoping that someone had an easy fix?

    okay thanks. One more question. What script is used to activate the "read receipt requested" function in Outlook?
    Date: Wed, 12 Aug 2009 12:23:13 -0600
    From: [email protected]
    To: [email protected]
    Subject: Outlook Email script won't work with Reader 9.1
    Interesting .....it sounds like an issue in Reader. From a code perspective everything is good .....the code tells Reader's email service to communicate with the mail client. This could be where the issue is.
    You may want to post your question on the Acrobat forum and see if they know of anything .....or you can report the issue to Support and have them look into it. Maybe something was introduced into the 9.1 version.
    From a Designer perspective all is good.
    Paul
    >

  • Email script authentication protection

    DW CS3 - ACCESS - ASP VBSCRIPT
    I've been trying to get variations of email scripts to work. Since the SMTP server in IIS was discontinued in Vista, I cannot test locally.  The scripts will run locally using authentication, but then removing authentication and uploading results in 500 errors.  I found that my webhost requires authentication to run email scripts.  So my question is, how can these scripts be protected with authentication?  Is there a way to encrypt sensitive information?  Also, any opinion on a decent "forgot password" script for classic ASP?

    >Is there a way to encrypt sensitive information?
    I'm not sure I follow you. Any email credentials you enter in the script are executed on the server, not sent to the client.  The only way to get the credentials would be to hack your ftp account, but if they do that, they already have your credentials

  • AE Render & Email Script

    I've tried setting up my render & email script the same way as my Mail apps details are but it still failed as with so many others.. and I havent found any solutions.
    AE CS5
    Gmail
    Mac OS X
    1. How do I delete those settings in order to re attempt different settings?
    2. Has the mystery around which settings to use been solved?
    3. While we're here, is there a script to render, email, save and shutdown? I have seen people point to a script on aescripts.com but it seems to have been removed.
    Any help would be greatly appreciated!

    Click on "Run Script File" in the file menu under scripts.  Go to your Support folder, located in your AE Scripts folder, and run 'Change Email Settings'.   This works in CS6, I'm assuming it's the same in CS5.

  • I created an email script in AppleScript, but it is not working.(Read below as well)

    I created an email script in AppleScript.
    Here is the code:
    set recipentNamePrompt to display dialog "What is the name of the recipient?" default answer "Cookie Monster"
    set recipientAddressPrompt to display dialog "What is the email of the recipient?" default answer "[email protected]"
    set subjectPrompt to display dialog "What is the subject of the email?" default answer "Change Cookie Recipe"
    set contentPrompt to display dialog "What would you like to put in your message?" default answer "Cookie Monster want MORE chocolate chips in cookies!"
    set recipientName to recipentNamePrompt
    set recipientAddress to recipientAddressPrompt
    set theSubject to subjectPrompt
    set theContent to contentPrompt
    --Mail Tell Block
    tell application "Mail"
      --Create the message
              set theMessage to make new outgoing message with properties {subject:theSubject, content:theContent, visible:true}
      --Set a recipient
              tell theMessage
      make new to recipient with properties {name:recipientName, address:recipientAddress}
      --Send the Message
      send
              end tell
    end tell
    But when I type in my info, the created message is written in Chinese. Someone please help me!

    The result of a display dialog is a record that contains the properties button returned, text returned (if default answer is used), and gave up (if giving up after is used).  Since you are passing the entire record to the Mail fields, it looks like it is getting interpreted as some Unicode text.  The solution is to get rid of your intermediate prompt variables and just get the desired property (the text returned), for example:
    set recipientName to text returned of (display dialog "What is the name of the recipient?" default answer "Cookie Monster")
    set recipientAddress to text returned of (display dialog "What is the email of the recipient?" default answer "[email protected]")
    set theSubject to text returned of (display dialog "What is the subject of the email?" default answer "Change Cookie Recipe")
    set theContent to text returned of (display dialog "What would you like to put in your message?" default answer "Cookie Monster want MORE chocolate chips in cookies!")

  • Insert date sent in flag email script

    I need to insert the date sent into this flagged email script to make it more useful, just not sure how to do it:
    set newline to ASCII character 12
    set finalText to "EMAIL REMINDERS:" & newline
    tell application "Mail"
              set theMessages to every message in inbox whose flagged status is true
              repeat with i from 1 to number of items in theMessages
                        set thisMessage to item i of theMessages
                        set fromMsg to (sender of thisMessage as string)
                        set subjMsg to (subject of thisMessage as string)
                        set finalText to finalText & "FLAG: " & word 1 of fromMsg & " : " & subjMsg & " : " & newline
              end repeat
    end tell
    finalText

    Hi,
    The E-mail template is actually works as an HTML or CSS page. You need to use the HTML/CSS formats to send these values in the format as you want. Use <tags> to do the formating of Email template. 
    Use function to store multiple values and thn use them into Email 
    I hope this will help. 
    Thanks~ Giriraj Singh Bhamu

  • Need an Oracle Email script

    I'm trying to get an Oracle email script that sets up the tablespaces and database for Oracle email. The script is supposed to be: $ORACLE_HOME/oes/install/sql/tblspc.sql
    If anyone has this, please email to [email protected]
    Thanks!
    Chris Parrish

    If you start installing the Oracle software you will be asked if you want to create a sample database. You can use that. Or, you can use DBCA. Check out the main documentation for details as they are many options, depending on your Oracle and O/S versions.

  • Attach email script to database update code

    I need to send a very simple email to a predetermined
    recipient when my Access database is updated. How do I attach an
    email script to it?
    Thanks.

    first is to check out which "E-Mail" Component on the
    webserver is installed. Check the FAQ of your hosting company. If
    they do not have any e-mail component installed try this:
    http://www.webwizguide.com/asp/tutorials/email_using_cdonts_tutorial.asp
    you have to use the e-mail component after updating the
    database - be sure to control, that the update was really made
    before sending the email
    regards
    Sebastian

  • Emailing scripts & forms

    hi frnds
    can anybody tell me how to email script and forms.
    well for emailing we have to download the script to pdf file how to do that .has anybody used rstxpdft4 progrm. we have to give the spool request no for downloading into pdf file .  but i dont know how to generate the spool request no.

    Hai Rohit Gupta
    Check the following COde
    REPORT ZRICH_0003.
    DATA: ITCPO LIKE ITCPO,
          TAB_LINES LIKE SY-TABIX.
    Variables for EMAIL functionality
    DATA: MAILDATA   LIKE SODOCCHGI1.
    DATA: MAILPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: MAILHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: MAILBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
    DATA: SOLISTI1   LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    PERFORM SEND_FORM_VIA_EMAIL.
          FORM  SEND_FORM_VIA_EMAIL                                      *
    FORM  SEND_FORM_VIA_EMAIL.
      CLEAR:    MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
      REFRESH:  MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    Creation of the document to be sent File Name
      MAILDATA-OBJ_NAME = 'TEST'.
    Mail Subject
      MAILDATA-OBJ_DESCR = 'Subject'.
    Mail Contents
      MAILTXT-LINE = 'Here is your file'.
      APPEND MAILTXT.
    Prepare Packing List
      PERFORM PREPARE_PACKING_LIST.
    Set recipient - email address here!!!
      MAILREC-RECEIVER = '[email protected]'.
      MAILREC-REC_TYPE  = 'U'.
      APPEND MAILREC.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = MAILDATA
                PUT_IN_OUTBOX              = ' '
           TABLES
                PACKING_LIST               = MAILPACK
                OBJECT_HEADER              = MAILHEAD
                CONTENTS_BIN               = MAILBIN
                CONTENTS_TXT               = MAILTXT
                RECEIVERS                  = MAILREC
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    ENDFORM.
         Form  PREPARE_PACKING_LIST
    FORM PREPARE_PACKING_LIST.
      CLEAR:    MAILPACK, MAILBIN, MAILHEAD.
      REFRESH:  MAILPACK, MAILBIN, MAILHEAD.
      DESCRIBE TABLE MAILTXT LINES TAB_LINES.
      READ TABLE MAILTXT INDEX TAB_LINES.
      MAILDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( MAILTXT ).
    Creation of the entry for the compressed document
      CLEAR MAILPACK-TRANSF_BIN.
      MAILPACK-HEAD_START = 1.
      MAILPACK-HEAD_NUM = 0.
      MAILPACK-BODY_START = 1.
      MAILPACK-BODY_NUM = TAB_LINES.
      MAILPACK-DOC_TYPE = 'RAW'.
      APPEND MAILPACK.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form.  just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
      PERFORM GET_OTF_CODE.
      LOOP AT SOLISTI1.
        MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
        APPEND MAILBIN.
      ENDLOOP.
      DESCRIBE TABLE MAILBIN LINES TAB_LINES.
      MAILHEAD = 'TEST.OTF'.
      APPEND MAILHEAD.
    Creation of the entry for the compressed attachment
      MAILPACK-TRANSF_BIN = 'X'.
      MAILPACK-HEAD_START = 1.
      MAILPACK-HEAD_NUM = 1.
      MAILPACK-BODY_START = 1.
      MAILPACK-BODY_NUM = TAB_LINES.
      MAILPACK-DOC_TYPE = 'OTF'.
      MAILPACK-OBJ_NAME = 'TEST'.
      MAILPACK-OBJ_DESCR = 'Subject'.
      MAILPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND MAILPACK.
    ENDFORM.
         Form  GET_OTF_CODE
    FORM  GET_OTF_CODE.
      DATA: BEGIN OF OTF OCCURS 0.
              INCLUDE STRUCTURE ITCOO .
      DATA: END OF OTF.
      DATA: ITCPO LIKE ITCPO.
      DATA: ITCPP LIKE ITCPP.
      CLEAR ITCPO.
      ITCPO-TDGETOTF = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                FORM     = 'ZTEST_FORM'
                LANGUAGE = SY-LANGU
                OPTIONS  = ITCPO
                DIALOG   = ' '
           EXCEPTIONS
                OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                WINDOW        = 'MAIN'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      MOVE-CORRESPONDING ITCPO TO ITCPP.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                RESULT  = ITCPP
           TABLES
                OTFDATA = OTF
           EXCEPTIONS
                OTHERS  = 1.
    Move OTF code to structure SOLI form email
      CLEAR SOLISTI1. REFRESH SOLISTI1.
      LOOP AT OTF.
        SOLISTI1-LINE = OTF.
        APPEND SOLISTI1.
      ENDLOOP.
    ENDFORM.
    Thanks & regards
    Sreenivasulu P

  • [svn] 776: ignore: yay for email scripts.

    Revision: 776
    Author: [email protected]
    Date: 2008-03-10 17:20:35 -0700 (Mon, 10 Mar 2008)
    Log Message:
    ignore: yay for email scripts.
    Modified Paths:
    flex/sdk/trunk/kick-build.txt

    Hi friends,
    Now i can able to send email through APEX...
    Thanks for your views...
    Regards,
    Saro...

  • Email script  problem

    Can someone help me with the script below, I can't make it to work!!!!!
    This I try to achive is after printing, to email the form as PDF.
    For Click event in a PRINT Button:
    form1.subALL.Submit.Print::click - (JavaScript, client)
    xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);
    Also into the same PRINT Button for PostPrint event :
    form1.subALL.Submit.Print::postPrint - (JavaScript, client)
    xfa.host.messageBox("You are about to Email the form\n\nThank you!","EMAIL FORM",3);
    var DropList =Drop_1.rawValue;
    var subjectbody = "?subject=" + DropList + "&body=Hello!";
    Email_Button.resolveNode("#event.#submit").target = "mailto:" + "[email protected]" + ";" + subjectbody;
    Email_Button.resolveNode("#event.#submit").embedPDF = "0";
    Email_Button.resolveNode("#event.#submit").format = "pdf";
    Email_Button.execEvent("click");
    There is also a Email Submit Button(Email_Button), HIDDEN from layout
    with Email address:[email protected]
    THANKs

    Hi Paul,
    In the console here are the only one I can see:
    Acrobat EScript Built-in Functions Version 9.0
    Acrobat Annotations / Collaboration Built-in Functions Version 9.0
    Acrobat Annotations / Collaboration Built-in Wizard Functions Version 9.0
    Acrobat SOAP 9.0
    My script works till: You are about to Email.. and then does NOT
    execute for some reason the Event Click for the Email_Button!
    I am not getting any message!
    Thanks

  • Email script output to logfile

    Hello people ,
    I am fairly new to this language and has gotten good help from you guys. I have written a script (with some help) to email several files in a folder. This works great. But since this script is to be used on a bad internet connection I would like to maybe
    output the results from the script to a logfile so I can check this on a regular basis to see if all the mails have been sendt. Hope someone can help me :-) My code so far is: 
    #Connection Details
    $username=”[email protected]
    $password=”xxxxxxxx”
    $smtpServer = “smtp.gmail.com”
    $msg = new-object Net.Mail.MailMessage
    #Change port number for SSL to 587
    $smtp = New-Object Net.Mail.SmtpClient($SmtpServer, 587)
    #Uncomment Next line for SSL
    $smtp.EnableSsl = $true
    $smtp.Credentials = New-Object System.Net.NetworkCredential( $username, $password )
    #From Address
    $msg.From = "[email protected]"
    #To Address, Copy the below line for multiple recipients
    $msg.To.Add(“[email protected]”)
    #Message Body
    $msg.Body=”Please See Attached Database Files”
    #Message Subject
    $msg.Subject = “DATABASE”
    write-host "SENDING FILES"
    #your file location
    $files=Get-ChildItem “C:\CM\Send\”
    Foreach($file in $files)
    Write-Host "Attaching File :- " $file
    $attachment = New-Object System.Net.Mail.Attachment –ArgumentList $file.FullName
    $msg.Attachments.Add($attachment)
    $smtp.Send($msg)
    $msg.Attachments.Clear()
    $smtp.Send($msg)
    $attachment.Dispose();
    $msg.Dispose();
    write-host "Mail Sent Successfully"
    Thank you :-)

    are you looking for this
    $log = "deploy-{0:yyyyMMdd-HHmmss}.RTF" -f (Get-Date)
    Start-Transcript -Path $log
    #Connection Details
    $username=”[email protected]
    $password=”xxxxxxxx”
    $smtpServer = “smtp.gmail.com”
    $msg = new-object Net.Mail.MailMessage
    #Change port number for SSL to 587
    $smtp = New-Object Net.Mail.SmtpClient($SmtpServer, 587)
    #Uncomment Next line for SSL
    $smtp.EnableSsl = $true
    $smtp.Credentials = New-Object System.Net.NetworkCredential( $username, $password )
    #From Address
    $msg.From = "[email protected]"
    #To Address, Copy the below line for multiple recipients
    $msg.To.Add(“[email protected]”)
    #Message Body
    $msg.Body=”Please See Attached Database Files”
    #Message Subject
    $msg.Subject = “DATABASE”
    write-host "SENDING FILES"
    #your file location
    $files=Get-ChildItem “C:\CM\Send\”
    Foreach($file in $files)
    Write-Host "Attaching File :- " $file
    $attachment = New-Object System.Net.Mail.Attachment –ArgumentList $file.FullName
    $msg.Attachments.Add($attachment)
    $smtp.Send($msg)
    $msg.Attachments.Clear()
    $smtp.Send($msg)
    $attachment.Dispose();
    $msg.Dispose();
    write-host "Mail Sent Successfully"
    Stop-Transcript
    Regards Chen V [MCTS SharePoint 2010]

  • Email script not working

    A user has updated to Reader XI and the following script does not work now. How can I update this to be compatible with this latest version?
    ({cURL:"mailto:[email protected]?subject=Incident Acknowledgment &body=Please find attached confirmation of the current Incident.",cSubmitAs:"PDF",cCharset:"utf-8"});
    Thanks!
    -pc

    You have to use a semicolon to separate several addresses.
    event.target.mailDoc({
              bUI: false,
              cTo: '[email protected]; [email protected]',
              cCc: '',
              cBcc: '',
              cSubject: 'Incident Acknowledgment',
              cMsg: 'Please find attached confirmation of the current Incident.'

  • Email Script for php5

    I was running a basic form with Flash 8 and PHP 4.*.* so that
    customers could email a client of mine. My clients web hoster has
    since upgraded to PHP 5.2.0 and the form has quit working. Does
    anyone know what changed in the new version that would affect this
    script?

    quote:
    Originally posted by:
    LSNsaltlamp
    I was running a basic form with Flash 8 and PHP 4.*.* so that
    customers could email a client of mine. My clients web hoster has
    since upgraded to PHP 5.2.0 and the form has quit working. Does
    anyone know what changed in the new version that would affect this
    script?
    that means the form was running properly before they upgrade?
    what type of error you get? or just nothing?
    may be the php configuration, refer:
    http://www.php.net/mail

Maybe you are looking for

  • Problems setting up WiFi in Linux Mint 6

    Hey Guys, I'm running a 32bit version of Linux Mint 6 on my T60. I need a hand setting up my wireless connection. It boggles my mind, I am able to see the wireless network in my 'available networks' option. I am just not able to connect to it. Anyone

  • Error 8008 while downloading a purchase

    2 weeks ago I purchased a movie at the Istore. it started downloading as normal. about half way through it stopped giving me an +*"error 8008"+*. it indicated that parts of the file were corrupt and told me to restart the download. I did this to no a

  • Installing Adobe Application Manager

    I have purchased the CLoud suite.  I downloaded the Adobe Application Manager from the website.  It failed to install.  I was able to locate a 6.2 version and was able to successfully install.  HOwever, now when I run the Adobe Application Manager I

  • AUC Final Capitalisation Error

    Dear Team, With reference to above mentioned subject, We have source structure in place and the same has been maintained in WBS element and Automatic settlement have been done and cost in P&L transferred to Balance sheet GL subsequently based on the

  • Oracle Best Practices in 10g When Disabling NUMA

    We have both Linux and Solaris 10 DB servers running 10g on them with NUMA. What is Oracle's best practice for dealing with NUMA in hardware when it can be disabled?