A Flash Developer Resource Site

Search:

Type: Posts; User: mathie

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Thread: XML elements

    by mathie
    Replies
    0
    Views
    521

    XML elements

    How can I display 10 items at a time from an XML doc using right and left button images.

    The code below only pull in 1 item at a time.



    function prevClicked(evt:MouseEvent){...
  2. Thread: Div

    by mathie
    Replies
    3
    Views
    858

    I am wanting to stop a banner from refresh within...

    I am wanting to stop a banner from refresh within my page.
  3. Thread: Div

    by mathie
    Replies
    3
    Views
    858

    Div

    Is there a way of stopping a specific DIV from refreshing within a webpage
  4. Thread: Library Panels

    by mathie
    Replies
    0
    Views
    637

    CS3 Library Panels

    Hi There

    Has anyone come across with this bug in the animator’s workspace in Flash CS4.

    When I open my library panel with F11, 4 library panels open for that specific file.

    Is there any...
  5. Replies
    2
    Views
    1,207

    Not been tested but you could do something like...

    Not been tested but you could do something like this

    AS3 script


    this.addEventListener( Event.ENTER_FRAME, checkFrame );

    function checkFrame( e:Event ):void {
    var n:int=this.currentFrame;
  6. Replies
    1
    Views
    1,432

    Why not align the text in the dynamic text field...

    Why not align the text in the dynamic text field insted. I'm quessing that your pages are being loaded into a dynamic text field using XML.

    set the fields


    myTextField.htmlText = "<p...
  7. Replies
    1
    Views
    1,417

    Walking cycle [CS4]

    I been working on a walking cylce, please tell me what you think and if I need to change anything that will improve the characters

    thanks
  8. Replies
    2
    Views
    2,010

    thanks for you prompt reply what I'm trying to...

    thanks for you prompt reply
    what I'm trying to do is

    if for example the number 5 is generated 5 MC will be displayed on stage and so on
  9. Replies
    2
    Views
    2,010

    AS3 addchild to stage

    hi there

    I have just start to learning AS3

    I have create a function that creates a random number shuffle.

    I have another array that holds linkages from the library and I'm using addchild to...
  10. Replies
    0
    Views
    409

    AS3 addchild to stage

    hi there

    I have just start to learning AS3

    I have create a function that creates a random number shuffle.

    I have another array that holds linkages from the library and I'm using addchild to...
  11. Replies
    1
    Views
    857

    crossword goto nextField

    I wonder if anyone can help me sort this out.

    how can you go to the next text field when user enters a letter.

    I've created an array that saves the text box selected by the user.

    The...
  12. use a for in loop retrieves the names variables....

    use a for in loop retrieves the names variables.

    http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00002338.html


    for (var j in this)
    {
    trace(j);
    }
  13. I'm just read your other post

    I'm just read your other post
  14. you could use LocalConnection ...

    you could use LocalConnection

    http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002338.html

    or _global vars
  15. Replies
    2
    Views
    1,849

    I'm still not getting this to work I having...

    I'm still not getting this to work


    I having 2 variables holding each MCs coordinates



    var xPos:Number = btntab._x;
    var yPos:Number = btntab._y;
  16. Replies
    2
    Views
    718

    try this give each button on stage an instance...

    try this give each button on stage an instance nam eof Btn0, Btn1, etc



    var BtnCount:Number = 5;
    for(var i = 0; i < BtnCount:Number; i++ ){
    this["Btn"+i].onRollOver = function(){
    Do...
  17. Replies
    2
    Views
    1,849

    xPos yPos not working

    I am trying to position MC clip back into there x and y position but it not working. It goes to the last element position in the array (thumb4_mc)

    can anybody help?



    var btnArray:Array = new...
  18. Replies
    1
    Views
    554

    AS3 button display

    Hi there

    I have 9 button elements in an array that are number 0 to 9 that works, but the output_txt dynamic text field will not display the number for that button when clicked.

    any ideas?

    ...
  19. Replies
    1
    Views
    421

    stage.addEventListener(KeyboardEvent.KEY_DOWN,...

    stage.addEventListener(KeyboardEvent.KEY_DOWN, myFunction);

    function myFunction(evt:KeyBoardEvent):void
    {
    if(evt.keyCode == 38){// key code number
    //do something
    }
    if(evt.keyCode == 40){//...
  20. Replies
    2
    Views
    553

    try something like this var...

    try something like this



    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(evt:Object):Void {
    // trace cue point name and type
    trace("Cue point name: " +...
  21. Replies
    2
    Views
    716

    thanks for the reply! All the clips are the...

    thanks for the reply!

    All the clips are the same size and the registration point is in the top left hand corner.

    Yes I'm going to space out the movie clips from each other using there height...
  22. Replies
    2
    Views
    716

    Shuffle movieclips

    Hi guys

    I have 9 movie clips on stage that i am shuffling but some of the clip overlap each other how can i prevent this?



    here my code so far


    var boxCnt:int = 9;
  23. Replies
    1
    Views
    393

    resolved changed this if...

    resolved
    changed this


    if (login.charAt(i)<=caseString.charAt(q)) {
    if (login.charAt(i) == caseString.indexOf(caseString.charAt(q))) {
    trace("Index of:...
  24. Replies
    1
    Views
    393

    [F8] to find indexOf login

    Hi folks

    I am using string.indexOf so that it searches a number of strings that recognize the users - username and password from a SO.

    But I'm not getting to work.

    The code will provide me...
  25. Replies
    1
    Views
    645

    Resolved The reason for the sound being...

    Resolved

    The reason for the sound being amplifying is that one of the SWFs had not been unloaded correctly.
Results 1 to 25 of 124
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center