cfformitem script variable used in cfif

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default cfformitem script variable used in cfif

    Hi,

    I have this code within a cfform in flash format:

    <cfformitem type="script">
    mycat = {Category.selectedItem.data};
    </cfformitem>

    <cfformitem type="html">
    <cfif #mycat# IS 'XXX'>....</cfif>
    </cfformitem>

    It tells me #mycat# is undefined

    Can someone tell me how i can correctly set the mycat variable so that i can
    use it with my cfif?
    it would be very nice of you because i'm lost here ;-(

    regards,
    kat

    superkat Guest

  2. Similar Questions and Discussions

    1. cfformitem type="script": How to set hidden field'svalue?
      I have a simple test form that contains a cftree and a few input/hidden fields. Whenever a tree node is selected, I want to change the values of...
    2. <cfformitem type ="script">???
      Hi all I am having difficulties with an app that i downloaded from asfusion.com. The apps url is http://www.asfusion.com/apps/realestate/...
    3. variable to a shell-script
      hello, i've got really problems transporting a form-variable (called searchstring) to a shellscript :-/ because of a blank in the searchstring...
    4. Variable do not move from on script to the another one.
      Hello to all I just download the WAMP (apache-mysql-php) package. This package work with PHP5. Aktually I can't move on variable ($id) the...
    5. Try to pass variable into a php script
      I am not sure how you used javascript to submit the form. I usually do like document.form.action = "/cgi-bin/register.pl"...
  3. #2

    Default Re: cfformitem script variable used in cfif

    You can't

    Action script is client side, Coldfusion is server side !!

    Ken
    The ScareCrow Guest

  4. #3

    Default Re: cfformitem script variable used in cfif

    Thansk for your reply Ken,

    is there a way i get recuperate the variable for further usage .... by storing it somewhere, or so?

    regards,
    katja
    superkat Guest

  5. #4

    Default Re: cfformitem script variable used in cfif

    It's available in actionscript.

    So, let's assume you want to change the text in a form field called "myText"

    Then

    if(mycatt == 'XXX'){
    _root.myText.text = 'Some new text.';
    }

    Ken
    The ScareCrow Guest

  6. #5

    Default Re: cfformitem script variable used in cfif

    fantastic, thanks!
    superkat Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139