A Flash Developer Resource Site

Search:

Type: Posts; User: sleek

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    408

    You don't actually cut up the JPG... you fake it...

    You don't actually cut up the JPG... you fake it using masks. And yes it is relativly inefficient, but it does the trick. If it does not need to be dynamic, you can do a "break apart" the image and...
  2. Replies
    22
    Views
    1,800

    I don't that it mattered that you called...

    I don't that it mattered that you called setScrollContent before the jpgs were loaded, but it definitly matters for refreshpane.
  3. Replies
    22
    Views
    1,800

    Both are not necessarily needed in all situations...

    Both are not necessarily needed in all situations

    You only need to use getScrollContent if you need a reference to the clip that is being scrolled (for whatever reason). In this case you need it...
  4. Replies
    22
    Views
    1,800

    Sorry I might have confused you more with...

    Sorry I might have confused you more with something I did not explain correctly. Let me try again. This will either clear things up or confuse you even more :) depending on your knowledge of...
  5. Replies
    22
    Views
    1,800

    when you do this... ...

    when you do this...

    scrollpaneInstance.setScrollContent(scrollpaneInstance.createEmptyMovieClip("myContent", 1));

    you are creating an empty MC that the scrollpane will move up and down to give...
  6. Replies
    22
    Views
    1,800

    Ahh yes, sorry I did not catch that before. I...

    Ahh yes, sorry I did not catch that before. I would say it is not discussed in AS refernces because its kind of a common sense thing (although easily overlooked). All of your jpgs need to be loaded...
  7. Thread: help, help, help

    by sleek
    Replies
    2
    Views
    487

    I can give you the answer real quick and easy :)...

    I can give you the answer real quick and easy :)
    http://www.vectadraw.com/

    source gode at
    http://www.cyberfunk.co.uk/

    -s
  8. Replies
    22
    Views
    1,800

    I'm not sure I understand the question but here...

    I'm not sure I understand the question but here is my explaination of how it works..

    getScrollContent method simply returns a refernce to the movieclip that the scrollpane uses to hold its...
  9. Replies
    22
    Views
    1,800

    No problem, Let me know how you make out. I...

    No problem, Let me know how you make out. I think the problem with your approach is that you are creating everything outside the scroll pane, and then trying to put it in when its done. I tried...
  10. Replies
    22
    Views
    1,800

    I've done this before but took a much different...

    I've done this before but took a much different approach. I first set the scroll content to an empty movieclip. Something like this...


    ...
  11. Replies
    6
    Views
    458

    Its not pointless at all. Include and Import are...

    Its not pointless at all. Include and Import are totally different things. Include brings the text file into the flash movie. Class files are compiled first and thus require the "import" command. ...
  12. Replies
    10
    Views
    1,088

    IMG tag breaks scrolling

    I like the img tag support too. I wanted to use it in a scrolling text field when I noticed there was no longer a scroll bar component. This is because text fileds now have a "scrollable" setting...
  13. Replies
    13
    Views
    742

    Just click on the one jmp909 posted. -s

    Just click on the one jmp909 posted.

    -s
  14. Replies
    13
    Views
    742

    you asked "how to use the Vector Art API", and...

    you asked "how to use the Vector Art API", and thats what those tutorials are about. If you want to know more about texture mapping, look at the FLA from this one...
    ...
  15. Replies
    2
    Views
    404

    There are numerous ways to accomplish this. My...

    There are numerous ways to accomplish this. My prefered way is...

    Function.apply(thisObject, argumentsObject)

    See the AS dicitonary for more details.

    -s
  16. Replies
    3
    Views
    500

    Brittany, The change handler should be the...

    Brittany,

    The change handler should be the name of a function you want flash to execute whenever a user picks something in the combobox. This way you can write a function in your own code and...
  17. Replies
    13
    Views
    742

    There are already a few right here at Flash...

    There are already a few right here at Flash kit...

    http://www.flashkit.com/search.php?version=6&term=drawing+api&per=10&cat=tutorials&page=1&x=19&y=12
  18. Replies
    13
    Views
    742

    I didn't say it was impossible, so what exactly...

    I didn't say it was impossible, so what exactly am I wrong about? Also, in my second post, I already pointed out one of the examples you did.

    When I said "Flash cannot manipulate bitmaps in that...
  19. Replies
    29
    Views
    1,473

    Does this not make sense? Is this not the info...

    Does this not make sense? Is this not the info you were looking for? Or has interest in this thread died?

    -s
  20. Replies
    29
    Views
    1,473

    Ok, I'll talk in general about inheritance a...

    Ok, I'll talk in general about inheritance a little and refer to someone elses site for how to implement inheritance in Flash.

    You use inheritance when you have 2 classes that have an is-a...
  21. Replies
    29
    Views
    1,473

    Hi Rip, There is much to learn on this topic....

    Hi Rip,

    There is much to learn on this topic. Far too much to write in a forum messsage, but I can suggest a very good book for you... The Object-Oriented Thought Process by Matt Weisfeld, SAMS...
  22. Replies
    2
    Views
    405

    replace this... myMov = ('_root.movie' +...

    replace this...
    myMov = ('_root.movie' + whichMovie)
    with this...
    myMov = _root['movie' + whichMovie]

    -s
  23. Replies
    5
    Views
    527

    You are correct, SharedObject is for local...

    You are correct, SharedObject is for local storage. You will need to store something on your server if you want all users to see the same thing. You could use a text file, XML or a database.
    ...
  24. Replies
    1
    Views
    498

    First of all GotoFrame is 0 based so you are...

    First of all GotoFrame is 0 based so you are telling it to go 1 frame beyond the last frame. Second, I'm not sure GotoFrame can take a variable as an argument. Even if it does, you have to wonder if...
  25. Replies
    1
    Views
    950

    A movieclip is rotated around its registration...

    A movieclip is rotated around its registration point which is indicated by cross hairs. Place your movielcip's graphical content in relation to that point.

    You cannot directly manipulate this...
Results 1 to 25 of 40
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center