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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by billwatson

  1. billwatson

    Create Financial Calculator in Flash

    Hi 1) Yes flash supports all of those controls and listens for events 2) You can create your own forms 3) Saving results as text and printing can be achieved 4) Flash works best with a class framework Rather than a tutorial a working example to refer to may be of more help as you work your...
  2. billwatson

    flash player versions?

    plug in for firefox https://addons.mozilla.org/en-US/firefox/search?q=flash+switcher&status=4 allows quick and easy switching of flash player versions
  3. billwatson

    createEmptyMovieClip question

    sounds like you are trying to position them before they have fully loaded
  4. billwatson

    swf to server pdf

    http://www.flashjester.com/?section=tricks_flashhandout
  5. billwatson

    Issue with Flash photo gallery

    can you just post a link to the fla be quicker if i fix it then you look at code
  6. billwatson

    Issue with Flash photo gallery

    with flash mx only ( not 2004 ) you dont have a loader component all you can do is scale the photo after it has fully loaded let me know if you need code
  7. billwatson

    Issue with Flash photo gallery

    then the photos are larger than the box. you could scale them after they have loaded or if you are using mx2004 or above use a loader component which will automatically scale the photos to fit
  8. billwatson

    Flash causes flicker in IE... See example

    dont embed it use the swfobject http://blog.deconcept.com/swfobject/
  9. billwatson

    hitArea ? empty movieclip loads external swf

    you are trying to assign the action before loading is complete use a moviecliploader and place the onrelease code inside a complete function
  10. billwatson

    Flash Feedback Forms & Cyrillic Fonts

    suspect it is a php problem look at this thread http://www.tek-tips.com/viewthread.cfm?qid=1390523&page=1
  11. billwatson

    Flash Feedback Forms & Cyrillic Fonts

    try adding system.useCodepage = true; in frame 1 of main movie
  12. billwatson

    Displaying Data inside the rollover state of a button?

    Sorry to butt in Kenneth One solutiom - untested myData = new LoadVars(); myData.parent = this; myData.onLoad = function() { switch (this.parent._name) { case 'mc_one': this.parent.info.text = this.mc_one; break; case 'mc_two': this.parent.info.text =...
  13. billwatson

    how to call url from xml into getURL in actionscript

    called your xml file link.xml code in frame 1 of the movie url_xml = new XML(); url_xml.ignoreWhite = true; url_xml.onLoad = function() { image = url_xml.firstChild.childNodes[0].firstChild.firstChild.nodeValue; link = url_xml.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue...
  14. billwatson

    Random Flash .swf Movie loader (continuous)

    Assuming that you are loading the files into an empty movie clip (empty_mc) Frame 1 of main movie function nextRandom(){ empty_mc.loadMovie("image"+random(46)+".swf"); } nextRandom(); and in the last frame of all 47 swfs add _parent.nextRandom();
  15. billwatson

    Flash reading data from text file how to

    actionscript goes like _lv = new LoadVars(); _lv.onLoad = function(){ myVar1 = this.var1; myVar2 = this.var2; } _lv.load("myvars.txt"); myvars.txt will look like &var1=Bill &var2=4

Part and Inventory Search

Back
Top