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 Mike Lewis 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. natg504

    CFForm: Flash forms don't display in IE when they're in a table

    It worked! Thanks a lot. I've been searching online for a while about that & found a lot of people with the same problem, but no solutions. It seems like I don't really even need the width. As long as the height is in there it works.
  2. natg504

    CFForm: Flash forms don't display in IE when they're in a table

    I am using the following code to display a basic flash form. It works fine in Firefox, but does not display at all in Explorer. If the format of the form is changed to html instead of Flash it works, or if I take it out of the table it works. It will have to be displayed in a table however...
  3. natg504

    CFGrid in CF8

    I'm trying to create a very basic data grid using CF8, but it shows no rows every time. I know the query works on it's own. What am I missing? <!---survey.cfc---> <cffunction name="getSurvey" access="remote" returntype="struct"> <cfargument name="page" required="true" /> <cfargument...
  4. natg504

    How to number rows in xml table?

    If am outputting a table in XML ...something like the example below. Is there a way to number the rows automatically? Thanks. <html> <body> <xml src="cd_catalog.xml" id="xmldso" async="false"></xml> <br />Title: <span datasrc="#xmldso" datafld="TITLE"></span> <br />Artist: <span...
  5. natg504

    How can i put this movieclip into a scrollpane?

    Hi Dustin, Thanks for the response. I've tried using the content.attachMovie function, but nothing seems to show up. Am i referring to the movie incorrectly? I dont' really know if i should be attaching "parent" or "emptyMC" or what... I commented out the code i was trying to use to do...
  6. natg504

    How can i put this movieclip into a scrollpane?

    I'm trying to load some .swf files into my Flash project from XML. I've attached my code below. "pane" is a scrollpane component on the stage, and "emptyMC" is an empty movie symbol in the library. Everything is working fine... I have the images loading in rows, 18 per row, but if there's a...
  7. natg504

    can i refer to a single layer of a swf file that I imported??

    Well, this is what I'd like to do... I have a group of vector images that I've saved as .swf files so that I can import them with XML into my flash project. The images are all black & white. Once the images are imported, I want to be able to change the color of just the white part, depending on...
  8. natg504

    can i refer to a single layer of a swf file that I imported??

    I'm importing a group of .swf movies with XML. I want to change the color of just one of the layers of this movie once it's imported. Is there a way to do that? Thanks,
  9. natg504

    How do I Unload this MovieClip???

    I loaded a movieclip with the following code. How can I unload it when i move to a different frame? Do I have to loop through all the xml images again & use UnloadClip or is there a better way? StencilGalleryXML = new XML(); StencilGalleryXML.onLoad = init...
  10. natg504

    Loading images from XML into a Scrollpane

    I'm trying to load a group of images into a scrollpane component with XML. So far, I can get them all to load in a movieclip outside the scrollpane, but how do I put that movieclip inside the scrollpane?? ------------------------------------------------ galleryXML = new XML(); galleryXML.onLoad...
  11. natg504

    can this work in Netscape And IE??

    it looks like inputMenus[i].options[inputMenus[i].selectedIndex].value worked. Thanks a lot!!
  12. natg504

    can this work in Netscape And IE??

    I want to look at the value of the inputMenu, a dropdown menu with values 1-5. If it's not blank, I want to take the name of that menu & set it as the value of a hidden text field. For example, if someone chooses "5" from inputMenu[1], which has a name "abc", i want to set the value of...
  13. natg504

    can this work in Netscape And IE??

    I have this line of code that works fine in IE, but I cannot get it to work in Netscape. What would the Netscape equivalent be?? var div=document.getElementById(dataSet); // get the input elements within the div var inputMenus=div.getElementsByTagName('select') for (i=0...

Part and Inventory Search

Back
Top