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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by manabenz

  1. manabenz

    On LastEvent - HELP!

    When you stop the sound, store the currentTime of that sound in a varaible. Then when you want to play it again from the last played point, use sound(channelNum).play([#member: member(whichmember), {#startTime: milliseconds, #endTime: milliseconds, #loopCount: numberOfLoops, #loopStartTime...
  2. manabenz

    Detect AVI stop

    the "movieRate" property is much more reliable. put sprite(whichSprite).movieRate Returns 1 or 0 depending on if the movie is playing or not. Mayuresh
  3. manabenz

    Handler Definition Expected Error

    Which Director version are you working with? Which platfrom. Wierd bug actually. Mayuresh
  4. manabenz

    Radio Buttons

    One easy workaround would be to have the selected value in a global and then on each of the radio buttons beginSPrite, check the global's value and set them accordingly. Mayuresh
  5. manabenz

    Search script or xtra

    You can try out the pRegEx xtra here. http://openxtras.org/pregex/ Mayuresh
  6. manabenz

    MX projector for PC

    You can make the stub in ver 8.5 as well. MX is backward compatible with 8.5, so a 8.5 stub should work fine. Mayuresh
  7. manabenz

    Opening Projector File

    There is a way to atleast know where the problem is. Pick the projector.ini file from your program file folder and keep it next to this exe you have got. make sure you rename the projector.ini to the same name as your exe.ini In there there is a setting for showing the full error message. Set...
  8. manabenz

    External Cast questions.

    You would need a xtra for that. You can use something like the castControl or the Cast Link xtra. Mayuresh
  9. manabenz

    Newbie needs audio help

    Glad you got it working. Mayuresh
  10. manabenz

    Newbie needs audio help

    On frame 61 try rewriting it this way: on exitFrame me if soundBusy(1) = 0 then go to "next" go to the Frame end Mayuresh
  11. manabenz

    beginner in need of tutorials

    Well, director-online.com and MM's technotes would be the best place to start. Mayuresh
  12. manabenz

    Password Protection

    Well, you could eaither hard code the password in your code in which case it cannot be changed at a later date, or you can store it on the users system in encrypted form which would allow the authorized users to change their passwords. Encryption can be done in a number of ways. If you can...
  13. manabenz

    Whats the code to create a transparent rollover?

    Avoid putting the above blend code in a repeat loop. That will freeze all your stage interactivity. You can try incrementing the blend value on exitframe. Mayuresh
  14. manabenz

    i need help making a behavior happen

    the "gChoicelist.mental.mindreading" will work when you are working with property lists. You can access properties of a list just like you can with your other objects. So "mental" could be a property of "gChoicelist" and "mindreading" could in turn be a...
  15. manabenz

    Please help with video play back in director

    Have you tried using updatestage? Mayuresh

Part and Inventory Search

Back
Top