A Flash Developer Resource Site

Search:

Type: Posts; User: moose-o

Page 1 of 9 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    391

    Targeting Issue

    I've created an MC in my library (comboBoxButton) which holds 2 MCs, text_mcl and bg_mcl.

    I dynamically create a few instances of the comboBoxButton to function as the drop down submenu:


    ...
  2. Thread: Input Text

    by moose-o
    Replies
    2
    Views
    501

    I figured there was script to address the issue,...

    I figured there was script to address the issue, but couldn't hunt it down...thanks, works great.
  3. Thread: Input Text

    by moose-o
    Replies
    2
    Views
    501

    Input Text

    I have created a form consisting of several input text fields. My question is whether there's script to evaluate which text field is currently selected.
  4. Replies
    1
    Views
    446

    contentLoaderInfo

    I've created a preloader using the following script:

    mySWF.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop);
    mySWF.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
    ...
  5. Thread: KeyboardEvent

    by moose-o
    Replies
    1
    Views
    445

    Figured this one out...learned a couple...

    Figured this one out...learned a couple interesting things regarding KeyboardEvent and having to attach it to the stage...which caused a problem because I was loading in .swf files that needed to...
  6. Thread: KeyboardEvent

    by moose-o
    Replies
    1
    Views
    445

    KeyboardEvent

    I have put together a keyboard event:



    addEventListener(KeyboardEvent.KEY_DOWN , keyDownHandler);

    function keyDownHandler(event:KeyboardEvent):void{

    if (event.keyCode == 192){
  7. Replies
    0
    Views
    408

    [RESOLVED] .swf targeting

    I have a "main timeline" that loads an swf...can the loaded swf target the "main timeline" (in AS2 root refers to the main timeline)?

    Also, can I call a function from the "main timeline" from the...
  8. Replies
    3
    Views
    689

    Is there a tutorial showing how to actually...

    Is there a tutorial showing how to actually create the document and the various options...the problem is I already have a form from which I want to grab info and store on a server...do you know if I...
  9. Replies
    3
    Views
    689

    Creating, compiling and accessing info

    I'm seeking advise regarding how to:

    1) Create info...which would consist of a form users complete.

    2) Compile and store info on the server.

    3) Access information.

    I have created contact...
  10. Thread: If loaded

    by moose-o
    Replies
    2
    Views
    442

    I haven't found anything that equates to AS2 in...

    I haven't found anything that equates to AS2 in Loader and URL...am I missing something. Is there a way to check whether the content is available locally? I've used the Loader and URL, but when I...
  11. Thread: If loaded

    by moose-o
    Replies
    2
    Views
    442

    If loaded

    Does anyone have a good resource or have code for AS3 regarding managing downloaded material? In AS2 you could check to see if something was downloaded...not sure how to do this in AS3...help.

    if...
  12. Replies
    3
    Views
    455

    Not sure exactly what you're going for, but maybe...

    Not sure exactly what you're going for, but maybe this will help. Yes, create an array:

    var imgArray:Array = new Array ("img1", "img2", "img3");

    Then you can loop actions based on the number of...
  13. Thread: Mouse_wheel

    by moose-o
    Replies
    4
    Views
    580

    Figured it out...although I've not tested it...

    Figured it out...although I've not tested it across the board (I hear mouse wheel listeners and Macs/Safari don't get along), but it works on Windows/IE:

    contentTXT.mouseEnabled = false; //...
  14. Thread: Mouse_wheel

    by moose-o
    Replies
    4
    Views
    580

    I guess I'm asking two questions: 1) Can mouse...

    I guess I'm asking two questions:

    1) Can mouse wheel be deactivated?

    And/or

    2) Is there code/tutorial to advance scrolling by one line regardless of delta (3,-3, 5, -5...)?
  15. Thread: Mouse_wheel

    by moose-o
    Replies
    4
    Views
    580

    I can't change it for every user via the control...

    I can't change it for every user via the control panel...so...I was hoping someone could point me in the right direction as to an Actionscript workaround.
  16. Thread: Mouse_wheel

    by moose-o
    Replies
    4
    Views
    580

    Mouse_wheel

    Putting together a mouse event:

    addEventListener(MouseEvent.MOUSE_WHEEL, mouseWheelHandler);

    function mouseWHeelHandler (event:MouseEvent) {

    contentTXT.scrollV += 1
    };

    The problem...
  17. Replies
    3
    Views
    569

    thanks...tabIndex does the trick.

    thanks...tabIndex does the trick.
  18. Replies
    3
    Views
    569

    Tab to next text field

    I'm a big fan of the ability to tab to the next text field when filling out a form. I've put together a form, but when the tab key is utilized it doesn't always go to the desired text field.

    Is...
  19. Replies
    3
    Views
    488

    Can you use a frame label in place of frame...

    Can you use a frame label in place of frame number?

    * Again, I don't use scenes...don't want to learn how to use scene...so I don't want to take the time to test myself.
  20. Replies
    3
    Views
    488

    Target Frames Within a Scene

    I don't use scenes, but I have been asked how to target a specific frame within a scene...can someone please advise?

    I beleive he's trying to utilize a button to have the playhead gotoAndPlay a...
  21. Thread: buttonMode

    by moose-o
    Replies
    3
    Views
    614

    Works perfect...thanks.

    Works perfect...thanks.
  22. Thread: buttonMode

    by moose-o
    Replies
    3
    Views
    614

    Works perfect...thanks.

    Works perfect...thanks.
  23. Thread: buttonMode

    by moose-o
    Replies
    3
    Views
    614

    buttonMode

    I've created a MC which I want to function as a button. The MC simply has a rectangular fill and dynamic text. I create an instance via script and set the dynamic text. I assigned the MC.buttonMode =...
  24. Replies
    6
    Views
    504

    I've stripped away much of the script...trying to...

    I've stripped away much of the script...trying to provide only the script which appears to be the issue...that's why I haven't provided the script showing the loading of the xml...safe to assume I've...
  25. Replies
    6
    Views
    504

    Okay, here it is another way...can the value...

    Okay, here it is another way...can the value stored in the Object be used to dynamically select a segment of imported xml to be displayed in a textfield?

    var myObject:Object = {myValue:"xml.info"}...
Results 1 to 25 of 204
Page 1 of 9 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center