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

  • Users: wrighterb
  • Order by date
  1. wrighterb

    Looking for start - Information on Banner Cookie Tracking

    I am looking for a start, some place to find information on cookie banner tracking. I want the script to check the cookie, if expired do not show the banner. etc. thanks
  2. wrighterb

    createTextField Load on Main stage out side movie

    Did you get it? Also I have been trying this _root.createTextField("myTextBox", 1, 1,1,400,400); myTextBox.autoSize = "left"; myTextBox.border = true; myTextBox.multiline = true; myTextBox.wordWrap = true; myLoadVars = new LoadVars (); myLoadVars.load...
  3. wrighterb

    createTextField Load on Main stage out side movie

    I put this on the main time line createTextField("dynamic_txt", 4, 100, 100, 150, 30); dynamic_txt.text = "Here's some text"; I need it on the Movie
  4. wrighterb

    createTextField Load on Main stage out side movie

    I have this in actions on a movieclip function displayImage() { if(targetRotation>=1453 and targetRotation<=1482) { createTextField("dynamic_txt", 4, 100, 100, 150, 30); dynamic_txt.text = "Here's some text"; loadMovieNum(txtImageURL6.text,2); } The text will not load on...
  5. wrighterb

    Display text field Like you would a movie when called

    Take a look at the animation http://www.wrighter.com/hs/ once the wheel stops it loads a the same number top left of stage, I also want to load a dynamic text field here saying that number.
  6. wrighterb

    Display text field Like you would a movie when called

    Instead of having the dynamic text block appear right away I want it to load when a certain condition is met. function displayTextField() { if(this>=that) { loadVars(bio1.text,3); } when this condition is met, load the text field. But I want to load it at a...
  7. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Ok I figured it all out, I do apprec the help !!!!! Now I am trying this I have all the dynamic text loading already,all good, works when I put just the text field out there in the time line. I am trying to load text now when function displayImage() { if(this>=that) {...
  8. wrighterb

    Display text field Like you would a movie when called

    I have all the dynamic text loading already,all good, works when I put just the text field out there in the time line. I am trying to load text now when function displayImage() { if(this>=that) { loadMovieNum(bio1.text,3); } And it load the text variable bio1=thisorthat into movie 3...
  9. wrighterb

    Display text field Like you would a movie when called

    I am trying to display a dynamic text block when called at a certain time in a movie. loadMovieNum(bio1.text,3); A text block being loaded into a movie?
  10. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Hey Hey I figured that out now I am working on images and links http://www.wrighter.com/hs/_level0.Wheel.Link1 _root.Image1 = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue; txtImageURL1.text = _root.Image1; _root.Link1 =...
  11. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Ok am getting some stuff to show up Does this look right? I think there is something wrong here _root.Name1 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue; _root.Name2 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue; _root.Name3 =...
  12. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Thanks also In my first frame of my old flash file I had this loadVariablesNum("SpinWheelTwelve.txt?noCache="+Math.floor(random(1000000)/random(1000)), 0); loadVariables("SpinWheelTwelve.txt?noCache="+Math.floor(random(1000000)/random(1000)), "Wheel"); How would I incorporate my no cache on...
  13. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Hey hey ok I got the xml written <?xml version="1.0" encoding="UTF-8"?> <spins> <spin> <Name1>=George</Name1> <ImageLg1>=http://www.blah.com/images/bio1.jpg</ImageLg1> </spin> </spins> How do I get Flash to read it
  14. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    I am getting this error Internal Error:No parameters or length to big... Any ideas what that is, it shows the whole url in the address bar thou
  15. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    Never did it with xml any suggestion?
  16. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    I have a txt document that I read urls from Text doc. &Link=http://www.blah.com?this=that&that=this It blows up HERE on my & join because of the text doc. What should I do?
  17. wrighterb

    Getting 12 Random Numbers, But I don't want the number to repeat?

    Hey Hey I got it worked it out.
  18. wrighterb

    Getting 12 Random Numbers, But I don't want the number to repeat?

    Ok this works great below, I get 12 random numbers and populate a txt doc with information that I get from the database by the random number GREAT, one thing, I dont want the random number to repeat itself ever so each 12 numbers ( that I am getting from the ID field in the database ) have to be...
  19. wrighterb

    asfunction pulling image dynamically

    This is placed on the main movie. Look for if (dr<=90) cause that is at what speed it should stop. then I check for the num variable. onClipEvent (load) { num = Math.round(Math.random()*360); targetRotation = num; spinCount = 4; targetRotation += spinCount*360; spinSpeed = spinCount*20...
  20. wrighterb

    asfunction pulling image dynamically

    Ok num represents the degree (0-360) that the wheel will stop at, I have the wheel broken down in 12 slices 30 degrees a piece. I keep putting in if (num>=360) { loadMovieNum("http://www.wrighter.com/awants.jpg", 2); } But I am getting nothing.

Part and Inventory Search

Back
Top