A Flash Developer Resource Site

Search:

Type: Posts; User: renaun

Page 1 of 3 1 2 3

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    1,673

    I fixed the error by install...

    I fixed the error by install "mozilla-nspr-1.7.6-1.2.5.i386.rpm"



    ./fmsmaster: error while loading shared libraries: libnspr4.so: cannot open shared object file: No such file or directory
    ...
  2. Thread: weird problem

    by renaun
    Replies
    2
    Views
    494

    marckymarck

    You forgot to close the if statement with a closing bracket.

    This code should work.



    // Handle all the the FSCommand messages in a Flash movie
    function fscommand_DoFSCommand(command, args)...
  3. When you embed fonts you are stuck with what you...

    When you embed fonts you are stuck with what you define in the TextField at develop time.

    I have dont think embed fonts look good. So flash needs to work on that functionality someday.
  4. Replies
    16
    Views
    888

    Dump all this code into a new flash file, put it...

    Dump all this code into a new flash file, put it in the first frame of the main time line, and it should work. I am pointing towards a "images/littlelogo.jpg", you will have to give it another jpg...
  5. The "Character..." button on the Properties...

    The "Character..." button on the Properties window of a TextField.
  6. Replies
    16
    Views
    888

    This part of your code will not work. Thumb is...

    This part of your code will not work. Thumb is undefined, you could tell this by putting a trace in there.


    thisItem.onRelease = function()
    {
    trace(Thumb); //Is this undefined?...
  7. Replies
    16
    Views
    888

    Dashe100

    var startY = 5;
    Thumb = new Array();
    // What is ThumbTotal? its not defined?
    for (i=0; i<=ThumbTotal; i++){
    thisItem = createEmptyMovieClip("Frame"+i,i+2);
    thisItem._x = 0;
    ...
  8. Replies
    215
    Views
    16,077

    tyard

    I agree with you that one way is not necessary better than the other. But what about that scoping difference that I posted above?
  9. Cable is crap, and my domains are unstable right...

    Cable is crap, and my domains are unstable right now.

    try:
    http://www.eleth.com/flashkit/ScrollPaneStuff.html

    http://www.eleth.com/flashkit/ScrollPaneStuff.fla

    If these don't work just...
  10. Replies
    3
    Views
    914

    < model name="" > ......< shoot name="" > ...

    < model name="" >
    ......< shoot name="" >
    ............< total_images />
    ............< roll >
    ..................< name />
    ..................< image_count />
    ..................< gen_date />...
  11. Ok, I made a fla that has alot of things that...

    Ok, I made a fla that has alot of things that might answer you questions. You can click the one button or the Individual MovieClips themselves. The button doesn't change the Scroll Pane's...
  12. Any one interested in helping develop a 4th...

    Any one interested in helping develop a 4th generation XML language that drives flash.

    What do I mean?

    Take a XML page like this:

    http://www.xmldrivenflash.com/umMainPage.xdf ...
  13. Any one interested in helping develop a 4th...

    Any one interested in helping develop a 4th generation XML language that drives flash.

    What do I mean?

    Take a XML page like this:

    http://www.xmldrivenflash.com/umMainPage.xdf...
  14. Replies
    16
    Views
    888

    just put some code in there like this: ...

    just put some code in there like this:


    thisItem.onRelease = function() {
    //Do you event stuff here
    }
  15. Replies
    11
    Views
    1,000

    just use: ...

    just use:


    movieClip.loadMovie("picture.jpg");

    // OR

    loadMovie("picture.jpg",target);
  16. Thread: dynamic objects

    by renaun
    Replies
    4
    Views
    608

    Check out these links: ...

    Check out these links:

    http://www.eleth.com/flashkit/MyDynamicBox.html

    ths FLA:

    http://www.eleth.com/flashkit/MyDynamicBox.fla

    Does that help?
    [Edited by renaun on 06-10-2002 at 09:58 AM]
  17. Replies
    215
    Views
    16,077

    I found one instance separate uses are needed. ...

    I found one instance separate uses are needed.


    function temp1() {
    trace("Temp1 Function");
    }

    this.temp1 = function() {
    trace("this.Temp1 Function");
    }
  18. Replies
    215
    Views
    16,077

    Both are used in with making of classes. But the...

    Both are used in with making of classes. But the later method of declaring functions is used to define the Classes functions. Where the first method is used for defining constructors.


    ...
  19. Replies
    4
    Views
    593

    if the funcCall is only a string, then you have...

    if the funcCall is only a string, then you have to use something like:


    movieClipThatHoldsTheFunction[funcCall]();

    If the funcCall is the actually reference to the function then just do this:...
  20. I had the same problem of understanding how that...

    I had the same problem of understanding how that all works, but I am using Java.

    The basics are that Flash sends the XML as part of the HTTP information. Normally all that information passed...
  21. Replies
    2
    Views
    438

    I made an example, of a dynamic text field...

    I made an example, of a dynamic text field working with the scroll bar. Take a look,

    http://www.1028sangabriel.com/flashkit/DynamicTextScrollbar.html
    ...
  22. Replies
    2
    Views
    482

    I took your fla and got it to work. I took off...

    I took your fla and got it to work.

    I took off the Mask, got rid of all the objects on Text layer.

    Then I add some text, on the Text layer. I viewed the swf without the masking to see if the...
  23. Thread: Urgent Help MC

    by renaun
    Replies
    3
    Views
    450

    loadMovie is for loading SWF's. To load a...

    loadMovie is for loading SWF's. To load a MovieClip you need to use attachMovie, but then the movieClip you want to load needs to have a linkage name. To set a linkage name for a movieClip, right...
  24. Thread: Urgent Help MC

    by renaun
    Replies
    3
    Views
    450

    use loadMovie and removieMovieClip

    use loadMovie and removieMovieClip
  25. Replies
    0
    Views
    337

    I have a recursive function that parse XML and...

    I have a recursive function that parse XML and attaches movieClips, the attached movieClips sometimes load their own XML to parse.

    My problem is that the first recursive function continues...
Results 1 to 25 of 57
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center