A Flash Developer Resource Site

Search:

Type: Posts; User: feigner

Page 1 of 11 1 2 3 4

Search: Search took 0.21 seconds.

  1. Replies
    1
    Views
    514

    [F8] onRollOut not registering

    The best way I know how to explain my problem is to show it. Go to www.wandohigh.com/index_test.html and you will see a big main flash movie smack in the middle of the page. There are dropdown...
  2. Anybody out there have any ideas on how I can fix...

    Anybody out there have any ideas on how I can fix this annoying problem?
  3. There are tons of tutorials out there on how to...

    There are tons of tutorials out there on how to make things have the type of easing motion that you're looking for.

    http://www.kirupa.com/developer/mx/easing_mouseclick.htm

    Look at that...
  4. [F8] TextField background covering up something I've drawn using beginFill

    My road block/mental block is this: I am making a menu system. Submenus (that is, a menu inside a menu) have a small arrow on them indicating that they are submenus. I drew them using the...
  5. Replies
    3
    Views
    765

    To have it reset the input box to a "?" if the...

    To have it reset the input box to a "?" if the user doesn't type anything, put in this code...


    input.onKillFocus = function () {
    this.text = this.text == "" ? "?" : this.text;
    }

    I just...
  6. I was working on an example for you as well, but...

    I was working on an example for you as well, but nunomira posted before me. What he posted will work just fine as far as I can tell, but I didn't want to let my work go wasted, so here's another...
  7. Replies
    2
    Views
    485

    I would have shown this earlier but I was at...

    I would have shown this earlier but I was at work. Here it is now.


    xml.onLoad = function (success) {
    if (success) {
    for (var i:Number=0;i<xml.firstChild.childNodes.length;i++) {
    var...
  8. Replies
    2
    Views
    485

    [F8] TextField url not working

    I am making a menu system that will load from an XML file, and one thing, which makes no sense, is really miffing me.

    <menus>
    <menu name="Menu 1">
    <entry name="Choice 1"...
  9. Replies
    1
    Views
    349

    What you can do is target the level that you...

    What you can do is target the level that you loaded the movieclip into. In the example you used, the movie clip was loaded into level 1, so you could target home.swf like this


    _level1._x = 55;...
  10. Replies
    4
    Views
    433

    numberWithLetters = inp1.text.toLowerCase(); //...

    numberWithLetters = inp1.text.toLowerCase(); // store what is in the input textbox into this variable

    numberWithoutLetters = "";

    for ( i=0 ; i<numberWithLetters.length - 1 ; i++) {
    switch...
  11. Replies
    3
    Views
    354

    It didn't cross my mind to do that, but it makes...

    It didn't cross my mind to do that, but it makes a lot of sense that it would work that way.

    Thanks a lot!
  12. Replies
    4
    Views
    433

    The problem with the code you have written is...

    The problem with the code you have written is that your string variable, inp1, is constantly changed during your loop. Looking at that code I would say that it is an infinate loop.

    What you...
  13. Replies
    3
    Views
    354

    [F8] generate an event

    Hey all,

    Does anybody know if there is any way to generate an event, say for a movie clip. An example would be to make a movie clip believe it's been dragged over.

    I want to do this because I...
  14. Replies
    6
    Views
    525

    (i pressed the post button too many times and it...

    (i pressed the post button too many times and it posted more than once, sorry. i dont know how to delete them...)
  15. Replies
    6
    Views
    525

    ..

    ..
  16. Replies
    6
    Views
    525

    I ran into one more problem. All of my code is...

    I ran into one more problem. All of my code is written in my movie clip under the event handler for "data". But attaching the movie using attachMovie doesn't dispatch that event. Is there a way...
  17. Replies
    6
    Views
    525

    Thanks a ton!!! I've been wracking my brain on...

    Thanks a ton!!!
    I've been wracking my brain on how to do this and it had really brought me to a roadblock! I was hoping not to have to create a new movie clip, so that I could keep the size as...
  18. Replies
    6
    Views
    525

    load embedded from the library

    Is there any way to load an image from the libary into a movie clip using
    MovieClip.loadMovie or anything similar to it? I have my picture imported into my library and I want it to be loaded into...
  19. accessing variable on frame from movieclip

    I have a very small problem that is becoming very frustrating. I know there is a simple solution to it, but I just can't come up with it.

    I have an array declared on my frame (the one and only...
  20. Replies
    3
    Views
    355

    on (release) { ...

    on (release) {
    _parent.gotoAndStop("inst");
    }
  21. Replies
    6
    Views
    501

    it might also benifit you to look into...

    it might also benifit you to look into hexadecimal numbers. Do a google search about them, then deatBeat's code up there will make more sense to ya, and you may not have needed to ask your question...
  22. Replies
    3
    Views
    505

    mathematically your code should work. but i...

    mathematically your code should work. but i think the problem is that Flash isnt comming up with the exact numbers that can be depended on to keep the movie clip infinately up and down in the same...
  23. Replies
    38
    Views
    3,542

    Alrighty, i'll give this a shot... this is not...

    Alrighty, i'll give this a shot... this is not be the best method of doing this, but it seems like it will be the way that you will best be able to get it done.

    For every response that you want...
  24. Replies
    3
    Views
    505

    So you're looking to do something like this? (see...

    So you're looking to do something like this? (see attached)

    I incremented by 0.02 just to make it a little smoother... but the lines are where it stops (the middle one is where it starts out) it...
  25. Thread: parachute game

    by feigner
    Replies
    2
    Views
    508

    Thanks

    Thanks
Results 1 to 25 of 266
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center