A Flash Developer Resource Site

Search:

Type: Posts; User: DantePonz

Page 1 of 10 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    599

    Two New Redesigns

    Hey all.

    I wanted to get some feedback on two new redesigns I recently did. Let me know what you all think:

    The Meridian Business Group

    F Wall Street

    Are the sites quick? Easy to...
  2. //GET THE SUM FROM THE RATES COLUMN...

    //GET THE SUM FROM THE RATES COLUMN
    $query=mysql_query("SELECT SUM(rates) FROM table");

    //DECLARE AN ARRAY TO GET YOUR VALUE
    $rates=mysql_fetch_array($query);

    //GET THE VALUE FROM THE ARRAY...
  3. Great point Musicman. If you need real security,...

    Great point Musicman. If you need real security, my solution is not the answer. But I think it would suffice for more than 99% of the personal and small-business web forms. In my experience, most...
  4. Replies
    2
    Views
    782

    The problem is that you close the "Title" node...

    The problem is that you close the "Title" node immediately. Change it to:

    <?php


    $link = mysql_connect(myserver,'myusername','password');
    mysql_select_db("mydatabase");

    $query = 'SELECT...
  5. Replies
    5
    Views
    1,085

    The "secret" stuff is the site or application you...

    The "secret" stuff is the site or application you want to show to users who log in properly. The Kirupa tutorial is very basic. You should have your application load from an external swf and...
  6. Replies
    7
    Views
    2,334

    You would use the security precautions to prevent...

    You would use the security precautions to prevent harmful input or interruptions to your MySQL query. You should strip out any unnecessary characters and (usually) convert single and double quotes...
  7. Replies
    7
    Views
    2,334

    Here's your problem in update_ac.php: ...

    Here's your problem in update_ac.php:

    $sql="UPDATE $tbl_name SET name='$name', lastname='$lastname', email='$email' WHERE id='$id'";

    You never get the variables $name, $lastname, $email or $id....
  8. Replies
    3
    Views
    718

    You're better off having MySQL format the date...

    You're better off having MySQL format the date for you as a new variable:

    $sql=mysql_query("SELECT *, DATE_FORMAT(postdate,'%M %D, %Y at %l:%i %p') as formatteddate FROM table") or...
  9. Captcha is great except you may end up losing a...

    Captcha is great except you may end up losing a few people that otherwise would have contacted you. The less they need to do to get in touch with you, the better.

    Make it a policy to use...
  10. Replies
    7
    Views
    2,334

    Post your code (without your database username...

    Post your code (without your database username and password) so we can take a look. You may have a typo somewhere or your database user doesn't have UPDATE permissions. I am assuming typo because a...
  11. Replies
    5
    Views
    1,085

    To handle the login, you can create your form in...

    To handle the login, you can create your form in Flash and have it talk to a PHP script which checks a MySQL database for proper credentials and then verifies or denies the visitor - which then tells...
  12. Replies
    0
    Views
    678

    [F8] Fast Lines for Motion/3-D

    How do you pros do 3-D style lines to simulate motion. Examples of this would be 2advanced V4 intro or this intro template.

    Is it all done in Flash? Is it all handcoded tweens or are there...
  13. But composting might make an interesting Flash...

    But composting might make an interesting Flash movie! You got me goliard.
  14. Replies
    1
    Views
    784

    A Guestbook Tutorial...

    A Guestbook Tutorial:

    You need to have Flash send the variable to a PHP script which then writes it to the database just like you would have your HTML form do. Just like all the e-mail contact...
  15. I assume this is MySQL? What "Type" do you have...

    I assume this is MySQL? What "Type" do you have the column set to? If you do not set it to one of the integer ("Int", "Tinyint") fields, SQL assumes it is a string and gives you the order you posted....
  16. Simple. Add a few more fields in flash and assign...

    Simple. Add a few more fields in flash and assign them to sendData like you did everything else:
    e.g. sendData_lv.city = city_txt.text;

    Then, attach those to your feedback variable in PHP like...
  17. The technical term for what you are trying to do...

    The technical term for what you are trying to do is "Composting". "Chroma key" is the color/specs of the green or blue screen.
  18. Replies
    9
    Views
    712

    One comment - you have a landing page where...

    One comment - you have a landing page where people click "Enter", then, after your preloader, you have to click again. It is double work and I think you'll lose people.
  19. On non-IE browsers, your site is fine. On IE,...

    On non-IE browsers, your site is fine. On IE, visitors have to click to activate the Flash content before they can actually use the buttons etc. Knowing this, it's a pain. If I were a visitor who...
  20. Sure. When you go to the file directly, it scales...

    Sure. When you go to the file directly, it scales up or down how you want. But, when you ask it to load on the web page, it is fixed at your HTML settings of 720x415. You can change the width and...
  21. The link you provided doesn't work. Check the...

    The link you provided doesn't work. Check the width and height settings in the HTML and adjust as necessary. Fix the link and we'll take a look.
  22. Google: SWFobject. It is a Javascript solution...

    Google: SWFobject. It is a Javascript solution that detects Flash, shows alternate content and removes the "Click for Active X" IE problem.
  23. Thread: [f8]

    by DantePonz
    Replies
    10
    Views
    745

    Your shapes are grouped for some reason. I just...

    Your shapes are grouped for some reason. I just did the following and it worked.

    Go to:
    Edit->Select All (or [CTRL+A])

    With everything selected go to:
    Modify->Beak Apart (or [CTRL+B])

    Now...
  24. Thread: [f8]

    by DantePonz
    Replies
    10
    Views
    745

    Click "Post Reply" then, below the Post Textarea,...

    Click "Post Reply" then, below the Post Textarea, click the "Manage Attachments" button. Make sure you give a very detailed explanation of what steps you took and where you are having a problem.
  25. Thread: [f8]

    by DantePonz
    Replies
    10
    Views
    745

    Attach your FLA and where you are having a...

    Attach your FLA and where you are having a problem and I will take a look.
Results 1 to 25 of 238
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center