A Flash Developer Resource Site

Search:

Type: Posts; User: astro_sk

Page 1 of 9 1 2 3 4

Search: Search took 0.06 seconds.

  1. I don't remember exactly what I did but you could...

    I don't remember exactly what I did but you could easily parse this by looping through the categories. As you create your array from the xml also create a memory array which you will loop through to...
  2. Replies
    4
    Views
    416

    its returning the same data probably because you...

    its returning the same data probably because you don't have the variables set up correctly in flash nor in php.
    ...
  3. Replies
    2
    Views
    430

    Re: Pointers in ActionScript? (2.0)

    is this what you are looking for?


    var Corners:Array=new Array();
    this.Cor1 = {x:1,y:9};
    this.Cor2 = {x:2,y:9};
    this.Cor3 = {x:4,y:9};
    this.Cor4 = {x:9,y:9};
    Corners.push(Cor1, Cor2, Cor3,...
  4. Replies
    4
    Views
    470

    Re: navigation for web site...

    VB??? lol didn't know you could do AS coding in VB.


    if you do a search here for loading external swf or MovieLoadNum you will find a lot of references.
  5. Replies
    2
    Views
    414

    Re: current button color with addition

    [QUOTE]Originally posted by mbraamhaar
    [B]Hi. I have a problem.
    To make a current button another color I place an similar MC named "b1, b2, ..." with a different color over the button and set the...
  6. Replies
    4
    Views
    416

    Re: Assigning MySQL Data

    I am assuming you are NOT using components, that being said you can name the vars whatever you want as long as it is specified in your php file.

    if you are send the var straight from php to flash...
  7. Thread: attachMovie

    by astro_sk
    Replies
    1
    Views
    449

    Re: attachMovie

    I am not sure exactly what your asking but I think what you are looking for is:

    this.b1.attachMovie("symbol19",["b"+i], 200+i);
    this.b1["b"+i]._x = 520;
    this.b1["b"+i]._y = 20*(i-1);
  8. Replies
    6
    Views
    555

    You are on the right track. I dont' have too...

    You are on the right track.

    I dont' have too much time so I will give you a rough idea.

    first of all try avoid polling. we can use setInterval and its not as cpu intensive.
    (the code below is...
  9. Replies
    1
    Views
    270

    Re: Targeting timelines of movie clips

    I have attatched your file with a solution.
    you will have to modify a little to get it the way you want.

    cheers
  10. Replies
    6
    Views
    555

    Re: Can someone explain...

    you could use set Interval to check where the _x mouse location is

    that way when the mouse is over to the right mouse will show when _x mouse is over to the left it will be hidden.
  11. Replies
    2
    Views
    457

    Re: FlashVars from EMBED

    try _root.var1
    _root.var2 etc...
  12. Replies
    3
    Views
    528

    Re: Attaching image in html text

    I looked at the MM file it seems they are having a few issues with text n img. I tried a few work arounds none of which worked successfully.

    If you want to be able to scroll as well as correctly...
  13. Replies
    14
    Views
    621

    I took a look at your fla file but not sure what...

    I took a look at your fla file but not sure what you want since there is no attempt at creating a text field so here is some code to get you started:

    _root.c.createTextField("mytxt", i, 20, 50,...
  14. Replies
    4
    Views
    470

    can you post the fla file. have you tried...

    can you post the fla file. have you tried putting it in the same directory to see if you may have been reference it incorrectly?
  15. Replies
    7
    Views
    525

    you need to do a logical seperation of the string...

    you need to do a logical seperation of the string and replace it.

    something like split("h", yourstringhere);
    and then you will get an array split up by H
    so then you would create a for loop and...
  16. Replies
    1
    Views
    349

    Re: Animated button problem

    your main problem is that all your buttons except the first one Bio are inside another MC which has a never ending frame loop you need to fix that first other than that here are a few pointers to...
  17. Replies
    3
    Views
    643

    Re: What happened to TellTarget in MX?

    _level0.mcinstance.gotoAndStop(1);
  18. Replies
    5
    Views
    917

    you are going to have to play with it to get it...

    you are going to have to play with it to get it just right.

    the idea is that you are zooming in on the whole movie(_root._xscale or _yscale) right?
    if you do zoom in what do you think happens to...
  19. Replies
    4
    Views
    470

    Re: Define a loader component's media

    yes it can be done and not too difficult.

    first of all you need to make sure it works without loading it dynamically...once this is done

    your code may look like this:

    if (nextNum<10){
    var...
  20. Replies
    14
    Views
    621

    I have been playing around with it since flash 4...

    I have been playing around with it since flash 4 I think 98/99. I consider myself to be a light user, there are many in the flash community that I consider above and beyond my understanding, but I...
  21. that is awesome how did you ever find the...

    that is awesome how did you ever find the Delegate class??? I am looking in a few books and there is no mention of it.
  22. Replies
    1
    Views
    585

    Re: Astro, I finally got the file shrunk

    its already done check out previous post the attachment is there for you to download
  23. Replies
    4
    Views
    715

    Re: Re: Astro, I didn't get the file attached

    here it is I took the liberty of cleaning up some of your code .... cheers
  24. Replies
    4
    Views
    715

    Re: Astro, I didn't get the file attached

    k got it figured out.. what flash player do you need this for?
  25. Replies
    4
    Views
    715

    Re: Astro, I didn't get the file attached

    sorry but all I see is one frame??? maybe you should zip the
Results 1 to 25 of 209
Page 1 of 9 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center