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: *

  • Users: DianaCL
  • Order by date
  1. DianaCL

    How can I disable the mouse while a movie loads?

    maybe it would be easier to disable all the buttons and menus until the movie finishes loading... the mouse, as far as i know... it's kind of impossible. That's the whole point of interactivity, to have a mouse. So i doubt Flash can disable the mouse events. Diana. icq: 111872918
  2. DianaCL

    Netscape Problem!

    i am just testing this on netscape, but i can't find anyone who has a flash5 player, please tell me if it's working well. I tested it on Iexplorer with the MX player and older palyers. If you have an older player an alert message should pop up and also the macromedia page will open. so, here's...
  3. DianaCL

    How to uninstall Macromedia Flashplayer 5

    http://www.macromedia.com/shockwave/download/alternates/ download the unistaller Diana. icq: 111872918
  4. DianaCL

    Flash Interface W/ PHP Script Question..

    make the form impossible to send if there's nothing in those fields. in the flash interface you probably assigned names to the input text fields, right? (i assume it's Flash MX) or at least names to the variables. Check to see if that string is empty, and if it is, don't send, give back an...
  5. DianaCL

    convert swf to gif/bmp at run time

    That would be possible if the Flash Player could export your swf as a picture, but it can't. So, the only way i can think of doing what you need is with the help of one magnificent key on your keyboard, called PrintScreen. [2thumbsup] Diana. icq: 111872918
  6. DianaCL

    ASP variable read by flash

    oops. the formatting didn't work, it didn't make it red. disregard the inside the code, please. Assume that what's between them is actually red :) Diana. icq: 111872918
  7. DianaCL

    ASP variable read by flash

    Joe, I haven't worked with ASP, but I can tell you how Flash takes a variable from HTML. You think that can help? anyway, here it is: <OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot...
  8. DianaCL

    Script for starting a .wmv video

    I'd recommand a batch file (.bat) where you open the file in media player. The execution command for the .bat can be done in Actionscript. See the many many many answers about executing a file from flash. Diana. icq: 111872918
  9. DianaCL

    for .. in loop, can it give more details?

    an example of what you can do with for ... in suppose you have a movieclip called table and inside it you have many buttons. the actions you want each button to do on rollOver, rollOut, relase and any other event you can put in a single frame, instead of putting them on any button. suppose...
  10. DianaCL

    for .. in loop, can it give more details?

    what do you mean &quot;the whole signature&quot; ? Diana. icq: 111872918
  11. DianaCL

    is there any limit on maximum number of frames or scenes in flash 5?

    http://www.macromedia.com/support/flash/ts/documents/bigflash.htm The magic number A little known fact - a Flash movie can have up to 16000 frames. Exceeding that limit will cause the movie playback to stop. While this limit is rarely reached by most developers, it's possible to have movies...
  12. DianaCL

    control a MC w/ text file

    it would be helpful to know what the text boxes should display and what the code is, but first make sure the variables load before the action taht uses them. don't put the action onClipEvent(load) because any movieclip on the stage will load faster than the variable is read. Preferably the...
  13. DianaCL

    Variable access problems

    use _root.season instead of _global.season use _root.season instead of season wherever you refer that variable use _root.season generally refer all your variables as _root variables if you want them to be seen everywhere. Diana. icq: 111872918
  14. DianaCL

    Interfacing Flash with a DB

    What i have been using is Java Servlets, to work with SQL databases. Unfortunately i can't tell you much about it, because i have somebody else making the Servlets. The easiest way I can think of is communicating with a PHP that queries the database. You'd have to learn a bit of PHP, but it's...
  15. DianaCL

    blank window without borderframe

    ok, sent. but without the graphics, just the window opening. edit the .html file and check the javaScript functions inside, and the edit the .js file and see how the window is made. Diana.
  16. DianaCL

    blank window without borderframe

    it looks great. it's a javaScript file that they include to make the window. you want the script to it? i just saved it. it's too big to copy it here, but give me an address or something and i can send it to you. Diana.
  17. DianaCL

    Centering my movie

    edit the html file. find the <object> tag go just before the <object> tag and place a tag <center> now find the end of the object tag </object> after the </object> place a tag </center> it should be like this: <center> <object> .... </object> </center> Diana.
  18. DianaCL

    script for download msword file

    i have a PC, i clicked the link, and the download window popped up. So, i guess there isn't a problem. I have the choice to either download or open the document from its location. Diana.
  19. DianaCL

    Character Escaping

    ok, maybe i get it wrong but i tried it like this : vartxt=&quot;£=(alt+157) =(alt+155)&quot;; _root.txttxt=vartxt; and it works. (by the way, txttxt is the name of the variable in the text field, not the name of the textfield) Diana.
  20. DianaCL

    How do I unload this movie and load a new one?

    just a suggestion: try loading the movie to _root meaning: _root.loadMovieNum(..); my guess is that the only reason you can still see the previous movie is because you're actually loading the new movie inside it. Diana. diana@cyberslotz.co.uk

Part and Inventory Search

Back
Top