A Flash Developer Resource Site

Search:

Type: Posts; User: PrimalSniper

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. textHeight is the property you need to check,...

    textHeight is the property you need to check, so...



    if(textfield_txt.textHeight < 300){
    scrollbar._visible = false;
    }else{
    scrollbar._visible = true;
    }
  2. Using javascript in the getURL command should...

    Using javascript in the getURL command should work, I've used this method before. Maybe something is wrong in the javascript function, if it allows to show the div, but not hide it (and if it was...
  3. full-browser flash resizing / image scaling

    Hi everyone,

    I am stuck on this 1 part for a site im building.

    I need to calculate the given area so it's a number that can be used for xscale,yscale (or if you know a way to just set the...
  4. Quite a few ways I would think. 1. If it's...

    Quite a few ways I would think.

    1. If it's loaded directly into your timeline, put a gotoAndPlay(1); action on the end frame.

    2. If it's loaded externally, I think the audio object has a way to...
  5. Replies
    24
    Views
    25,966

    Try this elliot, var list =...

    Try this elliot,



    var list = fileRefList.fileList;
    var item:FileReference;

    button.onRelease = function(){
    list.push(item);
    }
  6. Replies
    2
    Views
    449

    In Flash, "Help > Flash Help" -> search for...

    In Flash, "Help > Flash Help" -> search for "FileReferenceList", select the "FileReferenceList" function on the left and use the example on the page that loads to the right.

    I used that and...
  7. Replies
    3
    Views
    674

    I'm not concerned about the PHP source, it's...

    I'm not concerned about the PHP source, it's impossible to get server-side code unless they hack the server or w/e...I'm just concerned about someone decompiling the CACHED swf, finding the php link...
  8. Replies
    3
    Views
    674

    sendAndLoad() security

    Hey everyone,

    I've created a flash app that sends and loads information using LoadVars.sendAndLoad()...uses a PHP file to grab the info from my database. My question is...if someone decompiles my...
  9. Convert percent to time - FLV seek bar

    Hey guys,

    I am having trouble getting my seek bar for the flv player I made.

    This is the code I have right now...it's just the onEnterFrame function that needs to convert the correct time from...
  10. I usually contain all my actions in 1 root frame,...

    I usually contain all my actions in 1 root frame, then call the different levels from it. Put this where your NetStream and NetConnect stuff is. For the current time, you can use stream_ns.time;...
  11. Replies
    5
    Views
    1,518

    Yes. The onMetaData function wasn't introduced...

    Yes. The onMetaData function wasn't introduced until flash 8 anyways, so any older versions won't be able to use it. I don't use components so I'm not sure. Look at the parameters, there has to be a...
  12. You can just compare the current time to the...

    You can just compare the current time to the duration of the FLV...

    if(currentTime == duration){
    //gotoAndPlay() stuff here
    }

    I don't really use components though, so you will have to...
  13. Replies
    5
    Views
    1,518

    Yes. I don't know if it's possible to directly...

    Yes. I don't know if it's possible to directly access the value, but this is how I did it...

    // get duration of video
    var durTime;
    var currentTime;
    var duration:Number;
    var dur_seconds:Number;...
  14. Replies
    0
    Views
    358

    Simple Flash Drop Down Menu

    Hey everybody,

    I am trying to make a drop down menu but I am having a difficult time since my main menu buttons are right beside each other like this:...
  15. Replies
    3
    Views
    516

    can nobody help me? I wouldn't have come on here...

    can nobody help me? I wouldn't have come on here to ask, since it's a school project, but I am totally stuck. I have tried so many different ways to get it working but have failed.
  16. Replies
    3
    Views
    516

    Flash and XML

    Hey guys, I am learning XML connecting with Flash but I am having a hard time with it. I have included a (.rar) file with all the contents of my project. I have an XML document. Currently, it loads...
  17. Replies
    6
    Views
    718

    Hey Dunc, Thank you, that's exactly what I...

    Hey Dunc,

    Thank you, that's exactly what I needed. That's what I had too! heh. Except I was setting the variable to true on some of the functions and then saying if(isPressed == true){blah blah}....
  18. Replies
    6
    Views
    718

    Hmm, thats doesn't work, I didn't think it would...

    Hmm, thats doesn't work, I didn't think it would either. My script is a class, an external actionscript file (Buttons.as). I know I need a variable and if statements im just not sure how to do it, my...
  19. Replies
    6
    Views
    718

    Button Class

    Hi everyone,

    I have a Button class I made, which is Buttons.as and I link that to each movie clip in my menu.fla file. It works how it is setup right now, but I need to make it so when I click one...
  20. Make 2 cents per search (40 searches max per day) Thats awesome!

    Hey guys. My friend showed me a sweeeeeet way to make some money on the net. All I ask is that you just register under my referral link (I will get as much money as you make but it doesn't subtract...
  21. Replies
    0
    Views
    463

    Arrow Feedback Navigation

    Hi. I have this script that moves a movieclip to the link that was clicked on. This works perfectly but I am having problems getting the "button" (which is really a movieclip) to actually do...
  22. Replies
    8
    Views
    465

    since when is their any coding, if thats what u...

    since when is their any coding, if thats what u really mean, in photoshop?? I haven't seen any coding done in photoshop.
  23. Replies
    6
    Views
    408

    when making the container movie clip, when in the...

    when making the container movie clip, when in the convert to symbol window, look at Registration. You will see some squares. Click the top left one, then it will load the top left part of ur loaded...
  24. Replies
    3
    Views
    540

    Change all the _x's to _y's if you want it to be...

    Change all the _x's to _y's if you want it to be vertical. And change the onRelease to onRollOver. You can take out link1.onRelease.gotoAndPlay(Scene2,1);
    cuz its not working, i was just playing...
  25. Replies
    2
    Views
    370

    thx, im tryin to use it without external .swf's....

    thx, im tryin to use it without external .swf's. instead im using mc's like home_mc, about_mc, etc... Just changed the setting where it says loadMovie(_root.nextMovie, _root.content); to...
Results 1 to 25 of 50
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center