A Flash Developer Resource Site

Results 1 to 11 of 11

Thread: How do you get unstuck with programming problems.

  1. #1
    Senior Member
    Join Date
    Dec 2004
    Posts
    459

    How do you get unstuck with programming problems.

    Say you're more of a designer than a programmer. How do you solved problems with programming issues in say, ActionScript or PHP if you are doing the job solo and have no expert programmers to help you get out?
    How long does it usually take to resolve these programming issues?
    Last edited by An Artist; 02-24-2011 at 10:45 AM.

  2. #2
    pablo cruisin' hanratty21's Avatar
    Join Date
    Mar 2002
    Location
    on the lam
    Posts
    2,275
    Flashkit, google, etc.
    "Why does it hurt when I pee?" -- F. Zappa |

  3. #3
    Senior Member Genesis F5's Avatar
    Join Date
    Jan 2002
    Location
    Unallocated memory
    Posts
    1,845
    As long as it takes to create a thread in the freelance forum?

    This question has no definitive answer if you're set on doing it yourself.

  4. #4
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    Talk it out with smarter people than myself...

    Which leaves.. a lot.

    [ Hello ] | [ gerbick ] | [ Ω ]

  5. #5
    Hood Rich FlashLackey's Avatar
    Join Date
    Aug 2006
    Posts
    148
    It depends.

    Without specifics, the question can't be answered further than that.
    "We don't estimate speeches." - CBO Director Doug Elmendorf

  6. #6
    Senior Member
    Join Date
    Dec 2004
    Posts
    459
    I run into problems at jobs.... It takes forever to fix a programming problem. Is this the norm? I sure is frustrating when a boss does not know how difficult it is making programming language work.

    Right now I am trying to get a flash contact form to work with ActionScript 2 and PHP. It's very frustrating.

  7. #7
    Senior Member Genesis F5's Avatar
    Join Date
    Jan 2002
    Location
    Unallocated memory
    Posts
    1,845
    It sounds more like programmer error than programming error. The actual interaction between client / server should be very simple. The hardest thing should be having a proper email address validation, but there are a ton of regular expressions out there to handle that.

    If there's one thing I've learned, it's to stick to what you know. I can do a bit of artwork if needed, but I'm a programmer 100%. I wish I could create great artwork, but there's a reason why I can't. Artists have as much interest and put as much effort into what they do as I do with my programming.
    Last edited by Genesis F5; 02-24-2011 at 09:37 PM.

  8. #8
    pablo cruisin' hanratty21's Avatar
    Join Date
    Mar 2002
    Location
    on the lam
    Posts
    2,275
    Quote Originally Posted by An Artist View Post
    Right now I am trying to get a flash contact form to work with ActionScript 2 and PHP. It's very frustrating.
    There's got to be 8 bajillion threads like this in the help forums. A quick search would yield hundreds if not thousands of results. In the time it took to wait for responses to this thread, you could have had a V8...


    ...and solved your problem.
    "Why does it hurt when I pee?" -- F. Zappa |

  9. #9
    Senior Member
    Join Date
    Dec 2004
    Posts
    459
    Quote Originally Posted by Genesis F5 View Post
    I

    If there's one thing I've learned, it's to stick to what you know. I can do a bit of artwork if needed, but I'm a programmer 100%. I wish I could create great artwork, but there's a reason why I can't. Artists have as much interest and put as much effort into what they do as I do with my programming.

    Well said! I still would like to get more programming under my belt because employer (most anyway), expect me to know it. But what you wrote about artists putting as much effort into their work than you as a programmer is much appreciated. Many people don't realize that. Thank you!

  10. #10
    associate admedia's Avatar
    Join Date
    Oct 2001
    Location
    is
    Posts
    1,347
    Learn to break the problem down and debug...

    AS 2.0 -> php contact form

    Step 1. Is the SendAndLoad working?
    Replace the php script with static text
    Code:
    &test=yay!
    Test and debug the SendAndLoad until you are able to trace the value of test.
    If you are able to trace the value of test from the SendAndLoad proceed to step 2.

    Step 2. Is the php script working?
    Turn on error reporting and make sure you are writing errors to the screen
    PHP Code:
    ini_set ('display_errors''true');
    error_reporting(E_ALL); 
    Point your browser to the PHP script and see if there are any errors. http://localhost/phpmailscript.php
    Set up the mail script so you can test it without using flash:
    Create a simple HTML form or send the variables to the form using a get querystring such as http://localhost/phpmailscript.php?e...nts=testing123
    See if you can get the mail script to send the email and return &test=yay!
    If you have trouble start echoing out variables to see where the problem is.

    Once you have step 2 completed connect the 2 scripts and put error reporting back to default.

  11. #11
    Senior Member
    Join Date
    May 2010
    Location
    Russia: Western Siberia
    Posts
    268
    If it's such a big problem, why don't you just tell your boss you're not a programmer? Maybe he should hire a programmer to help you deal with the programming parts, maybe a one time free-lance programmer?
    My boss understand this, and never makes anyone do the job he's not familiar with. That's a big plus of him, I think.

    But anyway, there's also a lot of tutorials on how to make forms and other stuff like that out there, just google it out.
    At least you can always ask for help here

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center