A Flash Developer Resource Site

Search:

Type: Posts; User: tutash

Page 1 of 12 1 2 3 4

Search: Search took 0.29 seconds.

  1. The Advantages of Being An Enterprise Level Flash Developer

    I've been a member here for a looooong time. I may not have contributed as much as I should have, but I've always found Flashkit to be a reliable and valuable resource.

    After Steve Job's fateful...
  2. Replies
    0
    Views
    562

    [RESOLVED] Jobs is dead. Flash is not.

    I've decided. I've decided that I'm not going to abandon Flash.
    This is my statement. I've created so much using actionSctipt. I've built so much... I've built complex rendering engines... used...
  3. Replies
    1
    Views
    2,144

    got it

    Now remember, this just fixes my problem with connecting to Akamai (it was a security issue). Your mileage may vary.

    The AS file:

    class ExtendedNCManager extends NCManager implements...
  4. Replies
    1
    Views
    2,144

    Extending AS2 FLVPlayback

    Hi,

    I'm diving back into AS2 to help a vendor. I've never extended a component class in AS2, and I'm having problems with it now.

    Here's my class file:

    import mx.video.FLVPlayback;
    import...
  5. Replies
    2
    Views
    2,097

    Okay. I'm stupid. I missed this: ...

    Okay. I'm stupid. I missed this:

    publish_ns.attachCamera(local_cam)

    done.
  6. Replies
    2
    Views
    2,097

    Okay, here's an update. Audio is streaming in,...

    Okay, here's an update.

    Audio is streaming in, but not video. I'm still stumped.
  7. Replies
    2
    Views
    2,097

    Problems with LiveStreamCast and EdgeCast

    I'm attempting to get my LiveStreamCast code to work in AS3. I have code for AS2. I'm no longer throwing error, and it all "seems" to be working fine, but the subscribed video never appears. The...
  8. Replies
    2
    Views
    1,548

    Thanks for the hint. All is now good in Flash...

    Thanks for the hint. All is now good in Flash land.
  9. Replies
    2
    Views
    1,548

    Dynamically access XML through elements.

    So, my issue is this:

    I want to access XML like this:


    someXML..nodeName

    This returns elements with the name "nodeName"

    I need to do this dynamically like
  10. Replies
    16
    Views
    3,837

    Set your flvPlayback.fullScreenTakeOver=false ...

    Set your flvPlayback.fullScreenTakeOver=false

    This keeps your stuff on the screen.
  11. Thread: Basics

    by tutash
    Replies
    2
    Views
    2,655

    Basics

    I'm one of those Flash programmers. I came into it from the outside; from design. I learned to program using Flash. OOP in Flash is more fun!

    Anyway, I look at Flex and most Adobe components and...
  12. Replies
    3
    Views
    775

    Until we're able to get the input from the other...

    Until we're able to get the input from the other pointers, we can make do by developing objects that behave like pointers, and examining how people touch screens.
  13. Replies
    2
    Views
    535

    Loading external Function

    Abstraction:

    Abstraction is the key for loading functionality dynamically.

    Note: If you don't understand what "which", "this", and "that" mean, you'll have trouble building this interface.
    ...
  14. Replies
    2
    Views
    535

    ...suggesting new methods.

    Using "class structured" methods at compile time is weak.
    -----------------------------------------------
    I can't dynamically assign the code I need to load at runtime, on the client. ...
  15. Replies
    0
    Views
    450

    F8 - myMedia.displayFull()

    What's going on with this method? myMedia.displayFull() does nothing for me. Any ideas?

    --Whoops, only works with MediaPlayback component, not MediaDisplay.
    -tutash
  16. Hi, You probably want to use the movieClipLoader...

    Hi,
    You probably want to use the movieClipLoader class. Here's a snippet of code from one of my projects:


    var loadListener:Object = new Object();
    var mcLoader:MovieClipLoader = new...
  17. you're the opposite of retarded: Dedrater.

    you're the opposite of retarded: Dedrater.
  18. One way would be to use setInterval and...

    One way would be to use setInterval and updateAfterEvent(). For example:

    twelveFPSanimation = function () {
    if (someMovieClipOrRoot._currentframe == someMovieClipOrRoot._totalframes) {...
  19. Replies
    3
    Views
    659

    simple scroller prototype. 1K

    I needed a scroller for generic reuse. Here is one that I whipped up. It's a prototype of the movieClip class. It's all code so it stays very light.

    Just use like so
    ...
  20. HTML is a form of XML, so you could write an...

    HTML is a form of XML, so you could write an incredibly complicated parsing and rendering engine to duplicate the functionality of the browser... hypothetically. Check out Kaplan's Flash stuff. It...
  21. Here it is a a prototype. ...

    Here it is a a prototype.


    MovieClip.prototype.slideTo = function(x, y, a) {
    delete this.onEnterFrame;
    this.onEnterFrame = function() {
    newX = (this._x - x) / a;
    newY = (this._y - y) /...
  22. Here's a simple deceleration script. ...

    Here's a simple deceleration script.


    foo.onEnterFrame = function() {
    //final pos is where it will end up.
    finalPos = new Object({x:300, y:120});
    newX = (this._x - finalPos.x) / 10;
    newY...
  23. Replies
    1
    Views
    424

    The problem is with timing. Here we wait two...

    The problem is with timing. Here we wait two seconds before the text field is set as the target of the scroller.
    loadVariablesNum("oils.txt", 0);
    this.attachMovie("UIScrollBar", "scr", 0);...
  24. The 'ol for...in loop. test = new...

    The 'ol for...in loop.

    test = new XML("<testNode attrib1='someValue 1' attrib2='someValue 2' attrib3='someValue 3' attrib4='someValue 4'>I'm a text node</testNode>").firstChild

    for (atribs in...
  25. Replies
    8
    Views
    1,290

    You can use one, or more. That is the point....

    You can use one, or more. That is the point. Somtimes you may want to organize your code. In any case, this code is just a little helper script that can reduce the size of your code. It's fine if you...
Results 1 to 25 of 293
Page 1 of 12 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center