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: *

  • Users: natg504
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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,
  6. 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...
  7. 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...
  8. 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