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 bkrike 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: seantuk
  • Content: Threads
  • Order by date
  1. seantuk

    string stored in shared object on media server

    i'm new to media server, so it's just a simple noob question. i'd like store a string in a persistant shared object using media server. i don't really know what the limitations of media server are, but it sounds like it should be quite simple. i guess i'm looking for something like: ////on...
  2. seantuk

    automatic country (or similar) detection

    i heard there was a was to make flash automaticly detect a clients localazation, and perhaps even use this to automatically load country specific xml files. is this true? is even nearly true? where should i be looking to learn more about this? is there an exmaple somewhere? ta
  3. seantuk

    Mac Mighty Mouse

    i have a mac might mouse that i'd like to work fully on win xp. if you just plug it in, and use the drivers that come with windows, it can't scroll left to right, and the side buttons do nothing. does anybody have any suggestions as to how i would get full functionality from this mouse? are...
  4. seantuk

    server side gif creation

    what's out there for people who wish generator were still suported?
  5. seantuk

    Generator alternative(s)

    now that generator isn't supported, what else can i use to make a gif dynamicly server side? i heard flash remoting can do it, but i can't find any details on this on the macromedia website.
  6. seantuk

    forced download - on ie

    i'm writing some code to download a jpeg. the jpeg is passed in the url PictureLoader.aspx?picture=images/image.jpg there is nothing in the aspx file except <%@ Page language="c#" Codebehind="PictureLoader.aspx.cs" AutoEventWireup="false" Inherits="MySolution.PictureLoader" %> here is the...
  7. seantuk

    HTML stored in an XML file

    the content for a site i'm building is stored in xml files, so that it can be used for the no script/flash version of the site, and the full version. the xml file looks like this: <?xml version="1.0" encoding="iso-8859-1"?> <siteContent id="tester"> <html id="sample"> some text </html>...
  8. seantuk

    XmlNode attribute - probably quite an easy one this

    i have this xml <html id="sample"> some <i>text</i> </html> and i want to read the value of id. i thought this would do it, but it doesn't XmlDocument contentFile = new XmlDocument(); contentFile.Load(Server.MapPath("Index.xml")); foreach(XmlNode node in contentFile.ChildNodes) {...
  9. seantuk

    engine noise

    i'm making a racing game. i want to have a half decent (or better) engine sound. when you accelerate, i want the engine sound to change. i want to do this by speeding up the sound (so it goes faster, and more high pitched), and also increasing the volume. the volume is simple enough, but i...
  10. seantuk

    Virtual Desktop Size

    My graphics card sets the actual screen resolution and the vertical desktop size to different sizes on my tv output at certain resolutions. what this means is that the window has to scroll to show the entire desktop area. is there a utility you know of that can give me control of both screen...
  11. seantuk

    dual head - widescreen telly

    i have a ti4400. i have a regular monitor running from the vga port, and a widescreen telivision running from the rgb port. i don't seem to be able to persuade my computer that my telly is widescreen. i'm not bothered whether the display is cloned, or if i use an extended desktop, but i want to...
  12. seantuk

    Regular Expressions - replace

    the solution to this is probably quite simple, but i'm not very good with regular expressions. i have this method public static string removeString(string target, string before) { return after;//no target in my before } how do i use regular expressions to remove all occurences of 'target'...
  13. seantuk

    Automatically moving mc

    i have a class that extends MovieClip. is there a 'onEnterFrame' method or soemthing i can override to cause it to do something repeatedly - eg, move a little on every frame?
  14. seantuk

    align right in dynamicly sized div

    i have a page with three things on it. at the top is a ul; bellow that a swf, of an unknown width; at the bottom is a paragraph of text. all of the content needs to be centered down the page, in a column as wide as the swf. the ul needs to align right (so it sits just above the top right corner...
  15. seantuk

    good SOFTWARE for CORRUPT FILES

    my phone has just corrupted a load of files on its trans flash. i can connect the phone to a pc and see the disk (it connect as an external mass storage device, like a pen drive). i'm going to get the phone replaced in the next few days, but when i have a working one, with my still corrupt disk...
  16. seantuk

    StreamReader.Close is leaving the process open

    i am having a problem using files in my c# aspx prog. take a look at the code snippet ArrayList fcontents = new ArrayList(); { StreamReader sr = new StreamReader(filepath); while(sr.Peek() != -1) fcontents.Add(sr.ReadLine()); sr.DiscardBufferedData(); sr.Close()...
  17. seantuk

    recoving installed software

    i just destroyed my installation of windows. it looked like it was gonna need a complete format and reinstall, but i decided to install it over itself, so at the very least i could easily work out what i already had installed. i now have an operating system that isn't aware of all the lovelly...
  18. seantuk

    can't read from, then write to the same file

    i have a method that uses streamreader to read from a file, then closes it. it then uses streamwriter to write a new file. it is possible for the streamreader and streamwriter to want the same file, but when they do, the streamwriter can't open the file because it is still being used by another...
  19. seantuk

    general property changing

    is there a way i can read the property of any alement in my asp page? the property i#m currently trying to read is the value property in this input <input type="hidden" name="MyContent1" value="start value"> ideally i'd like a system that allows me to read it with something along the lines...
  20. seantuk

    hidden parts (C#)

    i have an aspx page, that has two sections to it. the first section (the first half of the page - mostly text, and a couple of buttons) should be visible straight away, but not the second section. when one of these buttons is pressed, i want the first section to dissapear, and the second section...

Part and Inventory Search

Back
Top