A Flash Developer Resource Site

Search:

Type: Posts; User: FlashHungry

Page 1 of 7 1 2 3 4

Search: Search took 0.49 seconds.

  1. Replies
    3
    Views
    364

    that is cool :) I guess I need to read more on...

    that is cool :)

    I guess I need to read more on masking. I seem to be having problems grasping how to do it exactly. Know of any tutorials out there on doing this?
  2. Replies
    3
    Views
    364

    help with effect

    Hi,

    I am not sure what I should be reading to learn how to do things like this:

    http://www.templatemonster.com/show.php?templ=2421&type=1&cat=6

    My first thought was the tracing effect was a...
  3. Replies
    2
    Views
    288

    ok thanks. I will look up 'masking' and read...

    ok thanks. I will look up 'masking' and read more. Was thinking it was masking but never used Flash for this.

    Thanks again.
  4. Replies
    2
    Views
    288

    This possible?

    Hi all,

    I have a question on doing something if possible, could you lead me to what I should be looking for as far as reading/learning goes?

    Ok, what I want to know is can I import a graphic,...
  5. Have you tried loading a swf into a MC...

    Have you tried loading a swf into a MC placeholder and just putting that placeholder in that frame?

    Or make the MC invisible to begin with until you need it.
  6. Replies
    2
    Views
    658

    php.net and mysql.com are two places to start...

    php.net and mysql.com are two places to start learning about how to use php & mysql.

    You will send data to the PHP script. The PHP script will then do whatever you want. Example:

    1. connect to...
  7. Replies
    3
    Views
    821

    I only use Linux and BSD servers so that is not...

    I only use Linux and BSD servers so that is not your issue. Use Load Vars all the time.
  8. Replies
    2
    Views
    337

    Ah, just read the stick on 7.01 and it seems MX...

    Ah, just read the stick on 7.01 and it seems MX 2004 is complete crap. :(

    Anyone think it is not or have things changed recently?
  9. Replies
    2
    Views
    337

    worth upgrading?

    Hi All,

    I use Flash MX (version 6.0) and I was wondering if it was worth upgrading to Flash MX 2004 (or 2004 pro)?

    Was there that much change since the first MX? I like the UI (finally) but...
  10. The spree server does not have PHP configured...

    The spree server does not have PHP configured properly, which is why a .php triggers a download in apache.

    Have your client contact the host to have php properly installed and configured.
  11. Replies
    3
    Views
    649

    I had this problem in the past. All I know is if...

    I had this problem in the past. All I know is if I close out the browser totally and restart, I see the new site. Make sure your setting in your browser (options) are set to get new data each time.
  12. Replies
    2
    Views
    579

    Not sure your exact question. If you are...

    Not sure your exact question. If you are wondering what "END IF" is, it is ending the IF statement.

    A better way to disply the code would have been:


    If (index<=loop)
    {

    Set Variable:...
  13. Replies
    2
    Views
    292

    Not familiar with MS SQL but did you add slashes?...

    Not familiar with MS SQL but did you add slashes?

    Instead of Ned's

    it would be:

    Ned\'s
  14. Replies
    9
    Views
    396

    code to get a random number 1-3. myNumber =...

    code to get a random number 1-3.

    myNumber = random(3)+1;

    This gives 1,2, or 3.

    You could then do this:

    thisANT = "Ant"+myNumber;
  15. just make the others go invisible. So if...

    just make the others go invisible.

    So if button 2 is pressed:

    first._visible=0;

    OR

    Make your button in your MC go invisible. (will need to mod your movie as right now you have a graphic...
  16. Replies
    6
    Views
    343

    I would recommend reading some before going...

    I would recommend reading some before going forward. To get the basics at least. There are many ways to do things, especially since you could have set your movie up many ways.

    If you have the MC...
  17. Replies
    6
    Views
    343

    Here is the code again with proper posting so it...

    Here is the code again with proper posting so it looks better.



    counter=1;

    intervalID=setInterval(LookMa,1000);
    function LookMa(){
    if(counter<=20) {
    trace ("Hello "+counter);
  18. Replies
    6
    Views
    343

    Here is a simple example: Make a new movie,...

    Here is a simple example:

    Make a new movie, put this as AS in frame 1 to see how it works.

    counter=1;

    intervalID=setInterval(LookMa,1000);
    function LookMa(){
    if(counter<=20) {
    trace...
  19. Replies
    2
    Views
    283

    thanks alot! I was getting so made I just...

    thanks alot!

    I was getting so made I just changed alpha to 0 and threw it off the stage :)

    Thanks
  20. Replies
    3
    Views
    476

    Just check to see what % is loaded. When it is...

    Just check to see what % is loaded. When it is 100%, it is loaded and will play.

    This is a basic example but a search should yield many more.

    loadcounter =...
  21. Replies
    6
    Views
    343

    you could use set interval. Here is an...

    you could use set interval.

    Here is an example:

    intervalID=setInterval(FUNCTIONname,1000);

    This would call the function every 1 second. Play with it to get how you like.

    Also, you can...
  22. Replies
    2
    Views
    283

    load move and visibility question

    Hello,

    I a trying to load up a jpg dynamically, which it does fine. Problem is I do not want it to show up till I need it. I am doing visible=0 but it shows anways. Thoughts?

    Code:...
  23. Replies
    2
    Views
    311

    thanks alot. Been a bit since I programmed in...

    thanks alot.

    Been a bit since I programmed in Flash.

    works :)
  24. Replies
    2
    Views
    311

    problem with set interval

    Hi. I am trying to use set interval and to stop it. Here is what I am doing:

    thiscount=0;

    function start(){
    var intervalID;
    intervalID=setInterval(myfunc,1000);
    }

    function myfunc(){
  25. Replies
    2
    Views
    666

    Best way to do this?

    Hi,

    I am making a flash movie and I need to query the server every say 60 seconds to update an item.

    My thought was to make a movie clip that loops every 60 seconds and on frame 1 get var(s)...
Results 1 to 25 of 161
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center