A Flash Developer Resource Site

Search:

Type: Posts; User: pigghost

Page 1 of 20 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    8
    Views
    590

    ...oh, been going through some life...

    ...oh, been going through some life changes...even quit flashing for awhile....but I see you just keep improving :) You are always an inspiration......

    ...and it's nice to see a friendly face :)
    ...
  2. Replies
    8
    Views
    590

    ......simply elegant, g......

    ......simply elegant, g......
  3. Replies
    4
    Views
    706

    Hi Boastin01.....just put a unique frameLabel on...

    Hi Boastin01.....just put a unique frameLabel on the frame you want to navigate to and on your button.....

    _root.gotoAndPlay("frameLabel");

    Hope this helps.....

    -pg-
  4. Hi dz.....a couple of questions....does this...

    Hi dz.....a couple of questions....does this pixelation happen no matter how you view your movie? I mean is it the same in the player (TestMovie) as it is when you publish (in the browser)?

    ...one...
  5. Replies
    3
    Views
    435

    Hi PoopsMcGee.....well, I'm not sure what the...

    Hi PoopsMcGee.....well, I'm not sure what the syntax is you're trying to use.....but that won't work in Flash (as far as I know)

    But a way that will work is like this.....set up a function on your...
  6. Yeah, scenes can be a pain sometimes.....but your...

    Yeah, scenes can be a pain sometimes.....but your same "getBytes" code will work...once it loads, just tell the "_root" to goto frame 2...which will be your scene2.....

    I really don't know if this...
  7. Hi dz......Don't know if this would solve your...

    Hi dz......Don't know if this would solve your problem, but did you try adding a new scene and putting the preloader in it......

    Then you can change the order of the scenes in the Scene Panel Box...
  8. Thread: getUrl

    by pigghost
    Replies
    7
    Views
    634

    Okay....I think this tutorial by Jeffrey Hill...

    Okay....I think this tutorial by Jeffrey Hill will explain in more detail than I can on this board...about how to set up a form in Flash.....It's one of the better tutes I've seen on the...
  9. Thread: getUrl

    by pigghost
    Replies
    7
    Views
    634

    Well....(paraphrased from ASDG by Colin...

    Well....(paraphrased from ASDG by Colin Moock)"even though the name "loadVariables" suggests a single direction of variable transmission, it can also be used to "send" variables to a server-side...
  10. Thread: getUrl

    by pigghost
    Replies
    7
    Views
    634

    Hi minkey....try using...

    Hi minkey....try using "loadVariables".......something like this...

    loadVariables ("http://www.yourDomain.com/cgi-bin/myScript.cgi", "", "GET");

    Hope this helps...

    -pg-
  11. Replies
    6
    Views
    621

    Hi rideLIKEjehu....here's a Macromedia techNote...

    Hi rideLIKEjehu....here's a Macromedia techNote on a "back" button in a swf that is similar to what psychlonex was talking about....
    ...
  12. Replies
    4
    Views
    431

    Hi Xx[eLeMeNT]xX......put a frameLabel on frame1...

    Hi Xx[eLeMeNT]xX......put a frameLabel on frame1 of Scene2....maybe something like "two"...... then put this on your button......

    on(release) {
    _level0.gotoAndStop ("two");
    }

    That should do...
  13. Replies
    2
    Views
    387

    Hi tunnel-dirt.......you need to "escape" your...

    Hi tunnel-dirt.......you need to "escape" your quotes with backslashes like this.....

    <a href=\"http://www.blahblah.com\">view</a>

    That should do it......

    Hope this helps.....

    -pg-
  14. Replies
    3
    Views
    535

    Hi.....micmac, I think that's a really old...

    Hi.....micmac, I think that's a really old TechNote(1999).... they might have been talking about Flash 3....

    Anyway, put this on the frame where your textfields are.......



    ...
  15. Replies
    2
    Views
    532

    Hi....if I'm understanding you correctly...you...

    Hi....if I'm understanding you correctly...you want just one textbox, right?

    Then just name your textbox something like "display" and then you just need to call your differrnt variables like so......
  16. Replies
    11
    Views
    793

    Hi.....say you pass your variable in like this in...

    Hi.....say you pass your variable in like this in your txt file...

    colorVar=0xFF0000

    Now on a button or however....


    on (release) {
    myColor = new Color(_root.yourMC);...
  17. Replies
    13
    Views
    943

    Hi again....I think this may be what you're...

    Hi again....I think this may be what you're looking for...a String prototype I found at layer51...by mjohnson40

    http://www.layer51.com/proto/d.asp?p=2&f=34


    String.prototype.htmlEncode =...
  18. Replies
    13
    Views
    943

    A Very Happy New Year to you, Genevieve! I...

    A Very Happy New Year to you, Genevieve!

    I tried Moock's "replace()" function......it worked, but it would still be just one string at a time....I'm sure a couple of arrays is the answer.....but...
  19. Replies
    13
    Views
    943

    Hi g.....maybe I'm not understanding...but,you...

    Hi g.....maybe I'm not understanding...but,you want the URL encoded version to appear in the dynamic textfield?

    If so...just use the "escape" function....

    output = escape(input);

    ...but...
  20. Hi mike6888......in the first frame of...

    Hi mike6888......in the first frame of "battlescene1" Scene put a unique frameLabel, say something like "battle".....then on your movieClip...

    onClipEvent (enterFrame) {
    if...
  21. Replies
    9
    Views
    633

    Well...I couldn't find the thread from here, but...

    Well...I couldn't find the thread from here, but here's the same one he posted at were-here.com....

    http://66.70.72.50/forums/showthread.php?threadid=69522

    -pigghost-
  22. Replies
    9
    Views
    633

    Very cool, dz..very cool....yes, setTransform is...

    Very cool, dz..very cool....yes, setTransform is fun...Robert Penner has some great prototypes for doing things with setTransform.....I'll see if I can find the thread....if not I'll post them...
  23. Replies
    4
    Views
    526

    Hi.....I got your .fla...but when I tried sending...

    Hi.....I got your .fla...but when I tried sending it back it came back undelivered...a couple of times...not sure what's going on with that...but I think I can talk you through it.....

    Anyway, if...
  24. Replies
    4
    Views
    526

    Hmmm...well, not sure...I tested the code with...

    Hmmm...well, not sure...I tested the code with two mc's and it worked fine.....I would probably need to see your .fla to tell you for sure what is wrong....

    If it's not terribly huge, you can send...
  25. Replies
    1
    Views
    457

    Hi...to have the main timeline just go to the...

    Hi...to have the main timeline just go to the next frame put.....

    _root.gotoAndStop(_currentFrame+1);


    ...and just in case it comes up, to go to another scene from a mc put a unique...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center