A Flash Developer Resource Site

Search:

Type: Posts; User: VI Knight

Page 1 of 20 1 2 3 4

Search: Search took 0.05 seconds.

  1. Thank You Sir. I stumbled on it just before...

    Thank You Sir.

    I stumbled on it just before you sent this. I was just about to mark this as resolved.
  2. [RESOLVED] Getting the color of an object

    I have a world map with each piece of the map as movie clips. Each MC is set to a color (using ColorTransform) based on some data about the state that i load in. When i click on the MCs I want to...
  3. Replies
    13
    Views
    5,470

    Yeah i figured that out later.

    Yeah i figured that out later.
  4. Replies
    3
    Views
    576

    i take it that you already have the variabl...

    i take it that you already have the variabl declaration in your code

    var loader:Loader = new Loader();

    If this is already in your code you could also try
    loader.content.nextFrame();

    I am...
  5. Replies
    13
    Views
    5,470

    It should be off automatically if the horizontal...

    It should be off automatically if the horizontal size of the data is less than the width of the scroll box but if you want it to be permanently off regardless then just use:
    ...
  6. Replies
    11
    Views
    1,316

    if you changed the names of the frames in your...

    if you changed the names of the frames in your movie clip button then your problem is in these 2 lines:

    currentPage.gotoAndPlay('over');
    ev.currentTarget.gotoAndPlay('over');

    those need to...
  7. Replies
    13
    Views
    5,470

    that is because in your RarrowOver function you...

    that is because in your RarrowOver function you are setting the source for myScrollPane but in essence it has not yet been created or defined. Try moving the var myScrollPane:ScrollPane = new...
  8. Replies
    13
    Views
    5,470

    I found that i always need to reset the source...

    I found that i always need to reset the source when i make changes that will affect the size of the source MC. In this case aa. so what you can do is make a reference to set the source after each...
  9. Replies
    13
    Views
    5,470

    if the images are the same size they may be ontop...

    if the images are the same size they may be ontop each other which makes it seem that there is only 1. I am using this same method right now on a project and it works fine. I was actually doing it...
  10. Replies
    13
    Views
    5,470

    you just need to keep adding the new content to...

    you just need to keep adding the new content to the aa movieClip. So for instance if you wanted to add lets say another image to the scroller you would define another loader and then add that new...
  11. Replies
    2
    Views
    493

    You are not passing the event into the function. ...

    You are not passing the event into the function. Try using this.

    function msDown(e:MouseEvent):void
    {
    trace("down");
    }
  12. Replies
    8
    Views
    1,041

    if the server is using PHP5 then you may need to...

    if the server is using PHP5 then you may need to alter the PHP script to assign the $_POST variables to the variables at the beginning of your script.

    $yourVariable = $_POST['yourVariable'];

    do...
  13. Replies
    46
    Views
    4,077

    You need Adobe Flash to view .fla files. That is...

    You need Adobe Flash to view .fla files. That is the file format that flash uses.
  14. You don't need a preloader inside each external...

    You don't need a preloader inside each external swf. you need to create a listener on the holder MC that listens for the content being loaded. each piece that is loaded will then trigger the...
  15. Replies
    3
    Views
    624

    you need to use anchor points in your FLA. you...

    you need to use anchor points in your FLA. you use it just like a frame label mostly except you change the label type to anchor instead of name. You can look around to get more information on how...
  16. Replies
    0
    Views
    489

    Dynamic text field acting wonky

    I am getting a new problem all of a sudden and i can't figure out what the problem is. I create a dynamic text field with some default text in it and default settings. when i publsh the movie the...
  17. Replies
    1
    Views
    586

    goto www.gotoandlearn.com there are a few...

    goto www.gotoandlearn.com there are a few tutorials there on video player in flash.
  18. Replies
    46
    Views
    4,077

    well that is something different. that would be...

    well that is something different. that would be assigned in another place. That loop does not give that funtionality to the buttons either. all of the on release stuff can be done in an outside...
  19. Replies
    46
    Views
    4,077

    Why would you ever need to do that?? all you are...

    Why would you ever need to do that?? all you are doing is assigning the button state functionality to the buttons that are on stage. Once that is done there is no need to go forward or backward in...
  20. Replies
    46
    Views
    4,077

    try this. You will need to keep the function...

    try this. You will need to keep the function section



    var maxButtons = 10;

    for(i=1; i<maxButtons +1; i++){
    this["but"+i].onRollover = function(){
    rollover(this);
    }
  21. Replies
    46
    Views
    4,077

    which code would that be? If you are referring...

    which code would that be? If you are referring to the code onthe buttons then no. It won't work in an array. you can do it in a for loop but the name of the buttons would have to be of such that...
  22. Replies
    6
    Views
    486

    yes it would be possible but i would have to mess...

    yes it would be possible but i would have to mess around with it some to get the exact coding.
  23. Replies
    5
    Views
    455

    You could use an array yes if you wanted to but...

    You could use an array yes if you wanted to but it would have to be values of the keys.

    for the other problem, well first of all you need to copy the text field to the next scene. If you don't...
  24. Replies
    1
    Views
    439

    do yo uhave a screenshot or something that wee...

    do yo uhave a screenshot or something that wee coould look at to see exactly what you are talking about? or post the fla.
  25. if the section from the old template is contained...

    if the section from the old template is contained in a movieclip then you can just open both documents at the same time then while in th new template in the library template select from the dropdown...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center