Q about flash form objects

Question: Is this possible?... Does anyone have a link?
I have 4 check boxes (or buttons) named A, B, C & D.
Below the boxes I have a multi-line, scrolling dynamic text field
named 'LIST'.
If A is clicked (on), LIST displays:
A
If B is then clicked (on), LIST displays:
A
B
If A is clicked again (off), LIST displays only:
B

anyone?

Similar Messages

  • I Need Dire Help Making a Flash Form

    Hello, I need some serious help creating a Flash Form.
    I Have used a template from another site with the following
    input boxes:
    Name: __________
    Email: __________
    Comments: ____________
    However, i had the script working fine, along with its php
    script,
    when i was trying to add more "text" boxes, i must have
    messed the script up somhow.
    When I submit that form, the name is send and email, but the
    email is blank.. ie, there is no "comments"
    here is the code:
    on submit button:
    on (release) {
    // send variables in form movieclip (the textfields)
    // to email PHP page which will send the mail
    form.loadVariables("email.php", "POST");
    sent email messege
    onClipEvent(data){
    // show welcome screen
    _root.nextFrame();
    and the php script (mailer.php)
    php form email.pho
    <?php
    * PHP 4.1.0+ version of email script. For more
    * information on the mail() function for PHP, see
    http://www.php.net/manual/en/function.mail.php
    // First, set up some variables to serve you in
    // getting an email. This includes the email this is
    // sent to (yours) and what the subject of this email
    // should be. It's a good idea to choose your own
    // subject instead of allowing the user to. This will
    // help prevent spam filters from snatching this email
    // out from under your nose when something unusual is put.
    $sendTo = "[email protected]";
    $subject = "My Flash site reply";
    // variables are sent to this PHP page through
    // the POST method. $_POST is a global associative array
    // of variables passed through this method. From that, we
    // can get the values sent to this page from Flash and
    // assign them to appropriate variables which can be used
    // in the PHP mail() function.
    // header information not including sendTo and Subject
    // these all go in one variable. First, include From:
    $headers = "From: " . $_POST["firstName"] ." ".
    $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
    // next include a replyto
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    // often email servers won't allow emails to be sent to
    // domains other than their own. The return path here will
    // often lift that restriction so, for instance, you could
    send
    // email to a hotmail account. (hosting provider settings may
    vary)
    // technically bounced email is supposed to go to the
    return-path email
    $headers .= "Return-path: " . $_POST["email"];
    // now we can add the content of the message to a body
    variable
    $message = $_POST["message"];
    // once the variables have been defined, they can be included
    // in the mail function call which will send you an email
    mail($sendTo, $subject, $message, $headers);
    ?>
    If anyone can see why the "comments" section is not being
    sent?
    Also: My original problem was how do you add more text boxes.
    I want something like this:
    Name:
    Address:
    Phone:
    Mobile:
    Email:
    Website:
    Comments:
    Ive spent days and days trying to work out how to first make
    a form that actually works, then add more text fields
    Ive looked at many basic form tutorials, but they all seem to
    only have 3 or 4 text fields.. Name, Email, Comments... etc
    I haven't a clue how to edit the script both in action script
    and php to add more fields easy.
    I really need some help with this, its turning into a
    nightmare for me.
    I can provide someone with my .fla project file if they care
    to take a look at what im doing wrong.
    Thanks
    Pan
    ps. Please note: "$sendTo = "[email protected]";" =
    this line i know i must put in my own email.

    This is all about timelines. It seems there is a movieclip
    named 'form' (or possibly an actionscript object, can't tell). Any
    variables created on that timeline are sent.
    So you could have your new textfields on another timeline.
    Or you could have textfields with no instance name in the
    form timeline.
    Those are the first two things to look at. Post the FLA and
    we can tell you more specifically.

  • How to get "Subject" & "Message" text from Flash form to default e-mail MS Outlook?

    Hi,
    I have the following code which is working fine except I can't get the user typed data from flash form to my default e-mail (MS Outlook) application. How to edit the following code?
    In the code:
    1) To  ---->  this field is okay since this email ID doesn't change
    2) Cc  ---->  this filed is also okay since no changes will be in email ID
    3) Subject  ----> this may not be always as "Feedback", user may like to change the subject
    Whant I would like to add more here is:
    1) From  ----> this text to be retrieved from "fromText.txt" input text box
    2) Message  ----> this text to be retrieved from "MessageText.txt" input text box
    //1.Button event listener
    SendMail.addEventListener(MouseEvent.CLICK, SendEMail);
    //2.The SendMail function open up email application to send email.
    function SendEMail(event:MouseEvent):void {
    var email:URLRequest = new URLRequest("mailto:[email protected]?CC=[email protected]&Subject=Feedback");
    navigateToURL(email, "_blank");
    Thanks in advance for any support.
    Regards.

    Thanks for the reply. I tried the code and result is like the following:
    To: [email protected]
    Cc: [email protected]
    Subject: [object TextField]?body=From: [object TextField]
    Body: Blank
    The problem exist in SUBJECT & BODY.
    Further help, please.
    Thanks.
    PS: I removed the ? before body and put & ------> the result is as follows:
    To: [email protected]
    Cc: [email protected]
    Subject: [object TextField]
    Body: From: [object TextField]
               [object TextField]
    One more thing that it opens an empty web page with the following text in adress bar:
    mailto:[email protected]?CC=poweruser@helpdesk&Subject=Feedback

  • Flash Forms not displaying

    I have just about given up on flash forms. I have read just
    about every thread in this Forum, but cannot find the answer.
    Have worked with flash forms in the past, but after recently
    upgraded to a new box with Vista Business and Codl Fusion 8 Dev
    Edition I cannot get flash forms working. I have have seen a tonne
    of postings with the same issue, but few with a resolution, and
    where there is I try it and makes no difference.
    If I run the following code:
    <cfform format="flash">
    <cfinput type="dateField" name="startDate" label="Start
    Date:" mask="dd/mm/yyyy">
    </cfform>
    If I remove format="flash" form works fine. If I include
    format="flash" form doesn't display. View source shows the code
    there, CFIDE is mapping correctly etc.
    One thing I do notice though, which may or may not be
    involved is that when viewing the code generated, it is looking in
    the same folder that the script that includes the form was in. Do I
    need to tell it to look somewhere else? Pure speculation here, but
    EVERYTHING else checks out.
    If someone at Adobe can set this straight would be great,
    because an afternoon spent reading other postings on this matter
    shows there are clearly a lot of people stumbling around in the
    dark on this one.
    Thanks in advance to anyone that can help.

    Michael --
    Thanks for your help.
    I think I've narrowed the problem down -- it's not that it
    won't display my flash form in IE, it's that it won't display it in
    a Fusebox environment. I'm going to poke over at their site to see
    what they have to say -- I suspect I'll need to upgrade the version
    of Fusebox that I'm using. :)

  • Has anyone seen this with Flash Forms /  CF8?

    I have a website that uses a few flash forms on different
    pages. It's on a CF8 server and the clients are generally IE6.
    Sometimes all works well, sometimes the flash form on a page
    doesn't show up.
    Refreshing the browser, closing/re-opening the browser don't
    work. Restarting CF doesn't work.
    I put the same code on another CF8 server and access with IE7
    and it works fine.
    Why the heck would a form show or not show intermittently
    when nothing has changed in the site code or server settings?
    Thanks in advance.

    I am seeing this on a CF7 installation. What I noticed is
    that it started on 10/31, which is the very date that Microsoft
    patches were rolled out to all of our users. The updates in
    question were the following:
    KB921503
    KB936021
    KB938127
    KB938829
    I have NOT verified that there is a relationship, but the
    patches were applied IMMEDIATELY before the problems started, right
    in the middle of the day. It is far too coincidental to assume
    there is not a relationship. This is affecting my flash forms, and
    also some of my javascript combo boxes.
    I will update when I discover more, and if others would do
    the same I would appreciate reading about it.

  • Problems activating an adobe forms object / lifecycle designer

    Hi everybody,
    our developers are getting more and more problems when they try to activate an adobe forms object in SAP.
    When they click on the activate icon, SAP freezes – and after 3-4 minutes of waiting, SAP displays, that e.g. 105.570 bytes were transferred, but the document remains inactive.
    So by now they need about 5 attempts before it finally gets activated…this is very time consuming and frustrating.
    Does anybody know a solution to this problem?
    Any ideas?
    Thanks in advance
    Regards
    Martin

    Hi everybody,
    our developers are getting more and more problems when they try to activate an adobe forms object in SAP.
    When they click on the activate icon, SAP freezes – and after 3-4 minutes of waiting, SAP displays, that e.g. 105.570 bytes were transferred, but the document remains inactive.
    So by now they need about 5 attempts before it finally gets activated…this is very time consuming and frustrating.
    Does anybody know a solution to this problem?
    Any ideas?
    Thanks in advance
    Regards
    Martin

  • Addition in Flash Forms

    Hello. This is what I am trying to accomplish. I am making a
    tabbed registration flash form and I would like the person
    completing the form to see a total as he makes the selection for
    what he will be attending. The way I approached the problem was to
    bind an ActionScript function to the
    GRANDTOTAL form field, but when the form finishes loading in
    the browser, the
    NaN error pops up. I tried to convert the field selections
    explicitly to numbers to perform the addition, but it is obviously
    not working. If anyone could shed some insight into this, that
    would be great. Thank you in advance. The code for the tab that
    handles the selection is below.
    <!-- registration details tab -->
    <cfformgroup type="page" label="Registration">
    <cfformitem type="text">Your FULL NBBAN Registration
    Includes: Admission to all Forums, Continental Breakfast,
    Refreshment Breaks, Welcome Reception, Awards Dinner and
    Luncheon.</cfformitem>
    <cfformitem type="spacer" height="3" />
    <cfformitem type="text">CONFERENCE REGISTRATION
    FEES:</cfformitem>
    <cfformgroup type="tile" height="650">
    <cfformgroup type="horizontal">
    <cfselect name="MemberQtyat250" size="1">
    <option value=0>0</option>
    <option value=250 selected>1</option>
    <option value=500>2</option>
    <option value=750>3</option>
    <option value=1000>4</option>
    <option value=1250>5</option>
    </cfselect>
    <cfformitem type="text">$250 per
    MEMBER</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="NonMemberQtyat300" size="1">
    <option value=0 selected>0</option>
    <option value=300>1</option>
    <option value=600>2</option>
    <option value=900>3</option>
    <option value=1200>4</option>
    <option value=1500>5</option>
    </cfselect>
    <cfformitem type="text">$300 per
    NON-MEMBER</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="GuestQtyat125" size="1">
    <option value=0 selected>0</option>
    <option value=125>1</option>
    <option value=250>2</option>
    <option value=375>3</option>
    <option value=500>4</option>
    <option value=625>5</option>
    </cfselect>
    <cfformitem type="text">$125 GUEST (accompanied by
    MEMBER)</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="WelcomeReceptionQtyat75" size="1">
    <option value=0 selected>0</option>
    <option value=75>1</option>
    <option value=150>2</option>
    <option value=225>3</option>
    <option value=300>4</option>
    <option value=375>5</option>
    </cfselect>
    <cfformitem type="text">$75 WELCOME RECEPTION
    ONLY</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="AwardsQtyat100" size="1">
    <option value=0 selected>0</option>
    <option value=100>1</option>
    <option value=200>2</option>
    <option value=300>3</option>
    <option value=400>4</option>
    <option value=500>5</option>
    </cfselect>
    <cfformitem type="text">$100 AWARDS AND RECOGNITION
    CEREMONY ONLY</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="LuncheonQtyat75" size="1">
    <option value=0 selected>0</option>
    <option value=75>1</option>
    <option value=150>2</option>
    <option value=225>3</option>
    <option value=300>4</option>
    <option value=375>5</option>
    </cfselect>
    <cfformitem type="text">$75 LUNCHEON
    ONLY</cfformitem>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfselect name="KingTourQtyat20" size="1">
    <option value=0>0</option>
    <option value=20 selected>1</option>
    <option value=40>2</option>
    <option value=60>3</option>
    <option value=80>4</option>
    <option value=100>5</option>
    </cfselect>
    <cfformitem type="text">$20 THE KING CENTER
    TOUR</cfformitem>
    </cfformgroup>
    <cfformitem type="script">
    function subTotal() {
    var memberQty = registration.MemberQtyat250;
    var nonmemberQty = registration.NonMemberQtyat300;
    var guestQty = registration.GuestQtyat125;
    var receptionQty = registration.WelcomeReceptionQtyat75;
    var awardsQty = registration.AwardsQtyat100;
    var luncheonQty = registration.LuncheonQtyat75;
    var tourQty = registration.KingTourQtyat20;
    var result = trace(Number(memberQty)) +
    trace(Number(nonmemberQty)) + trace(Number(guestQty)) +
    trace(Number(receptionQty)) + trace(Number(awardsQty)) +
    trace(Number(luncheonQty)) + trace(Number(tourQty));
    alert(result);
    </cfformitem>
    <cfformgroup type="horizontal">
    <cfinput type="text" name="GRANDTOTAL" label="Total: $"
    bind="{subTotal()}" />
    </cfformgroup>
    </cfformgroup>
    </cfformgroup>

    You need to store the information user have input before
    somewhere. You can store it in local shared object, which is dubbed
    as a "flash cookie" -- Flash MX. Then you will retrieve it at
    execute an autofill. If you store the user's info in a remote
    database -- you can loadVars from you server with the form
    information.
    Search for SharedObject in flash help -- it is pretty
    straight forward and simple.
    I forgot to mention that you will need to compare entry in
    the form field with the stored info on each key stroke, naturally,
    and display results in an additional text field, etc.
    Hope it helps...

  • Simple question about tabular forms: error in MRU

    hi to all,
    i write here to check if what i think about tabular forms is confirmed.
    If i build a master- detail or tabular form and the underlying table are modified, the page where the tabulare form is contained doesn't work anymore.
    if what i've written above is correct, is there a way to realign the fields of the tabular forms to the db fields and make my page work again without rebuilding all?
    Can i modify something, somewhere inside apex to make my page run again?
    The error i get (in italian / english)
    Error in mru internal routine: ORA-20001: Errore in MRU: riga= 0, ORA-20001: ORA-20001: La versione corrente dei dati nel database è cambiata da quando l'utente ha iniziato il processo di aggiornamento. checksum corrente = "ED73B05FA6016F8D5F3B4B5B69AF482D", checksum elementi = "CFD72DCC4221A340057D654B54EA7A04"., update "NEWPROJ"."CNT_VAL_SEG_DEMO" set "ID" = :b1, "FK_CNT" = :b2
    Means: The version of data in db (fields of the tables?) has changed since the user started the update process.
    By the way this sentence under my opinion can trick you as
    in italian 'La versione corrente dei dati nel database'
    can means both that data contained in tables have changed (dml error / process error / data the user see not are the real underlying data). Can mean as well the field definition is changed, however a more meaningful message in italian is: ' la definizione delle tabelle usate dall'oggetto tabular form é cambiata'.
    That translated in english is ' DDL of table/s used by tabular form has changed'.
    thanx a lot
    Message was edited by:
    Marcello Nocito

    HI Heinz,
    yes is now clear, however is a pity that a litte change in the query has a lot of
    implications: a change in the structure of DB means new feature / the data model is not alligned with current requirement. So usually (but not always) it means changing the SELECT as well.
    Such Apex is a Rad an impression is that if you build a complex forms with several linked reports / field and one day you have to change the query of the TABULAR FORM / MASTER DETAIL generated with report you get a lot of rebuilding.
    I think i will avoid the use of this 2 object in the future and use more htmldb.items in the select.
    bye bye

  • Wordwrapping in Flash Forms

    Using <cfinput type="text" in a flash form. I need to be
    able to wrap text in this control, as we have long descriptions of
    items that need to be edited. Currently I can only get the
    description on 1 line which is not too useful.

    You need to store the information user have input before
    somewhere. You can store it in local shared object, which is dubbed
    as a "flash cookie" -- Flash MX. Then you will retrieve it at
    execute an autofill. If you store the user's info in a remote
    database -- you can loadVars from you server with the form
    information.
    Search for SharedObject in flash help -- it is pretty
    straight forward and simple.
    I forgot to mention that you will need to compare entry in
    the form field with the stored info on each key stroke, naturally,
    and display results in an additional text field, etc.
    Hope it helps...

  • Autofill in flash forms?

    Does anyone know any code/hints regarding aufotill in flash
    forms? Much like in gmail, the e-mail address fills in as
    suggestion when you've typed the first few letters... I have never
    seen this in flash, but I need it for an implementation I'm doing.
    Anyone?

    You need to store the information user have input before
    somewhere. You can store it in local shared object, which is dubbed
    as a "flash cookie" -- Flash MX. Then you will retrieve it at
    execute an autofill. If you store the user's info in a remote
    database -- you can loadVars from you server with the form
    information.
    Search for SharedObject in flash help -- it is pretty
    straight forward and simple.
    I forgot to mention that you will need to compare entry in
    the form field with the stored info on each key stroke, naturally,
    and display results in an additional text field, etc.
    Hope it helps...

  • Re: flash form renders as blank page

    Anyone find a solution from Adobe regarding the MS Server
    2003 problem with
    flash forms? Its dead on our site after the upgrade and the
    fixes did not
    work for us.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=143&threadid= 1171893&highlight_key=y&keyword1=flash%20forms

    I'm having a similar problem. In my case, when opening help the first time (using a call to RoboHelp_CSH.js), the help window works properly.  If I do not close the help window and click a help link (same call to RoboHelp_CSH.js), the help window blanks out entirely. I'm not sure if roblinc61 has a different copy of the whcsh_home.htm file than I do, but line 295 for me is three lines lower (goNewWnd.document.location.href=gsURL;).
    The only answers I've been able to find about this error message relate to the same origin policy which should not apply to me as I am building an intranet application in which the help is held in a directory of the main site and is accessed through relative paths (in .NET I'm setting the starting point as ~/Help/index.htm).

  • Adobe Flash shared objects disabled

    On or about 11-4-2013 I was trying to access the television company channel ABC and I kept receiving the following message:"Adobe Flash shared objects disabled)" The help desk sent on 11-8-2013 a response as to how I should fix the problem.  Unfortunately I really do not have a clue where find the information to change it.  Should I be in Adobe when I "find" the area to change or should I be on the ABC webpage?

    Perhaps it would be better to post your question in the Flash or the Flash Player forum. This is the Reader one.
    http://forums.adobe.com/community/flash
    http://forums.adobe.com/community/flashplayer

  • Reset One field Only in Coldfusion Flash Form

    I have a flash form with a fair amount date fields.  I use the code
    <cfinput type="datefield" name="DATE1" label="Diagnosis Date:" width="100" value="#now()#"/>
    This is the master date field. It populates about 10 other date fields by using the following code for the other 10 fields.
    <cfinput type="datefield" name="DATE2" label="Diagnosis Date:" width="100" bind={DATE1.txt}/>
    There are certain cases where date fields 7-10 are not used. Unfortuantely, fields 7-10 in those cases are prepopulated because of the bind. I want to put a reset/clear button besides each of those date fields (7-10). Is there a way to code the reset/clear button to only clear the corresponding date field? Right now, I have the users choosing the same date as DATE1 to clear out the field. That is 2 clilcks. I would prefer the users just to click on a reset/clear button.
    TIA!

    Put this in your pipe. Does  it smoke?
    <cfform format="flash">
    <cfformgroup type="horizontal">
    <cfinput type="datefield" name="DATE1" label="Diagnosis Date 1:" width="100" value="#now()#"/>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfinput type="datefield" name="DATE2" label="Diagnosis Date 2:" width="100" bind="{DATE1.text}"/>
    <cfinput type="button" name="date2button" onclick="{DATE2.text=''}" value="Reset Date 2">
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfinput type="datefield" name="DATE3" label="Diagnosis Date 3:" width="100" bind="{DATE1.text}"/>
    <cfinput type="button" name="date3button" onclick="{DATE3.text=''}" value="Reset Date 3">
    </cfformgroup>
    </cfform>

  • Coldfusion does not recognize IE11 - Flash forms not working.

    This is a problem that has me banging my head on my desk. We have a web application that still uses Flash based web forms. (Before anyone says it, I know we need to get away from the flash forms, but we cannot do this overnight.) The problem is that because IE11 no longer passes MSIE in the USER AGENT string, ColdFusion is placing an <Embed> tag instead of an <Object> tag to load the flash. I know that we could add our site to the Compatibility List, however we have too many users to guide this through. We need a solution that we can perform on our side, either modifying code, ColdFusion, or IIS. First has anyone else run into this problem? Does anyone have any potential solutions?
    Thanks in advance for your help.

    We did find a stable work around that "tells" coldfusion to render flash forms for IE 10 even though the server call is coming from IE 11.  I don't believe Adobe would necessarily want the method that we were forced to use advertised.  It involved adding 10 lines of CF code to the top of each page that used flash forms.  It was very unorthodox and we are simply using this to buy time to get our forms off the flash platform.  I would be willing to email the solution to anyone interested.

  • Blank screen with flash forms

    I am attempting to get flash forms to work, but keep getting
    a blank screen. Nothing is ever rendered to the screen. There is
    also a message that pops up that states "Press SPACEBAR or ENTER to
    activate and use this control". My code is below...
    <cfform name="frmTest" format="flash" height="100%"
    skin="haloblue">
    <cfformgroup type="tabnavigator">
    <cfformgroup type="page" label="Help 1">
    <cfformitem type="text" style="font-weight:bold;
    font-size:large;">
    Help!
    </cfformitem>
    </cfformgroup>
    <cfformgroup type="page" label="Help 2">
    <cfformitem type="html" style="font-weight:bold;
    font-size:large;">
    Help!
    </cfformitem>
    </cfformgroup>
    </cfformgroup>
    </cfform>
    We are using MX 7 and I have Flash 8 player installed.
    Any Ideas?

    Hi,
    Please read the following to know more about the message that
    appears in
    Microsoft IE. It also shows you how to fix it, but I believe
    it does not
    work for the Flash movies created using ColdFusion tags.
    http://www.adobe.com/devnet/activecontent/articles/devletter.html
    Post here, if you figure out how to implement it for CFFORM
    tags in
    ColdFusion that produce flash SWFs.
    Hope this helps.
    - Milind Joshi
    smaccurdy wrote:
    > I am attempting to get flash forms to work, but keep
    getting a blank screen.
    > Nothing is ever rendered to the screen. There is also a
    message that pops up
    > that states "Press SPACEBAR or ENTER to activate and use
    this control". My
    > code is below...
    >
    >
    > <cfform name="frmTest" format="flash" height="100%"
    skin="haloblue">
    > <cfformgroup type="tabnavigator">
    > <cfformgroup type="page" label="Help 1">
    > <cfformitem type="text" style="font-weight:bold;
    font-size:large;">
    > Help!
    > </cfformitem>
    > </cfformgroup>
    > <cfformgroup type="page" label="Help 2">
    > <cfformitem type="html" style="font-weight:bold;
    font-size:large;">
    > Help!
    > </cfformitem>
    > </cfformgroup>
    > </cfformgroup>
    > </cfform>
    >
    > We are using MX 7 and I have Flash 8 player installed.
    >
    > Any Ideas?
    >

Maybe you are looking for