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. ShonGill

    Load XML images into FLASH as an Array

    here's the verbage: 256 levels of recursion were exceeded in one action list. This is probably an infinite loop. Further execution of actions has been disabled in this movie. Dishon Gillis Dominion Enterprises Company
  2. ShonGill

    Load XML images into FLASH as an Array

    actually... i get 2 1 0 2 1 0 2 1 0 and a message... something like. looped 256 times. I'm not in front of it right now. But it refers to 256 and that it seems it will be an infinite search. Dishon Gillis Dominion Enterprises Company
  3. ShonGill

    Load XML images into FLASH as an Array

    it returns the iterated output. let me explain it... I get a countdown starting from the total number of records in the XML file, less one (0 based total count). it does this for the total number of records in the XML file. it does not seem to be pulling the assigned number for that thumbnail...
  4. ShonGill

    Load XML images into FLASH as an Array

    I'm getting the trace, but only after I removed this conditional: if ((_global.selectedImage != this.num) && (_global.imageLoaded)) now it just keeps looping through the XML. I traced every line one-by-one until I found that the output for my loadImage function is returning all of the...
  5. ShonGill

    Whats the best way to learn Flash?

    I really like those video workshops. I'm still learning this ActionScripting, it's all new to me like it was just released yesterday. ASP.NET has the same sort of video workshops. I think Actionscript is a bit easier though. : ) Dishon Gillis Dominion Enterprises Company
  6. ShonGill

    Load XML images into FLASH as an Array

    So I should do something like this... trace(photoXML) photoXML is pulled from anywhere in my timeline. This is what I have so far... currentHolder = 0; theDepth = 1000; function loadImage(numba) { _global.imageLoaded = false; trace(photoXML); var img_mclListener:Object = new...
  7. ShonGill

    Load XML images into FLASH as an Array

    I am trying to get that part working still. In my SWF clicking on the thumbnail does nothing, so there is some problem in the loadImage script, or perhaps it's not even being called. I would never have though I would have to do this Delegate.create. What is it doing? and will it work with the...
  8. ShonGill

    Load XML images into FLASH as an Array

    This worked! Thank you Kenneth. I'm having trouble with loading the image now. I think I'm still having scope issues, and I have the loadImage function in a seperate frame like I was telling you before. Because there is a MovieClip instance between the 'Thumbs' and the 'Loaded Image', I'm...
  9. ShonGill

    Load XML images into FLASH as an Array

    Ok. Cool. I can't wait to try this out! : ) Dishon Gillis Dominion Enterprises Company
  10. ShonGill

    Load XML images into FLASH as an Array

    Ok. So, your saying if I fix my syntax problems and place my code in one place and just change the scope of my "createEmptyMovieClip..." that the code should work. Or, if I use this mx.utils.Delegate that I will not have to change my scope because this function would still be called. I have...
  11. ShonGill

    Load XML images into FLASH as an Array

    Thank you for your help. I would like to move to AS3... eventually. I will try this and let you know when I'm in front of it. One question, do you see me running into problems with the following script? This is the function that should be called from the first script. The thing is the scripts...
  12. ShonGill

    Design Studio

    Well there's currently no OCR (Optical Character Recognition) program out there that would know what font you are using just by uploading some text in that font. At least no good ones. You would have to allow your visitors to upload there own font files. Then they could type anything they want...
  13. ShonGill

    Load XML images into FLASH as an Array

    I have the below ActionScript that works if I remove the loadXML and use an array that I define the image names in. I'm trying to load the image names from the XML file. I think the problem is in parsing the XML. I can trace my photoXML anywhere in the script and it will output the entire...
  14. ShonGill

    Merge Two DataSources Before Binding

    Hey guys & gals. I'm having trouble trying to merge data into one dataset from an XML, and also from DirectoryInfo. The problem is I get this error "DataBinding: 'System.IO.FileInfo' does not contain a property with the name 'aid'". 'aid' is one of the nodes in my XML file. I would like to...
  15. ShonGill

    Populating XML records with File Info or PostedFile

    i think i found it. i'm going to try this and let you know how it goes. Thanks for sending me in the right direction. http://radnet.radactive.com/library/WebControls/ILoad_2008.R1/reference/Web.Config_file_settings.html Dishon Gillis Dominion Enterprises Company
  16. ShonGill

    Populating XML records with File Info or PostedFile

    i haven't used the App_Code before. what should i be updating the config with? Dishon Gillis Dominion Enterprises Company
  17. ShonGill

    Populating XML records with File Info or PostedFile

    sorry, here's the right one: http://radnet.radactive.com/library/WebControls/ILoad_2008.R1/reference/The_I-Load_CustomStorage_option.html Dishon Gillis Dominion Enterprises Company
  18. ShonGill

    Populating XML records with File Info or PostedFile

    I was trying to tell you that everytime new photos are added to the XML (and FLASH photo gallery) all the existing photos will be removed... so there shouldn't be an issue with the XML file getting too large. also, there is only one person who would have access to changing the photos. as far...
  19. ShonGill

    Populating XML records with File Info or PostedFile

    the nature of the photo gallery requires the old images to beremoved to make way for the new images... hence the need for the interface. i'm trying to just parse the image location into the FLASH photo gallery with thumbnails. my original plan was this: 1. iLoad to crop/resize images and it...
  20. ShonGill

    Populating XML records with File Info or PostedFile

    Hey Everbody, I very new to ASP.NET and I'm still trying to get a grasp on all the .NET class stuff. I am building an image Upload/Resize/Crop/Delete interface. The image files will be saved on the files system and tracked with XML records. As I said, I'm very new to ASP.NET and I've done...

Part and Inventory Search

Back
Top