A Flash Developer Resource Site

Search:

Type: Posts; User: edeveloper

Page 1 of 20 1 2 3 4

Search: Search took 0.50 seconds.

  1. Replies
    4
    Views
    1,339

    hey,don't mean to cover the same thing twice but...

    hey,don't mean to cover the same thing twice but your perms. don't have anything to do with anon. logins. either go into administrative tools under control panel and set the permissions or go into...
  2. hey, instead of using all those if statements...

    hey,
    instead of using all those if statements you might be better of using the switch() function:
    switch (status) {
    case 0:
    loginMSG = "INVALID!!";
    break;
    case 1:
    _root.loginMSG =...
  3. Replies
    4
    Views
    1,339

    hey, sounds like the permissions are set but you...

    hey,
    sounds like the permissions are set but you never said for which user.
    make sure that you have read/write perms. set for the internet user account: IUSR_yourServerName.

    good luck
  4. Replies
    9
    Views
    1,187

    or all in flash with no external scripting: var...

    or all in flash with no external scripting:
    var myJSstring = "javascript:";
    myJSstring += "window.open(";
    myJSstring += "'your.htm'";
    myJSstring += ",'myWin'";
    myJSstring += ",'width='+...
  5. Replies
    9
    Views
    1,187

    hey, that kind of full screen is going to make...

    hey,
    that kind of full screen is going to make your users really upset for taking over their window. but, if you don't care......
  6. Replies
    2
    Views
    678

    hi, if you want to use asp, you can check out my...

    hi,
    if you want to use asp, you can check out my tutorials @ http://www.aspalliance.com/bellis/

    good luck
  7. Replies
    3
    Views
    945

    Hi, i used: url=

    Hi,
    i used:
    url=<a href="thePage.html" target="_blank">a test</a>

    and it worked fine.

    to load a new txt file, set the var = "";

    good luck
  8. Replies
    4
    Views
    720

    hey, you can also check out my flash/asp...

    hey,
    you can also check out my flash/asp tutorials at http://www.aspalliance.com/bellis
  9. Replies
    3
    Views
    731

    hey, problem is with ns 6.0 it's not capable of...

    hey,
    problem is with ns 6.0 it's not capable of communicating with flash. mac should be ok with everything except ns 6 and ie vers < 5. seems like the best plan is to sniff for these trouble...
  10. Replies
    1
    Views
    717

    hi, just make winName unique for each window you...

    hi,
    just make winName unique for each window you want to call.
  11. Replies
    3
    Views
    2,509

    hey, that would work assuming the provider...

    hey,
    that would work assuming the provider supports php. why not just do it with old fashion javascript:
    <script>
    if (document.cookie == ''){
    // the cookie expires on this date
    var date =...
  12. Replies
    2
    Views
    703

    you can put this in the head of your page:...

    you can put this in the head of your page:
    <script language="JavaScript">
    <!-- //hide from old browsers
    if (self != top) top.location.href = window.location.href;
    //-->
    </script>
  13. Replies
    3
    Views
    707

    here is one way you could do it: in flash:...

    here is one way you could do it:
    in flash:
    on(rollOver){
    getURL("javascript:showStatus('this is a test')","");
    }

    on(rollOut){
    getURL("javascript:showStatus('')","");
    }
    on(release){
  14. hi, where are you trying to load these vars? i...

    hi,
    where are you trying to load these vars? i can't see anywhere other that to do a comparison of the select box values and mark one selected. the vars are being passed but i don't think you are...
  15. why are you using the txt file? flash can't...

    why are you using the txt file?
    flash can't amend textfiles on a server. you would have to use some type of server-side application like asp or php.

    anyway,flash has a built in timer function.
    ...
  16. Replies
    10
    Views
    1,381

    i just recently updated my tutorial for sending...

    i just recently updated my tutorial for sending mail with flash and asp.

    shoot me an email to:
    edeveloper@hotmail.com
    and i will send you the new tutorial.
  17. Replies
    10
    Views
    1,381

    Hi, you can't call the server vars from flash...

    Hi,
    you can't call the server vars from flash using asp. you can tell it which you want when it gets there though.

    i'm confused - do you have to use their email script?
    if you can post files...
  18. Replies
    10
    Views
    1,381

    Hey Guys, wanted to let you know that asp does...

    Hey Guys,
    wanted to let you know that asp does have a referer property:
    request.serverVariables("http_referer")

    good luck
  19. why not nest a movie clip inside one of the...

    why not nest a movie clip inside one of the others and call it something like "eventViewer". on this clip you could check for a value:
    onClipEvent(enterFrame){
    if (_root.varName != '')
    doThis();...
  20. hi, check the sendmail.asp page. you are getting...

    hi,
    check the sendmail.asp page. you are getting a code error.
  21. Replies
    3
    Views
    856

    hey, i think i get what you mean. if you passed...

    hey,
    i think i get what you mean.
    if you passed it back like:
    <%
    adding 2 more vars here:
    blnDone=true
    intCount = i ' being the number of loops/records returned
    response.write...
  22. however you wanna use it. :)

    however you wanna use it. :)
  23. Replies
    1
    Views
    607

    hi, you could do it a couple of ways 1. using ...

    hi,
    you could do it a couple of ways
    1. using \n to add a new line:
    your text = "a bunch of text. a bunch of text. a bunch of text. a bunch of text. \n a bunch of text. a bunch of text. a bunch...
  24. Replies
    1
    Views
    610

    this is how i did it: frame 1: // my variable...

    this is how i did it:
    frame 1:
    // my variable in the textfile is "num"
    loadVariables("your.txt","");

    frame 5:
    if (num != ""){
    gotoAndStop(6)
    } else {
    gotoAnPlay(1);
  25. Replies
    3
    Views
    856

    Hi, you can send arrays to flash and parse them...

    Hi,
    you can send arrays to flash and parse them easily.
    one question though. are you keeping the arrays in the db or dynamically creating the arrays from the query?

    either way -
    <%
    all your...
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