A Flash Developer Resource Site

Search:

Type: Posts; User: AVaughn

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    2,878

    I tried this and when I run a trace on value for...

    I tried this and when I run a trace on value for my dynamic field I see the comma but I get NaN in my Dynamic Text Display
  2. Replies
    4
    Views
    764

    as Whispers said it's no big task but you will...

    as Whispers said it's no big task but you will need a server side programming language such as Whispers suggested PHP
  3. Replies
    7
    Views
    1,141

    hate to revive this thread and I want to start...

    hate to revive this thread and I want to start off by thanking Whispers and I will be using his advise on future projects but unfortunately that approach would not work in the overall app.

    Here is...
  4. Replies
    7
    Views
    1,141

    Sweet work. Took me a couple seconds and they...

    Sweet work. Took me a couple seconds and they were working great. I guess I can make it an "else if" statement to get a roll over state for the buttons?

    I am going to try to use this in my app...
  5. Replies
    7
    Views
    1,141

    I see what you mean though hard to debud when...

    I see what you mean though hard to debud when nested, tried to define the scope with "_root.", results just confused me more. Need to walk away from it for a few mins. Go have a cup of coffee. :):)
  6. Replies
    7
    Views
    1,141

    I had planned to use radio buttons but it was...

    I had planned to use radio buttons but it was designed by someone who knows no flash and I am left to build it. Thanks for the tips. The enable code is in the button timelines on the "voted" frame. ...
  7. Replies
    7
    Views
    1,141

    AS2 button problem

    In the attached fla there are a series of buttons. The last three are sort of multiple choice group. If you choose one the other two are disabled ... or should be. However if I click the first of the...
  8. this works OK but if the number is say 12.40 the...

    this works OK but if the number is say 12.40 the result will be 12.4. I have tried using "int" instead of round and it strangely takes 12.40 and displays 12.39 ?????
  9. Replies
    6
    Views
    1,092

    Thanks for the response Whispers. Yes I omitted...

    Thanks for the response Whispers. Yes I omitted the ""'s. I have abandoned the load movie and using a final keyframe on the timeline to accomplish the same thing much cleaner. Thanks for your input....
  10. Replies
    6
    Views
    1,092

    Getting closer ...... q1a.onRelease =...

    Getting closer ......

    q1a.onRelease = function(){
    if (a1a==true){
    a1a=false;
    _root.stotal -=200;
    trace(stotal);
    }else{
    a1a=true;
    _root.stotal +=200;
  11. Replies
    6
    Views
    1,092

    No Good! This sends success request after the...

    No Good! This sends success request after the fact ..... back to the drawing board, Need to check if "stotal" > 983 after the button is released and the "stotal" incremented. Double "If Then Else"...
  12. Replies
    6
    Views
    1,092

    Think I may have it!! q1a.onRelease =...

    Think I may have it!!

    q1a.onRelease = function(){
    if(stotal>983)
    loadMovie("success.swf",0);
    else if(a1a==true){
    a1a=false;
    _root.stotal -=200;
    }else{
    ...
  13. Replies
    5
    Views
    927

    AS 2 Wow lots to do here. First off lots of Photoshop...

    Wow lots to do here. First off lots of Photoshop work saving files in PNG format with transparent backgrounds. XML would make it easier to do updates later and also keep the final swf files size...
  14. Replies
    6
    Views
    1,092

    If then Else statement load movieclip

    I have built a calculator with a running total variable (stotal) this is working great. There are 30 buttons each having its own value each add or subtract from "stotal".

    The attached is a much...
  15. Replies
    6
    Views
    792

    One last question. If you run this and click the...

    One last question. If you run this and click the 2nd or 4th option they return 1/100 less than actual value. The first has a value of 20.40 and returns 20.39, and the second has a value of 18.40 and...
  16. Replies
    6
    Views
    792

    Ha Ha was just trying to post I figured that out...

    Ha Ha was just trying to post I figured that out thanks so much
  17. Replies
    6
    Views
    792

    that works great how would I get it to display...

    that works great how would I get it to display two decimal places?

    Thanks

    I am trying you loop as well I am like a sponge for this stuff right now.
  18. Replies
    6
    Views
    792

    [RESOLVED] One small bug can anyone find?

    One small issue. I cleaned up the code on the buttons but having an issue with stotal value.

    If you compile and run this FLA, select the first then the second then the third choices then deselect...
  19. Replies
    3
    Views
    852

    One small issue. I cleaned up the code on the...

    One small issue. I cleaned up the code on the buttons but having an issue with stotal value.

    If you compile and run this FLA, select the first then the second then the third choices then deselect...
  20. [RESOLVED] My Conribution to this great forum

    Here is a nice app I built with help of this site. It is very basic but can be used in a much larger scope. I am using it in a complex financial caculator. I will post a link to it when complete.
    ...
  21. Replies
    3
    Views
    852

    Dude that is perfect. I was having a heck of a...

    Dude that is perfect. I was having a heck of a time with the if then else statement. This works great. Now Ill try to impliment in the much larger file and see how it goes.

    Thanks again
  22. Replies
    3
    Views
    852

    [RESOLVED] updating dynamic text

    In this simple app I have two MC buttons each when clicked adds a value to a "total" variable which is displayed in real time. This all works fine however as you can see the button can be de-selected...
  23. Replies
    2
    Views
    760

    As I mention I have the MC funtioning as a button...

    As I mention I have the MC funtioning as a button now. The buttons can be selected and de-selected. Once clicked and you click calculate it displays the values 75 + 50 (125) in the dynamic field...
  24. Replies
    2
    Views
    760

    wierd , I change the onPress to onRelease and now...

    wierd , I change the onPress to onRelease and now it functions properly. Huh?
  25. Replies
    2
    Views
    760

    [RESOLVED] Basic MC Button funtion help

    I have created a button as a movie clip, however it only returns the correct value on a trace if I convert MC to a button instance and then I loose my animation.

    Also I want to make the button so...
Results 1 to 25 of 56
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center