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 strongm 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: dambo
  • Order by date
  1. dambo

    passing string between two director movies

    Hello tonyngu You can use a global variable to pass values between your movies. The code should someting like: global typed_in_text on some_handler typed_in_text = member(field_in_movie_1).text end In the second movie it is: global typed_in_text on other_handler...
  2. dambo

    not showing up in browser

    Hello Mathew I've visited your page It works fine I'am using Netscape 4.5 and MAC OS9 Have fun dambo
  3. dambo

    director new window?

    Hello Marshy The gotoNetPage-command can use an optional parameter which will open a new window. It's something like gotoNetPage URL, frame The problem with this is that IE5 under WIN2000 (and only this combination) will open the new window extremly slow (sometimes it needs more than a...
  4. dambo

    how 2 pause the scene during paused Quicktime?

    Hello nowall You've mixed up the handlers! Here's your code: on mouseDown me sprite (61).movieRate = 0 -- Next line should be end mouseDown on exitframe if sprite(X).movieRate = 0 then go the frame else nothing end if end exitframe end -- This end can be cleared I think that's the...
  5. dambo

    how 2 pause the scene during paused Quicktime?

    hello add the following lines to your pause button's script: on exitframe if sprite(X).movieRate = 0 then go the frame else nothing end if end exitframe This should help have fun dambo
  6. dambo

    How do I type a vertical bar symbol for a menu ?

    For all who want's to know: On a MAC it is 'alt' 7 have fun Dambo
  7. dambo

    Image Map Problem in Netscape

    I've visited your site with netscape on a MAC ;), it works well. Just the parts of your image map are working well. But i think it's a bit great (some 400K to download). The page is viewed after the complete download and it takes some time. Have fun dambo
  8. dambo

    Can I Run Text Across a Quicktime Movie?

    Hello Frederik I think the problem is that your QT-Movie has the property to be drawn directly to the stage. This would cause that all other sprites lay behind the movie. You can change this property in the info-window for the movie. If you uncheck this, maybe your problems will vanish, but...
  9. dambo

    mystery of selection

    I am building a shockwave-movie which contains a textmember (not a textfield). This textmember is editable so you change some of the textproperties such as fontstyle, font alignment and so on. Now my problem: If i select only some of the letters and change the properties, the marked selection...
  10. dambo

    Font list of users system

    Is there a way to get a list of the fonts the user has installed on his system? I need it fort a shockwave film, but it doesn't matters if there is a way by using javaScript, plain html, shockwave or something else. Many thanks dambo
  11. dambo

    email hyperlink in director

    Hello directorguy No, I still haven't found a way to open Outlook without IE. Sorry. Have fun dambo
  12. dambo

    Mailto with auto subject inserted

    Hello Darrenb! Try the following text: mailto:name@server?subject='subjectText' This is the syntax used in Director but i think it works as wall in a browser. Hope this helps Have fun dambo
  13. dambo

    I have a problem with the background of a FLASH movie

    I have looked up your page but I haven't any problems with the colors. I've used Netscape 4.7 on a MAC. Maybe you should use only 'Web-save-colors' to be sure that all Browsers show the same colors. Hope this helps Have fun Dambo
  14. dambo

    gotoNetPage and Windows2000

    Sorry, have forgotten my e-mail adress uwe.dambrowski@dac-planet.de
  15. dambo

    gotoNetPage and Windows2000

    I have problems using gotoNetPage under Windows2000 with IE5/5.5 I try to open a new page from a shockwave-movie in a new Browser-Window. But using IE /Win2000, the browser freezes for a long time (sometimes up to several minutes). I call the page with "gotoNetPage adress, target". It...
  16. dambo

    flash and and texts in dreamweaver

    I don´t know if this works but try to use different Layer. Put the Flash-Movie into the lower Layer and the text in the upper Layer. Hope this works
  17. dambo

    email hyperlink in director

    Here is some Code that runs very well in Director 8 on mouseUp set the exitLock to true goToNetPage ("mailto:e-mail_adress") end on mouseleave me set the exitLock to false end put this behavior to a button of your choice. You can put some text to the subject field of the mail...
  18. dambo

    how to make a link from one shockwave movie to an other one?

    Try the following on handler loadNetId = preLoadnetThing("movie2.htm") repeat while not netDone(loadNetId) end repeat if netError(loadNetId) = "OK" then gotoNetMovie("movie2.htm") else go the frame end if end handler there movie2.htm is the...

Part and Inventory Search

Back
Top