A Flash Developer Resource Site

Search:

Type: Posts; User: jkell

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    595

    The if statement needs to be inside your...

    The if statement needs to be inside your function...

    function playFile(e:keyboardEvent){
    //trace statement
    //if statement
    }

    Look at your opening and closing curly braces.
  2. Replies
    2
    Views
    301

    Tools you will need

    For someone who is new to Flash, you have a large mountain ahead of you if you want to develop the app on that website.

    Tools you need are included in Adobe's Master Suite $49 a month:
    Flash...
  3. Replies
    1
    Views
    1,149

    You need to call your checkPage function after...

    You need to call your checkPage function after you increment your inGran variable


    if (event.target.dropTarget!=null&&event.target.dropT arget.parent==Gran) {
    event.target.visible=false;...
  4. Replies
    2
    Views
    649

    Flash5 are you building a quiz? I know how to do it,...

    are you building a quiz?

    I know how to do it, but I cant explain it in a short post.
    You need to be familiar with:
    Loading/parsing your XML file
    Tracing the values from your radio button...
  5. Replies
    1
    Views
    647

    CS3 There are several ways to make that happen. It...

    There are several ways to make that happen. It sounds like you are wanting to create an image gallery. You are not going to want to do that with physical buttons for each image, but rather use a...
  6. Thread: on click?

    by jkell
    Replies
    1
    Views
    609

    I dont know if you are looking for as2 or as3,...

    I dont know if you are looking for as2 or as3, but here is the solution from AS3 code snippets:
    1)turn your picture into a MovieClip Symbol F8
    2)Give your movieclip the instance name "thePicture"...
  7. Replies
    4
    Views
    595

    I would do a trace inside of your function and...

    I would do a trace inside of your function and see what the e.keyCode is:



    stage.addEventListener(KeyboardEvent.KEY_UP, playfile);
    function playfile(e:KeyboardEvent):void {
    trace(e.keyCode)...
  8. Replies
    3
    Views
    500

    why not just embed the Youtube video in flash? or...

    why not just embed the Youtube video in flash? or use YouTube?

    http://www.youtube.com/watch?v=sXey9aUS99s
  9. CS3 If I were wanting to update the content in a...

    If I were wanting to update the content in a textfield, I would create a variable that holds the data of your starting value then assign that variable to your text field. then have a 2nd variable...
  10. Thread: As3 Begginner

    by jkell
    Replies
    1
    Views
    979

    Hello Majic- I just took a look at your code,...

    Hello Majic-
    I just took a look at your code, and it seems like your classes to work individually. Forgive me for not understanding, but I am failing to understand why you are trying to define two...
  11. Replies
    1
    Views
    1,079

    the code above is actionscript 2 (AS2)... this...

    the code above is actionscript 2 (AS2)... this will not work with AS3... but you could probably modify it.

    If I were to solve this problem... I would start with an array that holds all 10...
  12. Replies
    3
    Views
    1,431

    I figured out one way to do what you are...

    I figured out one way to do what you are asking... My solution is to use greensock.com free tween engine to create a tween to your desired frame...

    You will need to do 3 things:
    1) go to...
  13. Replies
    1
    Views
    1,039

    I am not sure exactly how your file is set up,...

    I am not sure exactly how your file is set up, but if You were using a "gotoAndStop(myVariable)" and the variable represented a frame number, then there is a chance that when you added the pre-loader...
  14. Replies
    1
    Views
    1,469

    CS3 Your question has 3 items you will need to learn:...

    Your question has 3 items you will need to learn:
    1) You need to learn how to addEventListeners to an object to handle the "click" All code in AS3 is not on the object any more but handled in an...
  15. I have noticed the drawing tools in Flash are...

    I have noticed the drawing tools in Flash are sometimes finicky if you are used to Illustrator. For example if you manipulating a shape with the white arrow, and cross a path, sometimes that section...
  16. Replies
    2
    Views
    1,544

    Hello Jack- I am trying to follow your code,...

    Hello Jack-
    I am trying to follow your code, and understand what you really are wanting. All the bingo games I played were on a 5x5 board with a wild space in the middle. It looks like you are...
  17. http://www.youtube.com/watch?v=1hRSGbg-CfQ ...

    http://www.youtube.com/watch?v=1hRSGbg-CfQ

    this video shows how to animate without BONES, but he does a good job explaining a walk cycle.
  18. Replies
    2
    Views
    731

    I would suggest lynda.com to learn Flash. Do you...

    I would suggest lynda.com to learn Flash. Do you have the source fla files or only the .swf? It is easy enough to re-create those interactions, but sometimes it is nice to start with existing file...
  19. Replies
    1
    Views
    585

    Flash5 I am not sure I understand your problem...

    I am not sure I understand your problem completely.

    You can load the FlipBook SWF into the same swf with the buttons. BUT I am having trouble understanding if your contact information is also in...
  20. Adding Checkmarks between Senes AS2

    Nothing is too complicated if you are willing to learn.

    1) Create all of the checkmarks on top of your flags so they are ready to be used with actionscript. This means you create one check mark...
  21. Adding a sound would not be difficult. You would...

    Adding a sound would not be difficult.
    You would just need to select the sound in your library and edit its Linkage property so that you can call it with actionscript. The following article explains...
  22. CS3 Download the flash player on the computer you are...

    Download the flash player on the computer you are using and see if that solves the problems. You may be publishing the SWF at a higher version of the flash player than the computers have. If you...
  23. Sample working file

    Here is a working version of what you were trying to do. 74111

    It is done in CS6, so hopefully you can open this.
  24. Hello again. Your Syntax is wrong again. You...

    Hello again.
    Your Syntax is wrong again. You have nested functions for your radio buttons inside the submit button function. This make is so your variable "radioButtonPressed" is never triggered....
  25. After looking at your logic, you will need to add...

    After looking at your logic, you will need to add a property after cbSpain for it to yeild a "true" result.

    You need to say if(cbSpain.value==true){
    Yes_cover_mc._visible = false;
    }else{...
Results 1 to 25 of 80
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width


HTML5 Development Center