A Flash Developer Resource Site

Search:

Type: Posts; User: alotan

Page 1 of 20 1 2 3 4

Search: Search took 0.28 seconds.

  1. Replies
    4
    Views
    643

    if u have 100K clients calling to get update it...

    if u have 100K clients calling to get update it will kill the server.

    you need server that can push, media server can push, and you can develop in action script.

    u can use red 5 and develop in...
  2. Replies
    4
    Views
    643

    for that flash media server was created, u can...

    for that flash media server was created, u can call the client from the server, instead of interval call from the client

    search "live chat flash media server" in google
  3. Replies
    1
    Views
    407

    anyone?

    anyone?
  4. Replies
    1
    Views
    407

    image size or stage size

    hi everyone

    i am new to AS 3, so please try to help me.

    i want to create a movie that has an image inside.
    the image i load dynamic, and i get two params: height and width for the image.

    if...
  5. Replies
    1
    Views
    822

    anyone?

    anyone?
  6. Replies
    1
    Views
    822

    row of checkbox components

    hi

    i am trying to create a row of checkbox components.

    the problem is that when i want to put the secound checkbox i get 5 as the width of the first checkbox, and then i cann't know where to...
  7. Replies
    9
    Views
    511

    frame 1: var mouse_x = _xmouse; frame 2:...

    frame 1:
    var mouse_x = _xmouse;

    frame 2:
    this.onEnterFrame = function(){
    if ( mouse_x > _xmouse ){
    nextFrame();
    }else{
    prevFrame();
    }
  8. Thread: Gamepad input

    by alotan
    Replies
    1
    Views
    925

    please explian what exactly do u want

    please explian what exactly do u want
  9. that will work

    that will work
  10. SpaceInvaders.prototype.check_game_over =...

    SpaceInvaders.prototype.check_game_over = function( )
    {
    // check if the player has run out of lives
    if (this.player_lives <=0 )
    {
    if ( this.score <=500 ){
    ...
  11. Replies
    1
    Views
    373

    u can do all of them. u can use the big one to...

    u can do all of them.

    u can use the big one to load the small one and vice versa.

    u need one of them to call the other.
    there are two ways to load movie, one the a MC, and the other to...
  12. Thread: Hex to RGB

    by alotan
    Replies
    4
    Views
    632

    what you need to do is change the base from hexa...

    what you need to do is change the base from hexa to octal.

    here is a site that will help u:...
  13. Replies
    21
    Views
    1,172

    put the fla

    put the fla
  14. Replies
    1
    Views
    461

    attachVideo_btn.onRelease = function () {...

    attachVideo_btn.onRelease = function () {
    step2_ns.play("diffrent_movie.flv");
    }
  15. Replies
    4
    Views
    599

    i don't know myspace, so i cann't know what u can...

    i don't know myspace, so i cann't know what u can and what u cann't

    object tag is not the point, the div with z-index is the point.
  16. Replies
    21
    Views
    1,172

    you can put it on a button press or simply on the...

    you can put it on a button press or simply on the time line, it doesn't matter
    simply put it on the main movie
  17. Replies
    1
    Views
    616

    no, u can open the first page, and make a button....

    no, u can open the first page, and make a button.
    when the user press that button just then iopen to full screen, this way IE will not block u
  18. Replies
    1
    Views
    579

    if you use AJAX u can use httpxmlrequest in...

    if you use AJAX u can use httpxmlrequest in flash.

    if this ne works:
    my_btn.onRelease=function(){
    getURL("javascript:mypage('content.htm', 'leftcolumn')");
    }
    simply change it to:...
  19. Replies
    1
    Views
    726

    stopAllSounds()

    stopAllSounds()
  20. Replies
    21
    Views
    1,172

    write on the first frame: var is_playing =...

    write on the first frame:
    var is_playing = false;

    when u start the music, check if this var is false or true;

    if ( is_playing == false){
    music.start();
    is_playing = true;
    }
  21. Replies
    4
    Views
    599

    put your flash object in z-layer (in the html...

    put your flash object in z-layer (in the html file)

    for example:


    <div id="Layer3" style="position:absolute; left:155px; top:352px; width:443px; height:80px; z-index:1" >
    <object...
  22. Replies
    2
    Views
    634

    i hope i got it right you have a secound array...

    i hope i got it right
    you have a secound array for the title bar, you need to change the values
    so it will be according to your wish
  23. Thread: [F8]Percentages

    by alotan
    Replies
    5
    Views
    443

    so put a dynamic text box that will show you the...

    so put a dynamic text box that will show you the value
  24. Replies
    4
    Views
    427

    the fla part was good, the html no. you need to...

    the fla part was good, the html no.
    you need to put the script in your html file, the one thet you get when you press publish in flash.
  25. on(|EnterFrame){ _root.closer_mc._x = Xcenter -...

    on(|EnterFrame){
    _root.closer_mc._x = Xcenter - _xmouse * 2 ;
    _root.closer_mc._y = Ycenter - _ymouse * 2;
    _root.far_mc._x = Xcenter - _xmouse ;
    _root.far_mc._y = Ycenter - _ymouse;
    }
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