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

    attachMovie problems

    Bill, Thanks for the code. I'll have a look at it tonite or tomorrow night to compare to what pixl8r did. I appreciate all the help and time both of you have given. Mike
  2. motte

    attachMovie problems

    pixl8r, Thanks for your reply and suggestions. I do apologize for the multiple post. I edited this original, but I guess it ended up posting 2x. Onto the code. Thanks for setting me straight about using the variables, not textbox instances. It worked perfectly. I did, however, remove the first...
  3. motte

    attachMovie problems

    Bill, Thanks for your quick reply. Does the movie that I attached need to be in another movie that is on the main timeline. How would that look in code because my movie that I've attached runs fine, except the text doesn't show up. The text file is correct. I can pull data out of it in other...
  4. motte

    attachMovie problems

    Hi all, I'm very new to Flash, MX to be exact, and am having troubles with something. I've tried to research this, but I haven't found any examples. What I am doing is loading up a movie clip dynamically with attachMovie. I have the movie's linkage properties set and I can do everything with...
  5. motte

    attachMovie problems

    Hi all, I'm very new to Flash, MX to be exact, and am having troubles with something. I've tried to research this, but I haven't found any examples. What I am doing is loading up a movie clip dynamically with attachMovie. I have the movie's linkage properties set and I can do everything with...
  6. motte

    HTTP headers, not as string

    You know, I was really dumb on this. This is it here: #!/usr/bin/perl use strict; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $request = HTTP::Request->new('POST', 'http://myurl/http/postto.cgi'); my $response = $ua->request($request); my %headers = %{$response->headers}; foreach...
  7. motte

    HTTP headers, not as string

    naq2, You are working down the right path, but I'm not sure if that is it. We don't have HTTP::Lite installed, and since it has been a while since I used whatever I am talking about, I'm not sure if it was Lite that was used before we upgraded. But I believe it was something else. I think it...
  8. motte

    HTTP headers, not as string

    I haven't had the need for this in a while, but I know there is a function that gets the HTTP headers w/o having to manually parse them. I thought it was with HTTP::Headers. Something as easy as calling a function such as headers() would return an array of headers. But I can't remember how this...
  9. motte

    User's Sharing Decryption Key

    Is it possible for 2 users to share the same pgp decryption (private) key? I have a user that has the private key signed but the other user needs to use it too. I know you can copy public keys amongst keyrings, but can you do the same for private keys? If so, how? Mike
  10. motte

    Need correct XML module

    zadrfle, I actually got what I wanted to work so I don't need to really post any code (I think). What I do find strange is this: Why does the data structure seem to change. Sometimes it will be a hash->hash->array or hash->array->hash. This happened to me when doing 2 different scripts on the...
  11. motte

    Need correct XML module

    zadrfle, I was working with XML::Simple yesterday and it seemed to read in the xml file (with the exception that it turned the attributes and any content of a node into an anonymous hash). If I add a new record, how do I convert the key in that hash that would be an attribute back into an...
  12. motte

    Need correct XML module

    Hi everyone. I am looking for an XML writing module that will do what I need. I need to write contents of a log file daily to one log file. I tried using XML::Writer but it always appends the <?xml> declaration tag and opening and closing root tags. Is there any package that can add xml to a...
  13. motte

    Perl &amp; Email

    Hi everyone. Its been a long time since I had a problem. But here it is. I'm pretty sure the problem is in Outlook or email in general but I can't figure it out. I have to send an email of 1223 characters long in the body. When I do this, and look at it in something like PINE, the email reads...
  14. motte

    Can't use namespace problem

    Hi everyone, I've done this in asp.net using vb, but can't get this done in c#. I am not using visual studio. This is done in a text editor. What I have is a .aspx page with a .cs code-behind. The .aspx page inherits the .cs file like so: <% @Page inherits=&quot;MIKE.MyWebClass&quot...
  15. motte

    Creating/Writing to xml file

    jfrost - that's an interesting way of handling it. I believe your reason why my code was failing is correct. I had the same feeling. I'm going to take a look into the threading in .net. Did some multithreading in java before...would like to check on it in vb.net/c# Mike
  16. motte

    Creating/Writing to xml file

    I should've posted that I got an answer from somewhere else. The fileInfo objects Create() method returns a FileStream object. Closing that object solves the problem. Mike
  17. motte

    Creating/Writing to xml file

    Hi everyone - I have a problem when I first try to create an xml file and write to it. If the file doesn't exist, I create the xml file, then I write to it using a dataset. The problem is, if the file doesn't exist, I create the file then when I try to write to it, an exception is thrown saying...
  18. motte

    Importing a custom namespace problem

    AtomicChip, Thanks for the reply. That sounds like an idea I must try. Mike
  19. motte

    Importing a custom namespace problem

    Link9, Thanks for the response and for the advice. I'm learning both, VS.net and its languages in notepad as well. This particular project was started before we had a license for Visual Studio so we are finishing it up this way. But I did figure it out: <%@ Assembly...
  20. motte

    Importing a custom namespace problem

    Hi all, I am trying to import a custom class into a .aspx file. These files are not done in VS.net (just a text editor). The .aspx file has no code-behind. Its all in-line. But I want to import a class that I created. The class is called Monitor.cs with a namespace of SiteMonitor. To make is...

Part and Inventory Search

Back
Top