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 Chris Miller 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. MukeshMak

    MS SOAP Toolkit - Using SSLClientCertificateName

    Hi all, I know that the SSLClientCertificateName property is used to establish an SSL connection with a webservice. ie: Connector->property["SSLClientCertificateName"] = "CURRENT_USER\\MY\\MyCert" where MyCert is the Common Name of the certificate stored in the Personal IE...
  2. MukeshMak

    Passing Arrays to C++ DLL Functions

    Hi all, I'm trying to get a C++ dll to fill an array that has been passed to it using VB. I use the following code to test the function: ******************************************************* ' Declare the C++ DLL Function Private Declare Function test Lib "test.dll" ( ByRef...
  3. MukeshMak

    Using Class Variables as Default Parameters

    Hi all, I'm trying to use class variables as default parameters in my C++ code but get the following error: var_A : use of member as default parameter requires static member To illustrate my problem here is an example class: class exampleClass { private: int var_A; public: int...
  4. MukeshMak

    JCE Extension Error

    Hi all, I've just installed JCE 1.2.2 on JDK 1.3.1, as an extension to test some console based cryptographic applications. Although the java code compiles it refuses to run and terminates with the following error: Exception: java.lang.SecurityException: Cannot verify JCE extension...
  5. MukeshMak

    Adjusting Dynamic Text Boxes

    Thanks oldnewbie and bubu. Thought that was the case but... I guess I will have to be more imagniative and do it the hard way. Later.
  6. MukeshMak

    Adjusting Dynamic Text Boxes

    Hi all, I was wondering if actionscript (flash 5) could be used to change the width and height of a dynamic text box at run-time. The idea is to adjust the size to accommodate the inputted text. As far as I can see there is no way to reference the text box object other then to enclose it...
  7. MukeshMak

    Need Help Getting the Relative Frame Number

    Hi all, I'm trying to obtain the scene relative frame number using the _currentFrame variable. When I use the following command to obtain the current frame of the root animation: getProperty("/", _currentFrame"); It returns the absolute frame number (ie the combination of all...
  8. MukeshMak

    Loading graphic objects or JPEGs from Library

    Hi all, Need a bit of help in flash 5. I basically want to dynamically load objects (Jpegs or graphic symbols) stored in the flash library dynamically at run time. The purpose of the action script will be to cycle through a set of symbol names and insert each one seperatly on a different key...
  9. MukeshMak

    Very Large SWF Movies Using Actionscript

    Hi, I've created a rolling title animation using action script which essentially uses a dynamic character field within a movie to motion tween characters held within a text string. The problem I'm having is to do with the fact that the generated SWF movie file is overly large ( fla ~ 23k and...
  10. MukeshMak

    Using variables with gotoandplay cmd

    Hi, Thanks. I tested the code before posting but it didn't seem to work... The only way I could get it to work was if i did the following: gotoAndPlay( 'frameNames[Number(sceneCounter)]' ); where frameNames is an array and the sceneCounter is a variable that determines the current scene.
  11. MukeshMak

    Using variables with gotoandplay cmd

    Hi all, I was wondering if it was possible to use variables with the gotoandplay command in Flash 5? I have loaded an array with frame labels. Elements of the array are chosen and passed to a local variable before being put into the goto command: sampleArray = new array("one&quot...
  12. MukeshMak

    Get line to grow along a path (motion guide?)

    Thanks, Thought of that but wanted to know if there was any way of getting the line to deform along a path... it would be more realistic.
  13. MukeshMak

    Get line to grow along a path (motion guide?)

    Hi all, How do I get a line to grow along an arbitary path or a motion guide in Flash 5. Thanks.
  14. MukeshMak

    Replaying a Scene using Symbol Menus

    Thanks for your help. Solved it usiing variables to control the movie clips themselves. It gives me a bit more control over the symbols themselves. Cheers for the replies
  15. MukeshMak

    Replaying a Scene using Symbol Menus

    Also I'm using flash 5... if that helps...
  16. MukeshMak

    Replaying a Scene using Symbol Menus

    Hi oldnewbie, Thanks for the reply. I don't realy want to reset the whole move. What I want to do is just reset that particular scene as well as all the symbols that were used in that scene. You indicated that I can do this manually for each used symbol. How would I go about doing that? Thanks.
  17. MukeshMak

    Replaying a Scene using Symbol Menus

    Sorry, Should elaborate further... all the symbol movies reset only if I jump to a different scene and then go back to the scene I was originally on... I want the scene itself to reset (with all symbol movies doing so also). Thanks.
  18. MukeshMak

    Replaying a Scene using Symbol Menus

    Hi, Thanks for the reply. In regard to your question... I wanted to use the button elements in the menu movie to reset the scene. I've finally been able to do that... but... although the flash movie jumps to the beginning of the reset scene all symbol movies do not replay... So the question...
  19. MukeshMak

    Replaying a Scene using Symbol Menus

    Hi all, I've got a bit of a problem. I've created two scenes (for simplicity 1 + 2). On 1 I've created a movie symbol that acts as a navigation button allowing me to jump between scenes. Within the menu movie several buttons are located that link to various scenes (on the 'press' mouse event...

Part and Inventory Search

Back
Top