Making a dynamic button

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

  1. #1

    Default Making a dynamic button

    I am bringing into flash xml files via a web service connector and a data set
    component. Bound to these are are various components to retreive differant
    parts of data from the xml file. One of the strings that come into a text area
    component is a URl which I want to use to populate the action for a button. The
    action (url from xml string) would change depending on which data I have
    selected in the populated datagrid component (array of xml ).

    dbach Guest

  2. Similar Questions and Discussions

    1. Making Spyr Dynamic
      Have searched for but could not find so I am asking: Can someone clue me into how I can use a Collapsible Panel or Accordion Panel in a PHP page...
    2. Making a 'Print Button'
      Hi All, I have a PDF that has some buttons in the corner that I am adding functionality to. I have all the usual like previous/next and content...
    3. HELP making a zoom in button
      im verry noob, so im sure someone can help me i just export a 3ds max model to director. now i want to make a button, and when someone press that...
    4. suggestions for button making
      whats the best thing to be using ? i have flash MX 6 dreamweaver 6 adobe photopaint corel 9 whats preferred ??? I can get and try others.
    5. Making a button rotate
      It Works, Thanks a lot Jim you'll a life saver Thanks Eddie "Jim Babbage" <jbabbage@rogers.com> wrote in message...
  3. #2

    Default Re: Making a dynamic button

    How are you selecting you data? Most simple action would be something like this.

    myButton.onRelease = function() {
    getURL(pathinyourXML, "_blank");
    }
    apodkolinska Guest

  4. #3

    Default Re: Making a dynamic button

    I'm stuck on the same issue.

    I have been able to bind XML data to a comboBox, textArea, and a Loader but I
    can't figure out how to bind an URL from an XML file to a button.

    I tried your simple button action. How do I access the dynamic URL variable?
    Is it possible to bind the data to the function?

    Any help or additional ideas would be appreciated.



    paz 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