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

    Dynamicly modify installer

    Hi, I want to be able to create custom versions of an installer on my server. I.E swap in a user created JPG image. Is this possible at all, im hitting a blank with google. Regards Pete www.freesome.com Digital Soma
  2. p3t3

    xml.send in query string form ide

    Hi All, Using the IDE to debug an app which uses XML.send("processXML.php","_blank"); The script expects the data in the POST, but flash seems to be placing it the Query string, but only form withi the IDE. I guess this makes sense as Im not within a broswer... but is there a way around...
  3. p3t3

    Obtain domain Name

    Hi All, I need to obtain the domain name that a shockwave movie is running from, i.e http://www.mydomain.com, or indeed the entire url for a movie... I looked and looked but cant find anything, can anyone help, or will I have to do some javascript trickery from the HTML...? Thanks... Pete...
  4. p3t3

    on(Press) == onPress???

    If you have a MC instance with a on(press) handler set at design time. You then duplicate that clip with actionscript. Now, is there a way to change the on(Press) handler of the new copy. newMC.onPress = function() {trace("oioi");} seems inefective, and the original on(Press)...
  5. p3t3

    MX 2004 xPath

    Hi, Trying desperatly to convert a Firefly based application to MX PRO 2004, but can't find any documentation for the xpathAPI ... I HAVE found the XPATH supportd syntax list for the DataBinding Component, but WHERE is the documentation for the methods of the API...??? Google is silent on...
  6. p3t3

    simple tree class

    Hi, I have a simple tree class, class mTree { var $value = null; var $children = array(); function mTree ($value) { $this->value = $value; } function addChild ($value) { $aux_node = & new mTree ($value); $this->children [] =& $aux_node...
  7. p3t3

    CDONTS where is it?

    Hi, Just been given a new iis5/win2k server to install a ASP web app on. The Network bods refuse to install the SMTP service for IIS, as they belive it will introduce too many security holes... My question is, I still need to use CDONTS to send email, is it possible to install this...
  8. p3t3

    color.setTransform(??????)

    code... myColor = new Color(this.geezaBody); myColorTransform = new Object(); // Set the values for myColorTransform myColorTransform = { ra: '30', rb: '0', ga: '30', gb: '0', ba: '30', bb: '0', aa: '100', ab: '0'}; myColor.setTransform(myColorTransform); fine, makes an object pale. But ive...
  9. p3t3

    Newbie java/OO question

    Hi, I have a basic question about style. When writing a new object is it common to give the object a load/save method, which transfers a whole instance of the object to/from the database, or, would it be more usale to update each property individualy if/when they change? Thanks in advance...
  10. p3t3

    VBA insert bullet

    Hi, Can someone tell me how to insert a bullet point using VBA office automation (VBSCRIPT) into a word document. I have the word doc open allready, and can insert text fine. Thanx. PeteSK www.freesome.com Digital Soma
  11. p3t3

    VBA insert bullet

    Hi, Can someone tell me how to insert a bullet point using VBA office automation (VBSCRIPT) into a word document. I have the word doc open allready, and can insert text fine. Thanx. PeteSK www.freesome.com Digital Soma
  12. p3t3

    ASP to generate .DOC (Server side)

    Hi, We have a number of word templates which contain a number of bookmarks. At present I have an ASP script which generates a HTML form containg dynamic data. A vbscript function on the client machine then opens word with VBA office automation and replaces the bookmark values with the form...
  13. p3t3

    Servlet thread for periodic task?

    Hi, I have a web application in which I need to run a task periodicaly at a fairly long interval, say every three hours. I dont have the ability to use any system task scheduling. I have considered starting a seperate timer thread when the application starts, which will achieve this. My...
  14. p3t3

    Different DB Connection

    Hi All, I have three seperate Databases, Development Test Live And three corresponding web sites... When coding by hand I had a little include which built the connection string. This was different for each site obviously. Please can some one tell me how i can do the same thing in...
  15. p3t3

    Linebreaks in XML

    Hi, Im succesfuly creating an XML file from an ASP script using XMLDOM. This works fine, and the resulting XML can be viewed fine in IE. However, when manualy editing the file, there are no linebreaks between elements. IS there a simple way to add linebreaks without breaking the XML? Thanks...
  16. p3t3

    Infor from outlook

    I have a an Access Form - which using VBA creates a task entry in outlook. Is there anywat I can inform access when this entry is complete..? set objJedi[skyWalker].Aniken = FatherOf(useThe.Force(objJedi[skyWalker].luke))
  17. p3t3

    Hyperlink to MDB file

    I have a hyperlink to a MDB file on a local filesystem , it takes the form of file://t:\51_deg~1\engine~1\system~1\applic~1\DPRS.MDB I need to specifiy some startup data which I would normaly give after the /cmd switch... and then access throught the Command() action... can I add this onto...
  18. p3t3

    Passing a reference to a control to a function

    I have a form with a control "ctrl1" of type textbox. I wash to pass a reference to the control to a function, then allow the function to update the control, i.e sub func(ctrl as control) ctrl.value = "thats the one!!" end sub but, when i call the function i.e...
  19. p3t3

    Hyperlink to MDB file

    I have a hyperlink to a MDB file on a local filesystem , it takes the form of file://t:\51_deg~1\engine~1\system~1\applic~1\DPRS.MDB I need to specifiy some startup data which I would normaly give after the /cmd switch... and then access throught the Command() action... can I add this onto...

Part and Inventory Search

Back
Top