Variable Transfer Coldfusion > Flash

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

  1. #1

    Default Variable Transfer Coldfusion > Flash

    I am attempting to transfer variables from this Cold Fusion script:
    <cfsetting enablecfoutputonly = "yes">
    <cfprocessingdirective suppresswhitespace="Yes">
    <cfset Name = "Stranger" />
    <cfoutput>welcomeMessage=#Name#</cfoutput>
    </cfprocessingdirective>

    Ed@Home Guest

  2. Similar Questions and Discussions

    1. Sending a variable from coldfusion to flash
      When pulling a oldfusion variable into flash, instead of just getting the variable pair we also get a long line of hex codes for white space, line...
    2. IIS - ColdFusion, chunked transfer error
      Hi, I have a ColdFusion page which is receiving urlencoded form variables via an http post from another server. As you may know, with the http...
    3. how to transfer the form variable to other page afterusing user validating?
      I want to get a form variable which is user's id, and use it in the other asp page, if the user pass the validating. I used the DW's logon-in...
    4. Transfer Flash variable info to Coldfusion Document?
      Using a simple on(press){ } How do I transfer variable into a coldfusion document....?
    5. about transfer variable
      Hello everyone I have problem with transfering variables from script to script: In file 2.php I make <form method=post...
  3. #2

    Default Variable Transfer Coldfusion > Flash

    I am attempting to transfer variables from this Cold Fusion script:
    <cfsetting enablecfoutputonly = "yes">
    <cfprocessingdirective suppresswhitespace="Yes">
    <cfset Name = "Stranger" />
    <cfoutput>welcomeMessage=#Name#</cfoutput>
    </cfprocessingdirective>

    Ed@Home Guest

  4. #3

    Default Variable Transfer Coldfusion > Flash

    I am attempting to transfer variables from this Cold Fusion server script:

    <cfsetting enablecfoutputonly = "yes">
    <cfprocessingdirective suppresswhitespace="Yes">
    <cfset Name = "Stranger" />
    <cfoutput>welcomeMessage=#Name#</cfoutput>
    </cfprocessingdirective>

    into this Actionscript3 Flash file:

    var loader:URLLoader = new URLLoader()
    loader.addEventListener(Event.COMPLETE, nextitem)
    //navigateToURL(new URLRequest("CFM/test.cfm"), "_blank")
    loader.load(new URLRequest("CFM/test.cfm"))
    stop()

    function nextitem(event:Event):void {
    testTF.text = "HERE"+URLLoader(event.target).data
    }

    When I do a Test Movie from Flash the first line of the Cold Fusion file is
    displayed. When I open the Flash file in my browser, no data is displayed (if
    I replace data with bytesTotal, a 0 is displayed). I have tried everything I
    can think of including reinstalling my flash palyer, but have not been able to
    solve this problem. Does anyone have a suggestion?

    Ed@Home 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