Flash 8 Email - ASP

Howdy all
I under stand that it's possible to send email through flash
using an ASP page. Does any one know where I can get an example of
this including the FLA and ASP page?
Thanks inadvance
Bob

I've got a sample that uses a perl script but not an asp.
Does the asp
script return any sort of error?
Can you post a url?
Dan Mode
*THE online Radio*
http://www.tornadostream.com
*Must Read*
http://www.smithmediafusion.com/blog
*Flash Helps*
http://www.smithmediafusion.com/blog/?cat=11
"IR_Wild" <[email protected]> wrote in
message
news:e9ocui$lu7$[email protected]..
> Howdy all
> I under stand that it's possible to send email through
flash using an
> ASP
> page. Does any one know where I can get an example of
this including the
> FLA
> and ASP page?
>
>
> Thanks inadvance
> Bob
>

Similar Messages

  • Flash calling asp problem

    hi, I have got to send sth by ASP in Flash. I wrote some code
    but this doesnt work. Do anyone know what wrong?
    This is what i am writing
    on (press) {
    form.loadVariables("email.asp", "POST");
    If I just click on email.asp without Flash, I will get a
    email from there. But if I use the above method to call that page,
    the email wont be sent. So do anyone know what wrong?

    If you want to call the asp file from flash you should do it
    like this
    lv= new LoadVars();
    lv.onLoad(success){
    if(success){
    trace("file was called");
    lv.emailAddress="[email protected]"
    lv.sendAndLoad("email.asp", lv,"POST");
    The code above is for calling email.asp, pass a variable
    called emailAddress via POST and handling a response from the asp,
    if you do not wish to receive a response from the asp just use
    send() instead of sendAndLoad();

  • Send Variable From ASP to Flash to ASP

    I'm really, really new to Flash and using Flash 8 Pro. This
    is what I'm trying to do. I have a list of cars, when someone
    clicks on a car, they are taken to a page with details about the
    car and a flash gallery. The Flash Gallery is reads the image files
    names from an xml file. I'm really using an asp file (photos.asp).
    Anyway, I need the pass photos.asp the vin of the car from flash.
    I did this is the VehicleDetailSaleen.asp screen
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="600" height="530">
    <param name="movie"
    value="photogallery.swf?VIN=<%=(Recordset1.Fields.Item("VIN").Value)%>">
    <param name="quality" value="high">
    <param name="VIN"
    value="<%=(Recordset1.Fields.Item("VIN").Value)%>">
    <embed
    src="photogallery.swf?VIN=<%=(Recordset1.Fields.Item("VIN").Value)%>"
    width="600" height="530" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"
    vin="<%=(Recordset1.Fields.Item("VIN").Value)%>"></embed>
    I just don't know how to catch it in the flash file and send
    it back....
    #include "scripts.as"
    LoadVars;
    loadPhotoXML("Photos.asp?VIN="+ this.vin);
    mclThumbnails.onEnterFrame=function(){
    thumbnailsRoll()
    function loadPhotoXML(filename:String):Void {
    photoXML.ignoreWhite = true;
    photoXML.load(filename);
    photoXML.onLoad = function(success:Boolean):Void {
    if (success) {
    photoNumber = 0;
    rootNode = this.firstChild;
    totalPhotos = rootNode.childNodes.length;
    for (var i = 0; i<totalPhotos*2; i++) {
    if (i<totalPhotos) {
    thumbnails
    = rootNode.childNodes.childNodes[0].firstChild.nodeValue;
    url
    = rootNode.childNodes.childNodes[1].firstChild.nodeValue;
    titleText
    = rootNode.childNodes.childNodes[2].firstChild.nodeValue;
    } else {
    thumbnails
    =
    rootNode.childNodes[i-totalPhotos].childNodes[0].firstChild.nodeValue;
    url =
    rootNode.childNodes[i-totalPhotos].childNodes[1].firstChild.nodeValue;
    titleText
    =
    rootNode.childNodes[i-totalPhotos].childNodes[2].firstChild.nodeValue;
    thumbnailsLoad(i);
    checkProgressLoad(0);
    caption.text = titleText[0];
    Please, I know I don't know anything, but I've been reading
    forums for 2 days and everyone seems to have a different idea but I
    don't really understand them. I just need a simple, do this, then
    this sort of help.
    Thanks,
    Heather

    heatherlsi. anyway you can post your resulting code? having
    probelm with writing a Flash to ASP script... thanks

  • Problems interact with Flash and ASP

    Hello people, I am beginning to learn how flash to interact
    with asp, but im having problems in the execution of the file.
    access the link below to see what happens:
    http://www.trusttarget.com.br/flash/flash_asp.swf
    My AS code:
    var endereco:URLRequest=new URLRequest("
    http://www.trusttarget.com.br/flash/produtos.asp");
    endereco.method=URLRequestMethod.GET;
    var carregar:URLLoader = new URLLoader();
    botao.addEventListener(MouseEvent.CLICK,chama);
    function chama(evento:MouseEvent) :void {
    var variavel:URLVariables = new URLVariables("nome="+
    busca.text);
    endereco.data= variavel;
    carregar.load(endereco);
    carregar.addEventListener(Event.COMPLETE,carregou);
    var texto:String= "";
    function carregou(evento:Event) :void {
    var variaveis:URLVariables= new URLVariables(carregar.data);
    var quantos:int= Number(variaveis.quantidade);
    texto= "";
    if (quantos == 0) {
    texto= "Nenhum Produto encontrado";
    } else {
    for (var i:int=1; i<= quantos; i++) {
    texto+= variaveis["produto"+i] + "\n";
    resultado.text= texto;
    When I execute the file ASP that makes the search in DB, he
    perfectly works, exhibiting the existent information in DB.
    But when I try for the Flash, not of the right.
    Please, help me
    Thanks everbody

    my ASP code
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <%
    banco = Server.MapPath("livro.mdb")
    Set conexao = Server.CreateObject( "adodb.Connection" )
    conexao.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ="
    & banco & ";"
    Dim registros
    Set registros = Server.CreateObject("ADODB.Recordset")
    registros.ActiveConnection = conexao
    registros.Source = "SELECT * FROM produtos WHERE produto LIKE
    '" & Request.QueryString("nome") & "%'"
    registros.CursorType = 0
    registros.CursorLocation = 2
    registros.LockType = 1
    registros.Open()
    x=0
    Do while not registros.eof
    x=x+1
    response.write "produto" & x & "=" &
    (registros.Fields.Item("produto").Value)
    response.write " - Preço= " &
    (FormatCurrency(registros.Fields.Item("preco").Value)) & " "
    registros.MoveNext()
    Loop
    response.write "quantidade=" & x
    registros.Close()
    Set registros = Nothing
    %>
    thanks

  • Dynamic flash with Asp

    Recently I did try ASP's date function to pass the current
    date to flash, meaning that by adding the code
    (?date=<%date%>) at the end of the flash movie's path in
    Explorer. but didn't work. is it because is no longer in use? can
    some help. cause i'm trying to learn to I pass a data between flash
    and asp. thanks.

    Recently I did try ASP's date function to pass the current
    date to flash, meaning that by adding the code
    (?date=<%date%>) at the end of the flash movie's path in
    Explorer. but didn't work. is it because is no longer in use? can
    some help. cause i'm trying to learn to I pass a data between flash
    and asp. thanks.

  • IE frame around flash and ASP

    HI,
    Does anyone know how to remove the ugly frame around flash
    when using ASP?
    I know the solution when using HTML but I need to embed teh
    flash file in a .aspx page.
    thanks

    .Aspx files just render HTML. View Source on both to see the
    differences,
    and adjust accordingly
    Jeff
    "golem2" <[email protected]> wrote in
    message
    news:f0r0dk$rei$[email protected]..
    > HI,
    > Does anyone know how to remove the ugly frame around
    flash when using ASP?
    > I know the solution when using HTML but I need to embed
    teh flash file in
    > a .aspx page.
    >
    > thanks

  • Flash and ASP problems

    I have an ASP file that gives out the following output when
    opened in the browser on the internet:
    bride=Olga&groom=Alex&folders=2
    see for yourself here :
    http://www.nickphotography.com/contact/customer_system/data.asp
    The code in the first frame of the flash file is:
    loadVariables("data.asp","");
    The variables don't load into the flash movie though.
    it works fine when I make a text file containing the ASP
    output and change the flash code to
    loadVariables("data.txt","");
    what's wrong and how do I fix this problem.
    thanks in adance for the help!

    Mark,
    Try this:
    Put a dynamic text field on your stage and give it an
    instance name of
    textBox. Then put this code on frame one:
    loadText = new LoadVars();
    loadText.load("
    http://www.nickphotography.com/contact/customer_system/data.asp");
    loadText.onLoad = function(success) {
    if (success) {
    textBox.text = this.bride+" "+this.groom+" "+this.folders;;
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "mark1991" <[email protected]> wrote in
    message
    news:ear6oc$8hs$[email protected]..
    >I have an ASP file that gives out the following output
    when opened in the
    > browser on the internet:
    > bride=Olga&groom=Alex&folders=2
    >
    > see for yourself here :
    >
    http://www.nickphotography.com/contact/customer_system/data.asp
    >
    >
    > The code in the first frame of the flash file is:
    > loadVariables("data.asp","");
    >
    >
    > The variables don't load into the flash movie though.
    >
    >
    > it works fine when I make a text file containing the ASP
    output and change
    > the
    > flash code to
    > loadVariables("data.txt","");
    >
    >
    > what's wrong and how do I fix this problem.
    > thanks in adance for the help!
    >

  • Flash --- Dreamweaver (.asp)

    I trying an old version of Flash and trying to determin if it
    will be worth it to use and I've run into a problem that I don't
    understand.
    We have a site made with .asp. I mad a flash file and went
    through the publishing with no problem, but here is where my
    problem started.
    I have the files saved with all of our other site's files and
    am try to use a .swf flash file. When I put it in and play it in
    Dreamweaver, it looks fine. But when I load the page in and try and
    open the page with Explorer, no flash file appears and it looks
    like there isn't anything there.
    I then went to a html file that we have and tried using it in
    that page and it worked fine. I have no idea why I'm having this
    problem, but could someone please explain why this is happening?
    Also, is there a way to convert an .asp file to a .html file?
    Thank You

    I believe that you can "convert" an ASP page to HTML simply
    by changing the
    name. The web server will no longer see that as an ASP page.
    However, any
    ASP code will not work and any ASP code within the page will
    be interpreted
    as HTML and may cause errors.

  • Need help integrating flash with asp

    i am creating a dynamic site that pulls all of its content
    from and access database. i would like to make the entire page in
    flash. i have never used flash to pull any content from a datbase
    before. does any one know how to do this ? or know of a good
    tutorial? i can only seem to find tutorials for flash 8 or flash 5,
    nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help me.
    feeling very discouraged,
    -furley

    Flash has nothing to do with getting data from an Access
    database.
    You need to focus on either ASP or ASP.Net, a scripting
    language for the
    server script either JScript or VBScript, middleware usually
    ADO or ADO.Net
    and finally SQL. All of these items go together in a server
    side script that
    could work with non-Flash or Flash client interfaces. You
    should find many
    tutorials on the internet with these items as it has been
    done for nearly a
    decade.
    You also can use ColdFusion.
    For Flash, you need to learn LoadVars Actionscript class if
    you plan to
    communicate data in the URL Variables format or XML
    Actionscript class if
    you want to use XML data format. It will not really matter to
    Flash what is
    on the server side as it will only be sending and receiving
    data in either
    of those two data formats (URL Variables or XML).
    If you want to look at some Using VBScript, ASP, ADO and an
    OLEDB Connection
    examples I use for seminars in Web database you can take a
    look here:
    http://www.hosfordusa.com/ClickSystems/courses/webdb/.
    However they lack
    Flash example but would work "as is" with a Flash example.
    Once you look at some of those options, you can then form
    more specific
    questions for this forum and especially with using the
    LoadVars and XML
    Actionscript classes or the XML connector Flash component.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "professorfurley" <[email protected]> wrote
    in message
    news:[email protected]...
    i am creating a dynamic site that pulls all of its content
    from and access
    database. i would like to make the entire page in flash. i
    have never used
    flash to pull any content from a datbase before. does any one
    know how to do
    this ? or know of a good tutorial? i can only seem to find
    tutorials for
    flash
    8 or flash 5, nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help
    me.
    feeling very discouraged,
    -furley

  • HELP WITH DOING BANNER AD ROTATION USING FLASH AND ASP

    I need to know how to do Banner Advertisement (AFFILIATE ADS)  in Flash using ActionScript  3 in Document Class(BANNERADS.AS).
    I have
           GETBANNERADS.ASP (ASP Web Program)
                  Retrieves Next AD (IMAGEURL, NAVIGATEURL) containing Banner and Advertiser URL
                            BANNER                     ADVERTISER URL
                            BUSHDOCTOR.GIF      http://www.clickbank.com
                            SIZZLA.GIF                  http://www.amazon.com/AMAZON.PHP?AFFILIATE_CODE=2345
                            EXODUS.GIF               http://www.godaddy.com/GODADDY.PHP?AFFILIATE_CODE=77777
                            UPRISING.GIF             http://www.easycgi.com/
           BANNERADSDBF.MDB (Microsoft Access Database with list of AFFILIATE ADVERTISEMENTS)
           BANNERADS.SWF
    package {
         import flash.display.MovieClip ;
         public class BANNERADS Extends MovieClip {
               public function BANNERADS() {    
                      var PICTURE:Loader  = New Loader();
                      var IMAGEURL:String    = "";
                      var NAVIGATEURL:String = "";
                      while (  ) {
                            LoadVariable("GETBANNERADS.ASP", IMAGEURL, NAVIGATEURL);
                            PICTURE.Load(New URLRequest(IMAGEURL));
                            PICTURE.AddActionListener(evt.COMPLETE, onload);
               public function onload() { 
                     PICTURE.AddActionListener(MouseEvent.CLICK, onClick);
               public function onClick() {
                      geturl(NAVIGATEURL);

    package (
                      import flash.display.Sprite;
                      import flash.events.*;
                      import flash.net.URLLoader;
                      import flash.net.URLLoaderDataFormat;
                      import flash.net.URLRequest;
                      public class Main extends Sprite {
                                     public function Main() {
                                              var PICTURE:Loader            = New Loader();
                                             PICTURE.addEventListener(Event.COMPLETE, onLoaded);
                                             var LOADER :URLLoader         = new URLLoader();
                                             LOADER.addEventListener(Event.COMPLETE, getdata);
                                             LOADER.dataFormat             = URLLoaderDataFormat.VARIABLES;
                                             var IMAGEURL    :String           = "";
                                            var ADVERTISERURL :String     = "";
                                             var COUNTER      :Number       = 0;
                                             var MAX               :Number       =0;
                                             while ( COUNTER <= MAX)       {
                                                             COUNTER   = COUNTER + 1;
                                                             var requester:URLRequest = new URLRequest("BANNERADS.ASP");
                                                             requester.method         = URLRequestMethod.POST;
                                                             LOADER.load(requester);
                                                             if (COUNTER == MAX) {
                                                                        COUNTER = 0; 
                                     public function getdata(){
                                                 var loader2 : URLLoader = new URLLoader(Event.target);
                                                 loader2.dataFormat      = URLLoaderDataFormat.VARIABLES;
                                                 var IMAGE   :URLRequest = new URLRequest(loader2.data.IMAGEURL);
                                                 ADVERTISERURL            = loader2.data.NAVIGATEURL;
                                                 MAX                                = loader2.data.MAXCOUNT;
                                                 PICTURE.load(IMAGE);
                                     public function onLoaded(){
                                               PICTURE.addEventListener(MouseEvent.CLICK, onClick);        
                                     public function onClick(){
                                               navigateToURL(ADVERTISERURL);

  • Flash email from won't work

    Hi I'm trying to create a email form in flash, using action
    script and php. I've followed all the steps but nothing happens
    when the enter button is clicked. i've got a feeling it's something
    very simple and stupid I've missed. I've put all the relevent files
    on the web (including the PHP) which is supported. So I'm a bit
    stumped. I've attached the action script I'm using, followed by php
    Any help would be much appreciated the page is
    http://www.maddadesigncompany.com/form/
    thanks.

    First, I suggest you get yourself ServiceCapture:
    http://www.kevinlangdon.com/serviceCapture
    It'll let you see your outgoing and incoming requests within
    Flash. It's
    very nice for doing client/server things.
    Aside from that, all of you AS code didn't attach, so it's
    hard to tell.
    Your PHP code however, works ok. Although you have $comments
    in your mail()
    call, when you probably want $mail.
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Line breaks not passing from flash to asp

    Hello,
    I've came up with a very anoying problem, and I need it fixed
    asap.
    The problem is as folows:
    I have a form in flash that contains a number of fields. One
    of those is a input field with the purpose of capturing the
    impressions of the user on a given subject. Needless to say that
    that impression may contain paragrafs, and line breaks. I'm using
    flash 7 publish settings and passing the values of the fields via
    LoadVars. The problem seems to be that no line breaks are passed to
    ASP. All the special characters are passed correctly, the HTML is
    coded as UTF-8 so that the portuguese characters are correctly
    decoded, but no line breaks are shown. I need a quick solution to
    solve this problem of the line breaks.
    Can someone give me a quick hand on this?
    Thx

    Thx kglad,
    Your solution is very simple... too bad I happened to create
    a solution on a much more complicated way... I ended up by escaping
    the string, detecting where the %0D was found, and replaced it with
    <br>. A much harder way to get to the same result... On
    future ocasions im gonna use your solution, which is way much
    simpler and doesn't require the number of coding lines that I had
    to create for the same purpose.
    Thx again m8

  • How can I view flash emails?

    Is there an app that will allow me to view emails that come with flash-based video?  Thank you for your help.  Tom

    A press release from Adobe announced a "new version of Adobe Flash® Media Server that can now deliver Flash technology to Apple iPhone and iPad devices," causing some confusion among users who know that Apple's devices do not support Flash at all.
    In reality, Adobe will simply be adding the ability for its Flash-branded server product to serve standards-based HTML5 video in addition to Flash video.
    Adobe later noted that, "with Adobe Flash Media Server 4.5, media publishers now have a single, simple workflow for delivering content using the same stream to Flash-enabled devices or to the Apple iPhone and iPad."
    The move to add non-Flash output to its existing Flash development workflow was the solution Steve Jobs recommended Adobe take in April of 2010 when he penned "Thoughts on Flash," which ended the with the comment, "perhaps Adobe should focus more on creating great HTML5 tools for the future, and less on criticizing Apple for leaving the past behind."
    Jobs roundly criticized Flash as being a proprietary technology controlled by Adobe, and noted that the majority of Flash content was simply web videos locked in the Flash format, much of which was already available to iOS users in non-Flash versions, such as with YouTube, Vimeo, Netflix and others.
    Jobs also called out Adobe's Flash Player as having reliability, security and performance issues, noting that Adobe kept promising a mobile version that it simply could not ship throughout 2009 and into 2010. "We think it will eventually ship, but we’re glad we didn’t hold our breath," Jobs wrote. "Who knows how it will perform?"
    Adobe has since shipped a mobile Flash Player for other platforms, including Android, but it continues to deliver the same performance, security and battery life problems that its desktop version exhibits. Fortunately, the majority of Flash content is simply web video and, as Jobs recognized a year and half ago, most of it is now available via alternative open standards.
    Adobe's new support for the open HTTP Live Streaming protocol Apple developed and supports in its iOS mobile devices and on Mac OS X will help developers deeply invested in Flash to reach new audiences of iOS users and further erase the need for the Flash plugin on any platform.
    Adobe's new video server tool will not benefit developers who create websites based on Flash or applets or games built in Flash, none of which is accessible from iOS devices or from PCs that have not installed Adobe's Flash Player plugin.

  • I NEED HELP! Making a flash email form using php.

    Hi, my name is Sean, I'm making a flash contact form using php for a website.
    I'm having a hard time with the php. Can some one help?
    Click here to download my source.

    Satellite A505-S6005 
    ACPI Flash BIOS version 1.40 for Satellite A500/A505 (PSAT6U/PSAT9U)
    When you execute the download file (sat6v140.exe) it decompresses into several files in the sat6v140 folder. 
    Among those, is the readme.txt attached, which explains how to create the CD.
       Burn a CD or DVD from an ISO file
    -Jerry
    Attachments:
    readme.txt ‏14 KB

  • Flash 8 AS and PHP email form

    Hi,
    I am finally finding some time over the holidays to work on
    my website flash email form. I have had some wonderful help from
    kglad and Chris a couple of months ago. I will attach my AS2 code
    first and then my PHP code I have recieved from Yahoo. (Our hosting
    server for the website).
    I keep getting my error message of... "Sorry, there was a
    server error, please try again."
    I also have specified the default mail account within my
    yahoo small business web account under PHP/Perl Mail Setup
    [email protected] as the Default.
    Any help would be greatly appreciated, and thank you in
    advance!

    Let me prefix this by saying...
    I haven't used an email script directly... I've always used
    an intemediate function when I've been doing things like this
    through a CMS or whatever.. so that's my way of saying I'm not sure
    of this...
    But
    I see two potential things with the mail function based on
    the php docs.
    1. the msg string.
    According to this:
    Each line should be separated with a LF (\n). Lines should
    not be larger than 70 characters.
    You don't seem to have that. I know its html formatted... but
    perhaps you should put the LF chars in.
    2. This is probably far less likely and only try it after the
    first option above (I'm guessing this is very rare):
    For your message headers where you have \r\n
    Note: If messages are not received, try using a LF (\n) only.
    Some poor quality Unix mail transfer agents replace LF by CRLF
    automatically (which leads to doubling CR if CRLF is used). This
    should be a last resort, as it does not comply with » RFC
    2822.

Maybe you are looking for

  • Too much clips to handle!!!

    Hey, Recently i shot a wedding with 3 camera's. Z1, 2x Panasonic Avchd entry level camcorder, and just finished capturing Z1 3 tapes about 2.5 hr. just 3 files to go, and when i saw the other folder of AVCHD files they are near about 950 clips... Omg

  • How to use Spring MVC instead of assembler.jsp in endeca 3.1.0

    Hi , I am new to Endeca . I want to use spring MVC instead of assembler.jsp .Some body please help me how can i do it. Wht all i have to do to achieve it. Thanks Mark

  • Sync failed with the exception "We have encountered an issue in syncing your data."

    Getting this rather useless sync error. Can you help identify our problem please. Sync failed with the exception "We have encountered an issue in syncing your data."    For more information, provide tracing ID '56e1113f-93db-4cee-9088-81d29ee39687' t

  • No progress bar when an application installs?

    After signing up I started downloading photoshop. It is more than 2 hours and it was still not completed... There was no progress bar either on the application manager. Any help here? Thank you

  • How to run s60 synbian application in 6300 ?

    how to run an application already runing automatically in nokia 6600 on nokia 6300, when transfered through blutooth or the memory card the particular application does not runs in nokia 6300 how to run that particular application in nokia 6300..?