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

    make initial text color last used color?

    it seems that in illustrator, no matter what color you have been working with, the text tool will make any newly created text objects black. i would expect that if the last thing i typed was red, the tool would default to red. its not the biggest deal in the world, but its irritating if, say...
  2. theotrain

    can this hideous query be optimized?

    im using amfphp to connect flash to a database. im having speed issues with the queries, which i assumed was due mostly to the overhead of using amfphp. but i just tried executing my queries and timing them using php only... they are kinda slow but not bad, except one query sometimes hangs...
  3. theotrain

    include a file without breaking nested includes

    in my main directory on the server ive got a bunch of files that use includes to create a page header. the header itself includes information from several subdirectories, like "/images", "/css", "/includes", etc. so now i want to have a page in a different directory use that same header. so i...
  4. theotrain

    mark up string values if they contain certain words

    im making a page to monitor content typed into a kids website. the page just spits out all the new text that has been entered but not yet checked - the monitor can then flag inappropriate content. i would like to highlight curse words to make it easier for the monitor to scan the text. im...
  5. theotrain

    TextField polymorphism?

    ive created an object that extends TextField, let's say "MyTextField". i just want it to be a TextField with a few extra functions. i have a flash component that takes a TextField instance name as a parameter. my goal is to dynamically create a MyTextField and have the component use that, but...
  6. theotrain

    encode high res bitmaps from flash

    im trying to make a high res PDF from a flash movie using AS3. the PDF part seems pretty easy (alivePDF), but the high res part not so much. where to begin? ok, i saw page where the guy described doing this in flex, to capture a high res image of a DIsplayObject. var image:ImageSnapshot =...
  7. theotrain

    using "SELECT AS" alias in WHERE clause?

    i been trying to do this with no success: SELECT title, id, date_posted, MONTH(date_posted) AS month_posted, YEAR(date_posted) AS year_posted FROM blog_posts WHERE month_posted = 8 it seems to be choking on the "WHERE month_posted" part... which i actually want to use with a variable but im...
  8. theotrain

    fckeditor changes quotes - magic quotes problem?

    when i enter code using FCKeditor it changes all my quotes to: "\&quote; so, this: <object height="340" width="560"> becomes: <object height="\&quot;340\&quot;" width="\&quot;560\&quot;"> i found a lot of talk about this on the internets but nothing worked for me. in fckconfig.js i tried...
  9. theotrain

    can't connect to Access db: The specified data source is not defined.

    i just recently put coldfusion on a WAMP install. i tried setting up an access databases as a datasource (which used to work fine in coldfusion on IIS) and i got the following error: Connection verification failed for data source: wfp3241_hmstore java.sql.SQLException: [Macromedia][SequeLink...
  10. theotrain

    determine whether a loading swf is stopped or playing??

    when you load an swf into a movie clip, if the download is slow it might pause. if it does i need to know when it pauses and when it resumes. when you play a video, you've got events launched like NetStatusEvent--> "NetStream.Play.Start", and "NetStream.Buffer.Empty" to help you keep tabs on...
  11. theotrain

    save location of draggable divs

    my javascript is pretty sketchy. i've got someone who wants to do some draggable divs using sript.alicio.us similar to this: http://www.vex.net/~wbell/DerbyCardSort/ that all seems fine, but i wonder is it possible to save the state of a page like that, where you have dragged stuff all around...
  12. theotrain

    flash media server - streaming v progressive?

    i have read that youtube uses progressive download for their videos. but i have also read that you cannot seek to an arbitrary point in the video that hasnt loaded unless you use streaming video... so which is it? i would like for my videos to play like youtube. i dont mind if the user gets...
  13. theotrain

    general flash media server questions

    i think im going to need FMS or Wowza for a site. i want to make sure i understand a few things. you can deliver video in flash without having FMS. i assume the primary advantage of using FMS (to deliver a video) that the FMS video can be skipped to any point on the playhead and start...
  14. theotrain

    java not displaying system language

    all my java apps (and applets) show in mandarin chinese. how is this possible? im running vista. my system locale is set to US english. english is the only language pack i have installed. my browsers are set to show english. everything runs in english on my computer, except java. i have...
  15. theotrain

    record sound in a browser and save on server?

    i want users to be able to record sound in the browser window using their microphones, and have that sound file saved on the server for later retrieval. (format not critical, but mp3 ideal) can this be done using flash media server? are there any alternatives you know about? this would be the...
  16. theotrain

    free tibet! also my computer from chinese characters.

    about a year ago i installed software for learning mandarin on my computer. i since got rid of it but still i have situations where chinese characters insist on popping up and making it hard for me, since i cant read them. my computer shows english 99% of the time, but certain dialog boxes...
  17. theotrain

    one purchase per session?

    im making a checkout page. on a best practices document provided by the payment processor, it says this: if you host a payment form page, implement controls to restrict its use to one authorization per order session. i assume this means fix it so the customer cannot submit multiple orders by...
  18. theotrain

    firefox diplays columns under each other whimsically &amp; without excuse

    ive got a 3 column layout with 3 divs, floated left, next to each other. they are all inside a container div. but the behavior im seeing seems a bit too anomalous to be explained entirely by the css. also note: im using coldfusion templates to show different parts of the pages, so the cf...
  19. theotrain

    extra space caused by cfquery in IE

    i have an cfm page that displays content flush to the top of the browser window, as i intended. BUT when i add cfqueries to the page i get a space between the top of the browser and my content ONLY in Explorer. the only way i dont get the space in IE is to put the queries at the bottom of the...
  20. theotrain

    javascript to manipulate coldfusion variables?

    OK ive got a form with several groups of radio buttons. clicking different buttons should dynamically change a figure on the page. so lets imagine there was a radio button labeled "i want cheese on my whopper" and when you click it it adds 20 cents to your total. (checking "i dont want cheese"...

Part and Inventory Search

Back
Top