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

    what's the best way animate existing logo in Flash?

    What created the original logo? I am not familiar with *.cdr format.
  2. dluman

    Bitmap or vectors? 1mb >< 100kb

    Compression factor.
  3. dluman

    contact form causing a major headache! help!

    You need to pass the extra values from flash to the php and then from the php to your email. ACTION SCRIPT send_btn.onRelease = function() { var sender = new LoadVars(); sender.name = firstname.text; sender.sur = surname.text; //added this line sender.ph = phone.text; //added...
  4. dluman

    how to fade out music during a designated timeframe

    Hack and slash the code from this tutorial and you should be on your way: http://www.flashkit.com/tutorials/Audio/Sound_Fa-Agamemno-703/index.php
  5. dluman

    pasting images

    You can always vectorize the image by going to the Modify menu and tracing the image. That way the shape is reduced to a more malleable format and you can delete the white background as it separates the image into color channels.
  6. dluman

    frame rates

    That is a very high frame rate for a flash animation. Considering that standard video is 29.97 fps, a file running at 64 fps is overkill. You will lock out a lot of users. Are your jpgs in the library or are they externally loaded?
  7. dluman

    Buttons not working in Movie Clip.

    I'll have to check it on my home PC, bit look at a targetting issue. Your button may be targetting something on the _root level, but you need to target something on the _Root.scroller level.
  8. dluman

    problems looping wav file

    Overall you'll save movie space if you just use Flash to stream the file on loop. This is the code that you'll need. (s= arbitrary variable) s = new Sound(); //initializes a new sound s.loadsound("c:\yourpathhere\file.mp3", true); //loads sound into player, uses URL, the true/false value...

Part and Inventory Search

Back
Top