A Flash Developer Resource Site

Search:

Type: Posts; User: dancinkid6

Page 1 of 11 1 2 3 4

Search: Search took 0.10 seconds.

  1. Transparent Flash over Non-Transparent Flash problem

    we are gonna put a transparent flash Ad on a website. but this website already has some flash on its pages.

    the problem is when we use <div> to put the tranparent flash float over the webpages,...
  2. Replies
    1
    Views
    1,768

    firefox embed salign problem

    i am embedding a flash file into the firefox, used salign & noscale, but salign doesnt work when i view the flash with firefox. anyone got this problem before??
  3. Replies
    0
    Views
    1,252

    firefox embed salign problem

    i am embedding a flash file into the firefox, used salign & noscale, but salign doesnt work when i view the flash with firefox. anyone got this problem before??
  4. Replies
    3
    Views
    458

    you could achieve that by dividing the surface...

    you could achieve that by dividing the surface into lines and apply colors line by line. :)

    too lazy to think about the formula
  5. Replies
    10
    Views
    894

    that would generate a popup window, it is a...

    that would generate a popup window, it is a disturbance to the user experience =(
  6. Replies
    10
    Views
    894

    huh? but when window is closed, javascript lost...

    huh? but when window is closed, javascript lost its working environment and wont continue anymore. remove the alert box and try it yourself.

    thanks though :)
  7. Replies
    10
    Views
    894

    =( it doesnt work when user closes the window....

    =( it doesnt work when user closes the window. without warning, there is not enuff time to access the database to update the counter. any other clue =(
  8. Replies
    10
    Views
    894

    thanks =D

    thanks =D
  9. Replies
    10
    Views
    894

    detect average swf play time

    Hi,
    i'd like to detect the time of my swf being viewed before gets closed, or get to another page or the browser window gets closed. how do i achieve that? i dont have the access to the onClose()...
  10. Replies
    4
    Views
    1,100

    any thoughts?

    any thoughts?
  11. Replies
    4
    Views
    1,100

    i understand that, but we have to it server side...

    i understand that, but we have to it server side because the function we provide is that users could convert their own videos online. any thoughts?? =(
  12. Replies
    4
    Views
    1,100

    optimize Flash video

    Hi everyone we are using php to convert mpg/avi video files to swf files. the current resolution and compression are okay. we want to improve it. is there any plugins or other stuff we could do to...
  13. Replies
    5
    Views
    710

    or you can use onClipevent on the mc ...

    or you can use onClipevent on the mc

    onClipEvent(mouseDown)

    {

    for (var cn = 0; cn<31; cn++)
    {
    if(this['Tile'+cn].hitTest(this._xmouse, this._ymouse))
    {
  14. look up localToGlobal & globalToLocal

    look up localToGlobal & globalToLocal
  15. Replies
    5
    Views
    710

    I think you are doing stuff wrong with hitTest,...

    I think you are doing stuff wrong with hitTest, try this:


    Taipei.onMouseDown = function()
    {

    for (var cn = 0; cn<31; cn++)
    {
    if(this['Tile'+cn].hitTest(this._xmouse, this._ymouse))
    {
  16. you will have to add an enterframe function that...

    you will have to add an enterframe function that keeps track of sound.position which is a property indicates how long a sound has been playing, compare that with sound.duration, just play the mp3...
  17. Replies
    2
    Views
    385

    I would split(".") then join without the last...

    I would split(".") then join without the last array element, which is the extension part.
  18. try to encode your text in UTF-8.

    try to encode your text in UTF-8.
  19. Replies
    5
    Views
    604

    yea, you do need a video loader to do that, and ...

    yea, you do need a video loader to do that, and

    on (release) {
    loadMovie("video_play.swf",container_mc);
    }

    should've done the work if it works locally, unless your path to video_play.swf...
  20. $to = "name_one@comcast.net,...

    $to = "name_one@comcast.net, name_two@comcast.net, name_three@comcast.net";
  21. man, i havent done F4 for years. but cant you put...

    man, i havent done F4 for years. but cant you put a button in the background and add a onClipEvent release to reset the value?
  22. knobListen.onChanged=function(){} would do it

    knobListen.onChanged=function(){}

    would do it
  23. you can do this by creating a sharedObject to...

    you can do this by creating a sharedObject to indicate the menu position.
  24. Replies
    5
    Views
    604

    this might sound ridiculous, but did you wait...

    this might sound ridiculous, but did you wait long enough? =D 1.5M might take a while if you got slow connection.

    maybe you should add some kind of loading progress bar in the movie to see whether...
  25. Replies
    2
    Views
    351

    setInterval itself has a lot of problems,...

    setInterval itself has a lot of problems, especially here when people could mouse over and out back and forth, you lose track of intervalID and what intervals are doing.

    write an onEnterframe...
Results 1 to 25 of 275
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center