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. DGTLguy

    TIP: use "bandwidth profiler" to test SWF "internet" loading

    the "bandwidth profiler" will imitate various internet connection speeds allowing you to test/debug your movie without all the hassle... while testing your movie (Control>Test Movie), select View>Bandwidth Profiler. A graph will display various statistics about your SWF, letting you know...
  2. DGTLguy

    drawing in flash?

    wow... right on target! how do u find this stuff?... much appreciated!!
  3. DGTLguy

    drawing in flash?

    thank you... those links were exactly what i needed... now that i have a working Movie Clip where the user can draw directly on screen, is there a way to: 1. save the final image 2. add "name & email" input text fields 3. send it to through email... or some variation of that... ...thank you...
  4. DGTLguy

    "random" homepage...?

    beautiful... it worked like a charm... i appreciate your help... would you mind explaining that bit of code in layman's terms? just to help me understand the process... if so, thanks in advance, if not... thanks in advance...
  5. DGTLguy

    drawing in flash?

    can someone get me in the right direction? i'm trying to create a "flipbook" style program in flash... i just want the user to be able to draw into the program... that's all... no flipping or animating... (possibly... an "erase" button jus in case they want to start over)... thanks in...
  6. DGTLguy

    "random" homepage...?

    i am trying to create a "random" homepage... i want to have code on the first frame of my movie that tells flash to "randomly" select frame 2, 3, 4, or 5 each time a user visits my site... can anybody point me in the right direction?...
  7. DGTLguy

    need help creating user based "drawing" program in flash...

    what i am attempting to create is a movieclip, where the user is able to directly write (or draw) on the page. once finished, they will enter thier name & email into text fields & press Send. the image (along with thier name & email) would be sent directly to my email. *ideally, it would...
  8. DGTLguy

    Font missing error when opening in Flash MX

    if you received the .fla from someone else then it is simply telling you that you do not have that font installed on your computer. in that case, if possible, you should get the font and drop it in your fonts folder. otherwise more details about your computer would be nice... are you on a Mac...
  9. DGTLguy

    corrupt file?

    asking a simple favor... i downloaded an .fla from flashkit... it won't open in flash mx... i wanted to know if it was a corrupt file or not... if someone can open it maybe they can resave it and upload it for me... any assistance would be appreciated... you can find the file at...
  10. DGTLguy

    unexpected T_STRING error?

    thanks for the replies guys... i made both changes and now I get a new error message: Parse error: parse error, unexpected T_VARIABLE in /home/content/g/3/n/g3nius/html/upload.php on line 12 line 12 is the line of code from Lrnmore: $nwfile = "files/". basename($_FILES['imagefile']['name']);
  11. DGTLguy

    spinning movie or graphic

    \\ try this: function spinRound(speed) {    this.rot = 0;    yourClip.onEnterFrame = function() {       this.rot += Math.floor(speed);       if (this.rot>=360) {          this.rot = 360;          delete this.onEnterFrame;       }       this._rotation = this.rot;    }; } //useage...
  12. DGTLguy

    unexpected T_STRING error?

    i'm getting this error msg: Parse error: parse error, unexpected T_STRING in /home/content/g/3/n/g3nius/html/gallery/eyelash_images/big/upload.php on line 12 my code looks like: <form name="form1" method="post" action="" enctype="multipart/form-data"> <input type="file" name="imagefile">...
  13. DGTLguy

    code doesn't work in explorer...

    Well the flash movie is the main website, it sits in index.html... i'm trying to get various portfolio pieces to popup in another window with no scrollbars, status bar, etc. I'm not sure that would work, putting the javascript function in the HTML of index.html... I have not been able to...
  14. DGTLguy

    code doesn't work in explorer...

    //... okay, i have a button inside a flash movie that onRelease opens a browser window... i placed this code directly on each button to set that windows attributes is: on (release) { Movieclip.prototype.openWin1 = function(url, winName, w, h, toolbar, location, directories, status...
  15. DGTLguy

    Photoshop Version

    its all dependant on the user. i have CS & v7 installed on my Mac. i tend to use 7 more frequently, probably because i'm more comfortable with the interface and it does everything i need it to. also i think its a bit more stable. a handful of times CS has froze up on me for no apparent reason...
  16. DGTLguy

    opening browser window?

    after hours of searching you have sent me to the right place... beam me up captain... i damn sure appreciate it
  17. DGTLguy

    opening browser window?

    i have a flash movie that has a link opening a browser window (html page)... is there a way to have flash tell the window to have no scrollbars, address bar, status bar etc?.... (like a javascript link in a regular html page)...
  18. DGTLguy

    what size should i use for my Website ?

    800 x 600 is a good starting point... remember to use your guides too... they help out a lot when it comes time to pull your images into your html editor (Dreamweaver, GoLive, Frontpage, etc.)...
  19. DGTLguy

    configuring window settings?

    i have a flash movie that opens a 'popup' browser window to a specific url on my server (link.html)... i want this window's size and other attributes specified... i used this code inside the HTML <head> to resize the window: <SCRIPT>  window.resizeTo(375,375);  </SCRIPT>
  20. DGTLguy

    gotoAndStop(frame);? ... won't go to correct frame

    hey i really appreciate u helping me... i got everything working properly... if u happen to know how to open a 'popup' browser window w/ no scoll, address, status bar, etc. at 375 x 375 by clickin on different movieclips within the flash movie that would help a lot... otherwise, i can...

Part and Inventory Search

Back
Top