A Flash Developer Resource Site

Search:

Type: Posts; User: nepdude

Page 1 of 20 1 2 3 4

Search: Search took 0.40 seconds.

  1. Replies
    1
    Views
    11,225

    With HTML alone, you can't. Read about SSI...

    With HTML alone, you can't. Read about SSI (Server-side-includes). That would be the easiest way. If your server does not allow SSI, you can use javascript.

    Create a javascript file that contains...
  2. Replies
    1
    Views
    421

    jpg's are usually used for photographs and gif's...

    jpg's are usually used for photographs and gif's are usually used for line drawings.
  3. Replies
    3
    Views
    1,176

    Re: http://takinglives.warnerbros.com/

    i don't look at sites that change my browser size and stuff
  4. ASP-Flash communication (fla and ASP attached)

    i downloaded a fla from the MM site and it works great. I wanted to modify it a little but can't get it to work. Can someone please see the actionscript and the asp file and correct what is wrong?
    ...
  5. Thread: screensaver

    by nepdude
    Replies
    5
    Views
    439

    Re: screensaver

    FlashForge
    FlashWiz
  6. Replies
    1
    Views
    385

    Create a movie clip and drag it into the over...

    Create a movie clip and drag it into the over state of your button
  7. Replies
    3
    Views
    450

    on(release){ geturl("myfile.html","frameName");...

    on(release){
    geturl("myfile.html","frameName");
    }

    myfile.html is the name of the file that is going to open in the other frame.
    framename is the name given to the frame in the frameset file.
    ...
  8. Replies
    3
    Views
    407

    That can't be done with Flash alone. You will...

    That can't be done with Flash alone. You will need some kind of server-side-script like PHP, ASP or cgi. Most webhosts have some kind of email script. Check with your host.
  9. Replies
    3
    Views
    407

    Select the A icon in the Tools Select Input for...

    Select the A icon in the Tools
    Select Input for the Properties instead of Static
  10. Replies
    7
    Views
    453

    false

    false
  11. Thread: pdf files

    by nepdude
    Replies
    1
    Views
    428

    if the file is in a subfolder on(release){...

    if the file is in a subfolder

    on(release){
    geturl("subfolder/myfile.pdf");
    }

    if it's in a folder higher than the current folder

    on(release){
    geturl("../myfile.pdf");
  12. Thread: pop up window

    by nepdude
    Replies
    6
    Views
    577

    Re: What?

    You probably got the part in bold wrong

    on(release){
    geturl("javascript:window.open('pic1.jpg','winName','width=500 height-300');void(0)");
    }

    make sure you have the correct name of the...
  13. Thread: cursor effect

    by nepdude
    Replies
    2
    Views
    450

    Re: cursor effect

    <style type="text/css">
    BODY{CURSOR: url(cursor3.cur)}
    </style>

    <A HREF="index.html" style="cursor:url(2.cur)">help me</A>

    i guess
  14. Thread: pop up window

    by nepdude
    Replies
    6
    Views
    577

    you don't need to edit the html document

    you don't need to edit the html document
  15. Thread: pop up window

    by nepdude
    Replies
    6
    Views
    577

    on(release){ ...

    on(release){
    geturl("javascript:window.open('pic1.jpg','winName','width=500 height-300');void(0)");
    }

    you'll need to change the width and height to match your picture dimensions
  16. Replies
    3
    Views
    479

    With ASP you would just use this line

    With ASP you would just use this line

    <!-- #include file="filename.txt" -->

    where you want the textfile to appear

    dunno about javascript
  17. Thread: Flash to Flash

    by nepdude
    Replies
    2
    Views
    513

    this...

    this technote should help
  18. Replies
    5
    Views
    529

    open your frameset file and check the name of the...

    open your frameset file and check the name of the other frame. it should look something like this

    . . .
    <frameset cols="120,*">
    <frame src="flashMenu.html", name="navigation">
    <frame...
  19. Replies
    3
    Views
    491

    on(release){ geturl("thatpage.html"); }

    on(release){
    geturl("thatpage.html");
    }
  20. Replies
    3
    Views
    395

    you can find the os detection script here...

    you can find the os detection script here

    i haven't come across transparent flash for mac yet
  21. Thread: Preloaders

    by nepdude
    Replies
    2
    Views
    370

    try this...

    try this
  22. Replies
    5
    Views
    703

    made some changes...

    made some changes
    <html><head><title>whatever</title></head>

    <body>

    <table width="100%" height="100%">
    <tr>
    <td align="center" valign="middle">
    <object>
    ....
  23. Replies
    5
    Views
    703

    create a table and insert the flash file in it...

    create a table and insert the flash file in it like so:
    <html><head><title>whatever</title></head>

    <body>

    <table align="center">
    <tr>
    <td align="center" valign="middle">
    <object>
    ....
  24. Replies
    5
    Views
    529

    on(release){ geturl("myfile.html","frameName");...

    on(release){
    geturl("myfile.html","frameName");
    }

    where frameName is the name that you assigned to the frame in the frameset file
  25. Thread: new window

    by nepdude
    Replies
    3
    Views
    497

    the popular way to do it would be to have an...

    the popular way to do it would be to have an index page with a link that says something like 'launch flash site'. the code for the link would be something like this

    <*a href="#"...
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