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 strongm 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

    THANKS!! Worked like a charm.. Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  2. 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...
  3. 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...
  4. 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...
  5. JoeMcGarvey

    Need Help, XML Order Entry - Address Drop Down List box

    They are wrong... and correct... The issues they are giving you are not XML, but HTML issues. The select list component in HTML renders eaach group of data on a single line. So, they are correct that the address would have to be horizontal. The 50 character limit is not true in current...
  6. JoeMcGarvey

    Skipping the First Occurance in an "xsl:for-each"

    Yes... inside your for-each statement put: <xsl:if test=&quot;position()>1&quot;> STUFF HERE </xsl:if> Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  7. 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...
  8. 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...
  9. JoeMcGarvey

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

    I am an idiot!! The text color of the text field was set to white! DOH!!! Thanks for all the help... Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  10. JoeMcGarvey

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

    Still no go... did it work for you? Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  11. JoeMcGarvey

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

    http://development.paragraphdesign.com/test.fla Thanks!! Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  12. JoeMcGarvey

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

    Seems simple... but it's not working. Using FlashMX... Maybe I am missing something: 1. I have a button symbol in the Library named &quot;TheButton&quot; 2. &quot;TheButton&quot; has a dynamic text field with an instance name of &quot;theTextBox&quot; and a variable named...
  13. JoeMcGarvey

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

    Ok... it works if I set an action script: ButtonText = &quot;hello&quot;; How do I load the variable value from the url? This did not work: var theText = _root.ButtonText; //my url variable ButtonText = theText; Joe McGarvey - Web Application Developer Paragraph, Inc. -...
  14. JoeMcGarvey

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

    Pasing it in the flash object tag like so: <PARAM NAME=movie VALUE=&quot;test.swf?ButtonText=THIS IS THE TEXT&quot;> Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  15. 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...
  16. 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...
  17. JoeMcGarvey

    Regular Expression Help

    Not that I know of (without much more code than is necessary). The power of regExp has sold me... that's why I am so eager to understand them better. Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  18. JoeMcGarvey

    Regular Expression Help

    You guys are great! Thanks! I am beginning to understand... and my app is now working! Joe McGarvey - Web Application Developer Paragraph, Inc. - http://www.paragraphinc.com Paragraph Publisher - http://www.paragraphpublisher.com
  19. JoeMcGarvey

    Regular Expression Help

    No luck... doesn't seem to match the pattern. Any thoughts? I just can't seem to grasp regExp's. I think I'll start a support group... Regular Expressions Anonymous. &quot;Hi, my name is Joe and Regular Expressions ruined my marriage...&quot; Joe McGarvey - Web Application Developer...
  20. 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...

Part and Inventory Search

Back
Top