Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. msteggo

    Resize loaded jpg in movieclip

    I do certainly agree with you on the jpeg scaling for the most part. That said, I also believe that too many situations exist where the conveniences far outweigh the quality-loss, to fully trash the idea. As a matter of fact, I just finished a medium-scale project where scaling not only...
  2. msteggo

    Resize loaded jpg in movieclip

    You can easily resize the clip the jpeg is loaded into. Keep in mind, you must wait until the jpeg is finished loading before adjusting. One way to do that is to use the MovieClipLoader class which is available with Flash 2004. var mcl:MovieClipLoader = new MovieClipLoader(); var...
  3. msteggo

    Have other buttons disappear when over one

    Given that button1 and button2 have the same parent, button2.onRollOver = function() { this._parent.button1._visible = false; } button2.onRollOut = function() { this._parent.button1._visible = true; }
  4. msteggo

    port connections

    Take a look at the XMLSocket class. There are some constraints required on the server-side, but after tackling those, this seems to be a viable solution to your problem.
  5. msteggo

    transform an externally-supplied image

    As far as I've researched, even the authoring environment of the latest flash (mx 2004) does not allow you to distort any symbol (movieclip, textfield, button, graphic). Distortion is allowed only on non-symbol elements such as raw, ungrouped graphics. It is possible to skew anything during...
  6. msteggo

    How to dynamically set registration point of a symbol?

    Thanks for answering by the way. I have a complex animation that involves multiple clips and masks, and the math involved in calculating the positioning would be greatly simplified if I had control of the registration points. Some of the clips load jpegs, so I have even less than the normal...
  7. msteggo

    How to dynamically set registration point of a symbol?

    I need to know if it's possible to set the registration point of a movieclip with actionscript? Anyone know? Thanks ahead of time, Mike
  8. msteggo

    If Loop

    there are 3 errors in your code in context: // Problem: declaring while incrementing and not when instantiating to value 0 shake = 0; // Solution: var shake = 0; // Problem: operators are reversed var shake = +1; // Solution: shake++; // (or shake += 1); // Problem: using assignment and...
  9. msteggo

    Packaging and cyclic class referencing problems

    Anyone know of a good source that shows a good solution to these errors:? "The class <classname> could not be loaded...", "The class <classname> conflicts with the previously loaded class <classname>..." I'm having a heck of a time trying to implement some design patterns, like Observer and...
  10. msteggo

    Min' screen resolution and button help 2 q's in one...

    One common solution to the resolution issue is centering the content, so while small resolutions don't have to right- scroll, larger resolutions see the site nicely in the middle. As far as those buttons are concerned, to compensate for that, I usually just make movieclips with button...
  11. msteggo

    Bouncing Balls Collision

    I would use the hittest method to test if any of the balls have collided. I believe you'll need to place the collision testing code in the parent timeline, since the tests are made BETWEEN movieclips...for instance testing collision between ballA_mc and ballB_mc might look like this: // main...
  12. msteggo

    Bouncing ball as navigational button

    One solution would be to have the bouncing balls collide, perhaps. This prevents any link overlap. And the user is not put in the dark on how to link. There are two possible problems with changing how the links work. 1) Modifying linking behavior stupefies and confuses the untrained user...
  13. msteggo

    DataSets in .NETcf?

    I appreciate your reply, friend, and am on my way to designing my own dataset. Mike
  14. msteggo

    DataSets in .NETcf?

    Just for kicks, i built an application that uses DataSets to run on my Pocket PC. I was told that DataSets weren't supported by the .NETcf, but my application runs fine...Did they patch that, or am i fooling myself? Mike
  15. msteggo

    Passing arrays of objects to and from webservices...

    Thanks all for your replies. I will heed your advice and send up xml... Mike Lost, but happy in the bliss...
  16. msteggo

    Passing arrays of objects to and from webservices...

    I am using .NET 2003 and the c# standalone language to develop a pocket PC application and I make calls to a middleware server through webservices made from the same language. My question is simple...How do I pass arrays of Objects to and from the webservice? Mike Lost and loving it...
  17. msteggo

    Masking dynamic text fields

    okies....i'll try to be more clear next time..=)
  18. msteggo

    Masking dynamic text fields

    I actually found the answer to the problem...With dynamic and input fields, the font outlines are not automatically embedded into the swf file, due to the dynamic nature of these components. So, masking is not possible, according to Macromedia...All i had to do was embed the font, and voila...
  19. msteggo

    Masking dynamic text fields

    I used the test player from the Flash MX developer tool... Mike
  20. msteggo

    Masking dynamic text fields

    Is there a way to mask dynamic text fields? I made 2 movieclips on 2 different layers, the lower clip containing a dynamic text field. I attempted both design-time masking with layers as well as run-time masking with the setMask() method, but the dynamic text field still bleeds through.. Mike...

Part and Inventory Search

Back
Top