A Flash Developer Resource Site

Search:

Type: Posts; User: moot

Page 1 of 20 1 2 3 4

Search: Search took 0.26 seconds.

  1. Thread: Painting effect

    by moot
    Replies
    1
    Views
    2,872

    Here's as2 painting tutorial: ...

    Here's as2 painting tutorial: http://lift.co/flash/archive/mouse/05_paint/index.html

    Here's as3 tutorial for what you're trying to do?: ...
  2. When it comes to communicating with the backend -...

    When it comes to communicating with the backend - .net, php, etc. - Flash .swf is like html. Flash has to go through the browser just like html. In flash you submit data through form submissions. ...
  3. Replies
    3
    Views
    3,058

    Yes you can do that. Post your .fla and code so...

    Yes you can do that. Post your .fla and code so we can show you how.
  4. Thread: SoundTouch Class

    by moot
    Replies
    1
    Views
    6,883

    You posted the error in a different language. ...

    You posted the error in a different language.

    The errror is sound is undefined when you're creating the new SimpleFilter. It should be source or output - one of the two Sounds you created - or...
  5. Replies
    9
    Views
    4,592

    Yeah we all used it at some point. It's just...

    Yeah we all used it at some point. It's just that it's not a good solution. Like when you're using it to manage visibility. You should use the visible property to make things visible.
  6. Replies
    1
    Views
    2,042

    var appnextExtension:AppnextASExtension = null; ...

    var appnextExtension:AppnextASExtension = null;

    Should be

    var appnextExtension:AppnextASExtension;

    Works.

    You probably have to install an extension. They'll give you file, should be able...
  7. Replies
    9
    Views
    4,592

    When you do this code, you are creating an empty...

    When you do this code, you are creating an empty movieclip at a certain DEPTH. The DEPTH sets which clip is on top.

    _root.createEmptyMovieClip("emptyClip",_root.getNextHighestDepth());

    When...
  8. No worries about posting on my posts. The AS3 is...

    No worries about posting on my posts. The AS3 is exactly the same except for the stuff that relates to the device - like touch. If you can fix the code, fix it.
  9. Mouse events only support one touch (there's only...

    Mouse events only support one touch (there's only one mouse). Once you need to use more than one touch at a time, mouse events won't work.

    You have to add code for multitouch. Touches mostly...
  10. Replies
    6
    Views
    3,937

    I think this is what you're asking... Flash...

    I think this is what you're asking...

    Flash movieclips are oop. So when you work with movieclips you're doing oop.

    The main movieclip is an instance of the main class. So you can have your...
  11. Replies
    7
    Views
    3,155

    members is an array of strings - text. "mc1" is...

    members is an array of strings - text. "mc1" is a string, not a movieclip. So you can't make a string invisible.

    fruitbeard is showing you how to use the string to reference a movieclip's name.
  12. Replies
    2
    Views
    2,496

    Use xml (REST). With xml, your app isn't...

    Use xml (REST). With xml, your app isn't dependent on any other code (modularity). It's only dependent on the data - the exchange rate number - instead of a "service."
  13. AS 2 Again, we can't help if you just try to describe...

    Again, we can't help if you just try to describe the issue. You don't know what the issue is so how can you describe it. We have to see the file. If somebody else came in here and told you the...
  14. Replies
    15
    Views
    4,111

    The function should randomly select an index, if...

    The function should randomly select an index, if that index hasn't been played, play it. It uses your code. In general, you can call this instead of your clickStart().

    I don't know when I'll...
  15. Replies
    15
    Views
    4,111

    Yeah, you need to use loops. It's programming so...

    Yeah, you need to use loops. It's programming so I don't know if you want to get into learning it or not.

    Here's code I made. I can't spend any more time. This code is one way to get a random...
  16. AS 2 If you don't include the whole file, we can't...

    If you don't include the whole file, we can't look at your issue. So we're stuck with your description of your issue.

    How big is the image you're trying to load?

    If you load anything into a...
  17. Until you get into oop or higher level...

    Until you get into oop or higher level programming...

    Just make everything private.

    Use only one class per package to start. Name your main class Main. Save Main.as with your swf. It's the...
  18. AS 2 I can't run AS2 so I can be missing stuff. ...

    I can't run AS2 so I can be missing stuff.

    You have to stop using frames in your coding - gotoAndStop, gotoAndPlay. Only use those to start animations.

    You should have only one text field...
  19. AS 2 No worries ever about "getting" anything or...

    No worries ever about "getting" anything or whatever. I show you what I think is the best code because that is what I need when I'm learning.

    When I was talking about the if/else statements, I...
  20. AS 2 Attaching bitmaps, or anything, directly to the...

    Attaching bitmaps, or anything, directly to the stage is just a bad practice. Later, you'll never do it. It is most efficient (real world work) to put everything in clips.

    Yes, you can do...
  21. AS 2 You only need to use bitmap when you're trying to...

    You only need to use bitmap when you're trying to utilize the gpu over the cpu. The bitmap checkbox is to try to convert the clip to bitmap. You can get lucky checking it but you do need to know...
  22. Replies
    3
    Views
    3,605

    I didn't go through all the code, just the first....

    I didn't go through all the code, just the first. You were trying to have the clip remove itself. Manage the adding and removing of the clip separately. Have a button clicked function call another...
  23. Replies
    2
    Views
    1,913

    Put everything in empty movieclip so you can...

    Put everything in empty movieclip so you can easily reference it.

    For example, this is how I'd manage thumbnail clips - buttons, text, pics, loaded dynamically:

    mcThumbs.mcThumb_0.mcPic
    ...
  24. Replies
    5
    Views
    1,921

    I looked for mine but couldn't find it so I'm...

    I looked for mine but couldn't find it so I'm making a new one. I'll post it when it works.
  25. Replies
    5
    Views
    1,921

    Here's a good tutorial to doing a good wrapper...

    Here's a good tutorial to doing a good wrapper preloader: http://gotoandlearn.com/play.php?id=85

    It's pretty straightforward. If you have questions let us know.
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