A Flash Developer Resource Site

Search:

Type: Posts; User: LeoBeer

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    1,911

    Recording with Flash but not in mp3 format?

    Hi

    I'm not new to Flash but I hardly have very little experience sound related issues, while planing a new application those 2 questions came up. I would love it if one of the experts here could...
  2. Extending Flash Components (one for the experts)

    Hi, I'm trying to extend Flash v2 component (I'm doing this for Flex).
    I would like to have a custom DateChooser which will be called from DateField.

    for this I've prepared 2 new classes:
    ...
  3. Replies
    3
    Views
    1,392

    Thanks

    Thanks
  4. Replies
    3
    Views
    1,392

    attachMovie on complete event??

    Hi, I'm using attachMovie to call an MC to the stage, the MC contains code.

    I need to make sure the MC's code was fully executed, is there a way to find this out?

    I don't want to use flags in...
  5. thanks, I did something like this: a =...

    thanks, I did something like this:



    a = myObject.interfaceMethod()
    if(a!=null){
    //do something with a
    }
  6. this seems to work when I export the movie as...

    this seems to work when I export the movie as flash 7, it does not work when I export it as flash 6 ('instanceof' does seem to point to the object's class but not to the interface).

    any idea how...
  7. Thanks deadbeat, I had no idea 'instanceof' could...

    Thanks deadbeat, I had no idea 'instanceof' could also be used to get an object's Interface.
  8. check if objects's X Class implements interface Y

    Hi

    I have an object(myObject) which is an instance of a class (myClass), I would like to make sure that myClass implements a certain interface (myInterface).

    In other words: I have to browse...
  9. Replies
    2
    Views
    537

    Thanks

    Thanks
  10. Replies
    2
    Views
    537

    Order of returned Object.prop

    I have a class which accepts an object and then outputs the names and values of it's properties



    class ReaderClass
    {

    function ReaderClass ()
    {
    }
  11. yes, it's not simple but I got it to work: ...

    yes, it's not simple but I got it to work:


    class Prod{

    var setVarWatcher_obj:Object;

    function Prod(){

    //setting the watcher
  12. thanks websam, the script works great, it's a...

    thanks websam,

    the script works great, it's a good solution but maybe I'll be able to do this with out the text field, I was thinking of using Object.watch(), what do you think?
  13. Using JS SetVariable to change the value of an object property

    Hi, I know this JS code can change the value of a simple variable which resides on the root ("myVar")



    <SCRIPT LANGUAGE=JavaScript>
    <!--
    function doPassVar(args){
    var sendText =...
  14. thanks senocular, that static functions trick...

    thanks senocular, that static functions trick solved my problem.
  15. Thanks websam, The code looks fine, there's...

    Thanks websam,

    The code looks fine, there's only one problem which prevents it from serving me purpose:

    In your example myProdEventDispacher already knows about myClass, this might not be...
  16. Thanks senocular, the event is being...

    Thanks senocular,

    the event is being dispatched, I am able to grab it from a different listener on the _root.

    I would want to remove the listener later on so I need a reference to it, I guess I...
  17. Class syntax for setting up an event listener

    I am trying to create a class (myClass) that listens to events of another class instance (myProdEventDispatcher).
    this tutorial seems to work great but I have difficulties shifting the listener...
  18. thanks db, it works great.

    thanks db, it works great.
  19. Dynamically call a certain method of a certain object.

    Hi I have a method "callerMethod()" that accepts 2 arguments:

    1. myObject: a reference to an object in my flash movie (object)
    2. myMethod: a name of a method in myObject (string)

    now, I'd...
  20. turns out the script runs fine when i try it on...

    turns out the script runs fine when i try it on different pc's, it just doesn't work on my pc. :confused:
  21. looked into it some more and ended up with this...

    looked into it some more and ended up with this script:


    <HTML>
    <HEAD>
    <script>
    function sendMessage(){
    var myMc;
    myMc= document.getElementById("test");
    alert("myMc.id:"+myMc.id);
  22. go ahead, jokes on me!:cool: yes Flash 5, this...

    go ahead, jokes on me!:cool:
    yes Flash 5, this is what it's like when you develop for TV Set Top Boxes.
  23. Thanks mkantor, this looks like a good idea but...

    Thanks mkantor, this looks like a good idea but at the moment I can only run Flash Player 5, I'll need Flash 6 to use this method.

    I would love to know if you have any other ideas.
  24. Javascript to Flash communication in Opera 7?

    Hi, I am trying to use setVariable to send messages from JS to Flash.
    I am using Opera 7 browser.

    the following code works with IE but fails with Opera, it's a simple test I use to send a String...
  25. Replies
    2
    Views
    409

    Thanks, mkantor!

    Thanks, mkantor!
Results 1 to 25 of 318
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center