Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JoeMcGarvey

    Changing scenes/frames from a movie clip

    Hi All, I have a one frame scene with a movie clip in it and a stop(); command so the movie clip in its entirety. At the end of the movie clip I have a "goToAndPlay('Scene 2', 1)". I would expect this to go to the next scene and play it. Instead, it seems that the action is...
  2. JoeMcGarvey

    XML DOM? Deleting a node...

    Hi - I have an XML doc structured as such: http://63.143.148.115/images.xml I am accessing the DOM with ASP. I am passing a delete request for a particular node to the delete function through a URL variable. The URL variable is "file" with the value as the image name, ie...
  3. JoeMcGarvey

    XSLT xsl:param undefined

    Hi, I have two xslt templates. The second template is called (xsl:call-template) by the first template. The second template can also be rendered separately from the first template, so it stands alone. The first templates XML contains a node that defines the "src" of an...
  4. JoeMcGarvey

    XSLT Grouping

    Hi, I am trying to output a &quot;select&quot; field from the sample XML below: <tree> <option>Ducks</option> <option>Cows</option> <option>Sheep</option> <option>Sheep</option> <option>Ducks</option> <option>Cows</option> <option>Cows</option> </tree> I need to...
  5. JoeMcGarvey

    XSL: Checking for &quot;No Node that matches criteria&quot;

    I have a for-each statement that looks for certain parameters in the node set (namely an empty value for &quot;Points&quot;). If the next list item value for &quot;Points&quot; is empty, it displays that record asking for a value for &quot;Points&quot;. XSL: <xsl:for-each...
  6. JoeMcGarvey

    NEW TO FLASH: Passing a URL Variable to a text field

    Hi, I am trying to pass a url variable into Flash to replace the value in a text box with that variable. 1. What kind of text box should I create? Static/Dynamic/Input? I created a button symbol and gave the text box an instance name of &quot;ButtonText&quot;... 2. What is the action script...
  7. JoeMcGarvey

    Any HTMLTidy (TidyCOM) users out there?

    Hey TidyCOM users... Has anyone else found that when using the word-2000 filter option when creating a string with obj.TidyMemToMem that all the word generated crap is not filtered completely? But, when using obj.TidyToFile, the output is completely clean of any word junk. Any idea why? Is it...
  8. JoeMcGarvey

    Regular Expression Help

    RegExp experts - can someone help me translate this into a regExp? I want to look for all occurrences of class=&quot;could_be_anything&quot; and create a regExp string that I can then use in a replace function: theRepString = ????; //the regExp strOUT = strOUT.replace(theRepString...
  9. JoeMcGarvey

    XSLT and SUM()

    I have been reading about sum() to evaluate some (pardon the pun) nodes. I am very confused and cannot get anything working. Here is my (simplified) XML: <entity> <value>55</value> </entity> <entity> <value>7</value> </entity> <entity> <value>18</value> </entity> How do I write my...
  10. JoeMcGarvey

    ASP variable read by flash

    Hi, Is there a way to have a flash movie read a variable from the ASP page it is embedded in? I have an ASP variable called &quot;color&quot;. This is a hex color value. I want the flash movie to change the color of a box to this value. I am sure this has probably been posted before, but...
  11. JoeMcGarvey

    Random Image

    I would like to display a random image, or movie clip, from a group in the library. I know enough Flash to get myself in trouble, and need to crank this out quickly. Does anyone have a stock script that could accomplish this?
  12. JoeMcGarvey

    XSLT: Determing odd or even node count

    Hi there.... Can anyone point me in the right direction here... I am trying to write an xsl:if statement that checks if the node count is odd or even. If it is odd (say 1 or 3) it writes: <tr><td>STUFF</td> If it is even (say 2 or 4) it writes: <td>STUFF</td></tr> The result is a...
  13. JoeMcGarvey

    XSL: Adding values to create a total

    Hi Sportsfans - I am stuck on an XSL problem. I have multiple XML nodes (games) that each have a value: wins, losses, ties. In my xsl I set three variables at the top of the style sheet: <xsl:variable name=&quot;wins&quot;>0</xsl:variable> <xsl:variable...
  14. JoeMcGarvey

    Outputting XML by creating an object

    I found a thread with an example provided by Danfood. This HTML example loads an XML and XSL file and outputs the result beautifully and simply in IE. Unfortunately, it only works with IE. Can anyone point me in the right direction towards making this script Mozilla compatible? Thanks All...

Part and Inventory Search

Back
Top