A Flash Developer Resource Site

Search:

Type: Posts; User: ProMasher

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    577

    mmmm not sure about Flash 5...Are you making sure...

    mmmm not sure about Flash 5...Are you making sure the image is actually fully loaded before displaying it? That's bitten a couple of folks in the past....

    - Jeff
  2. Replies
    3
    Views
    577

    Sure, see the createEmptyMovieClip() and...

    Sure, see the createEmptyMovieClip() and loadMovie() functions in the Flash reference. Quickie example would be....

    createEmptyMovieClip("jpgimage",0);
    jpgimage.loadMovie("MyJpg1.jpg");

    The...
  3. If the form is working with the exception of you...

    If the form is working with the exception of you receiving an email, the problem is not in the Flash code but in the code contained in the CGI script, teambzrk.pl. After all, THAT is what is actually...
  4. Any tag starting with "/" is an END tag. So, you...

    Any tag starting with "/" is an END tag. So, you have ended the tag before it began. Try:

    <A HREF="http://www.my-link-is-here.com"></A>

    - Jeff
  5. Hmmmm ya without seeing the actual flash file and...

    Hmmmm ya without seeing the actual flash file and tooling around myself in it I'm without an answer for ya....ah well, gave it a shot.

    - Jeff
  6. Yep, read that already...

    Yep, read that already...
  7. Well, one thing that has bitten a few people is...

    Well, one thing that has bitten a few people is not checking to make sure the images are fully loaded before displaying them, which would cause the exact error you are mentioning. Do you have some...
  8. Replies
    1
    Views
    315

    You're gonna need a server-side script to handle...

    You're gonna need a server-side script to handle the incoming data and process it into your data file. The script could be CGI based (Perl, PHP, etc) or ASP, ColdFusion, etc. To post the data see the...
  9. Looking briefly: _root.imgPathArray =...

    Looking briefly:

    _root.imgPathArray = _root.refDataImg.imgpaths.split("|");
    _root.refTxtArray = _root.refDataTxt.reftxt.split("|");

    I don't see _root.refDataTxt defined anywhere (second line...
  10. Ya it's loading the movie starting at the...

    Ya it's loading the movie starting at the registration point of the clip. Use some action script immediatly after the loadMovieClip function to change the position of the loaded clip, IE:
    ...
  11. Have you tried using the bandwidth profiler in...

    Have you tried using the bandwidth profiler in Flash itself? IE test movie, goto View-Bandwidth Profiler. Has worked terrific for me...

    - Jeff
  12. Replies
    4
    Views
    401

    Note sure I quite understand what the problem is,...

    Note sure I quite understand what the problem is, a couple of conflicting comments there....Is the blank (IE no scroll possible but scroll area still there) scroller present on the screen or not? If...
  13. Replies
    1
    Views
    382

    In CFMX, look at the reference for the CF Funtion...

    In CFMX, look at the reference for the CF Funtion "XMLParse()" and related functions...

    Next, if using both Flash MX and CF MX, then you can use the Flash Remoting service to let flash and CF talk...
  14. Ya I was just trying to get ya pointed in the...

    Ya I was just trying to get ya pointed in the right direction, wasn't sure how far you actually got in the quest....be interesting to see what you come up with as well...

    - Jeff
  15. Ok how about this (typing on-line so please...

    Ok how about this (typing on-line so please escuse any typos)....

    biasedRandom=function(bias1,bias2,bias3){
    var biasnum;

    //Generate number from 1 to 100
    biasnum=Math.random()*100;...
  16. Replies
    1
    Views
    409

    Sure, First, when you publish the movie, goto...

    Sure,

    First, when you publish the movie, goto the HTML settings and choose for Flash Detect on the specific version you want. This will provide an HTML template with all the Javascript in place to...
  17. So you want sub-navigation in each of the...

    So you want sub-navigation in each of the sub-topics loaded into the main stage, correct?

    Several ways you could go about that.....

    1) Depending on exactly how you are bringing in the...
  18. Replies
    2
    Views
    297

    Try publishing it as opposed to exporting it,...

    Try publishing it as opposed to exporting it, that will generate both the HTML file and the SWF file you need. If your project is named say, myproject.fla, then the publushed files would be:
    ...
  19. Replies
    6
    Views
    752

    I'm fairly certain that instance names for...

    I'm fairly certain that instance names for buttons are new to Flash MX and not available in 5.0.

    - Jeff
  20. Replies
    3
    Views
    441

    A Forum can be a relatively complex task needing...

    A Forum can be a relatively complex task needing more than a simple tutorial. If you are really serious about pursuing it I would suggest picking up the book "Flash MX application design and...
  21. Thread: Sound-Loops?

    by ProMasher
    Replies
    3
    Views
    398

    Regarding sound files, the two most popular PC...

    Regarding sound files, the two most popular PC formats are .WAV and .MP3 files. MP3 files are most certainly the most popular, having small file sizes and very good sound quality, with a number of...
  22. Replies
    2
    Views
    1,070

    Sure just need a little action script: // Make...

    Sure just need a little action script:

    // Make new sound object
    MySound=new Sound();

    // Load sound file from disk (or server)
    // false to load at once, true to load as streaming...
  23. Thread: How?

    by ProMasher
    Replies
    3
    Views
    529

    Looks like they are just rotating a few shapes...

    Looks like they are just rotating a few shapes (and horizontal scaling as well). You can tell it's not a true 3D sphere as the both sides of the circular shapes will intersect incorrectly on the main...
  24. Replies
    3
    Views
    413

    This is not a bug in the division of numbers in...

    This is not a bug in the division of numbers in Flash, but a rounding error that exists in Windows math functionality (C programmer's have been pulling their hair out for over a decade on these...
  25. Replies
    2
    Views
    449

    Ya as scudsucker mentioned ASP or PHP would fit...

    Ya as scudsucker mentioned ASP or PHP would fit the bill, as would ColdFusion. ASP or ColdFusion would make this a trivial 1 day task, I don't do much PHP so won't comment there....

    - Jeff
Results 1 to 25 of 190
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center