A Flash Developer Resource Site

Search:

Type: Posts; User: wdglide

Page 1 of 20 1 2 3 4

Search: Search took 0.29 seconds.

  1. Nope!

    Nope!
  2. Replies
    1
    Views
    2,717

    Force Reload of swf

    I need to force a reload of a child swf. I am using the same logic that I use with loading variables, but it doesn't seem to work.

    var rand = random(8564);
    loadMovieNum("mymovie.swf?rand", 3); ...
  3. Thread: SQL problem

    by wdglide
    Replies
    2
    Views
    642

    Have you tried WHERE MONTH(created) = 4

    Have you tried
    WHERE MONTH(created) = 4
  4. Replies
    3
    Views
    635

    Re: Multiple JavaScript Pop Up Window Problem

    It sounds like the javascript is not in the html for each of the windows you have open. Including the .js page on each new window will probably help
  5. Replies
    5
    Views
    770

    pretty sure its behind all those flash ads that...

    pretty sure its behind all those flash ads that crawl over you page. so yes. i'd says its supported
  6. Replies
    2
    Views
    757

    http://www.dmxzone.com http://www.webassist.com...

    http://www.dmxzone.com
    http://www.webassist.com
    http://www.dwteam.com
  7. Replies
    3
    Views
    628

    Other than the stored proc, any would work -...

    Other than the stored proc, any would work - mssql, mysql, even access. Stored proc are in Mssql
  8. Thread: mySQL problems

    by wdglide
    Replies
    6
    Views
    767

    Not. really. I'd goto phpmyadmin's site for help.

    Not. really. I'd goto phpmyadmin's site for help.
  9. Thread: mySQL problems

    by wdglide
    Replies
    6
    Views
    767

    Did you try http://localhost/phpmyadmin/

    Did you try http://localhost/phpmyadmin/
  10. Replies
    5
    Views
    770

    http://www.macromedia.com/support/flash/ts/documen...

    http://www.macromedia.com/support/flash/ts/documents/flash_top_layer.htm
  11. Replies
    1
    Views
    674

    you would use loadvars object.

    you would use loadvars object.
  12. Replies
    3
    Views
    797

    Not sure what you mean by "very dynamic" -- but I...

    Not sure what you mean by "very dynamic" -- but I suspect that means more than html is capable of. Also html -- by itself -- cannot handle includes. Maybe thats why....
  13. Thread: HTML Form

    by wdglide
    Replies
    2
    Views
    881

    do you have the ability to use cgi, asp or php?

    do you have the ability to use cgi, asp or php?
  14. Replies
    3
    Views
    628

    Yes its possible. You need to design it so...

    Yes its possible. You need to design it so fFirst it queries to see if the time slot is available. Then you need to also design the insert so that it first checks that the slot is open. If its...
  15. http://www.dmxzone.com

    http://www.dmxzone.com
  16. Replies
    1
    Views
    556

    New window commands are really a client-side...

    New window commands are really a client-side issue. This would suggest javascript.

    If its part of an if...else statement, I would use .asp to write a javascript function to open a new browser...
  17. Replies
    2
    Views
    593

    http://www.phpgrid.com/grid/ .. might be a...

    http://www.phpgrid.com/grid/

    .. might be a good start
  18. Replies
    11
    Views
    590

    I don't use date() in vbscript. I use now(). ...

    I don't use date() in vbscript. I use now(). But I normally let the DB handle date functions. Datatypes will always be the biggest hassle with dynamic pages. Here's a decent link for asp date...
  19. Replies
    3
    Views
    797

    CGI is a server side scripting language. HTML is...

    CGI is a server side scripting language. HTML is a client side language. Very different.

    If you want a basic site -- no dynamic data -- html is all you need. If you want to interact...
  20. Replies
    3
    Views
    623

    Thats basic javascript. you are just passing the...

    Thats basic javascript. you are just passing the JS function call to the browser window via a hyperlink. If the text link is in html just make it:


    <a...
  21. Replies
    11
    Views
    590

    There are two ways to do it. Use access's date...

    There are two ways to do it. Use access's date function by passing the function call to the db as a simple string:

    "select * from table where field > date()"

    or use the vbscript function by...
  22. Replies
    11
    Views
    590

    You used .asp date() above -- without quotes. ...

    You used .asp date() above -- without quotes.

    Run this code from within Access (as a query in SQL view). If it works there, your problem is elsewhere.

    SELECT * FROM events WHERE event_type =...
  23. Replies
    11
    Views
    590

    You must be using MS Access. Just replace...

    You must be using MS Access. Just replace getdate() with whatever function works in access (might be date())
  24. Replies
    11
    Views
    590

    have you tried letting the db get today's day? ...

    have you tried letting the db get today's day? GETDATE()
  25. Replies
    11
    Views
    590

    Re: ASP Events Calendar

    '// I created the strSQLQuery for the query
    strSQLQuery = "SELECT * FROM events WHERE event_type = 2 AND event_endday >= '" & date() & "' ORDER BY event_startday ASC"
    quotes around the date
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