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

    Looking for start - Information on Banner Cookie Tracking

    I am looking for a start, some place to find information on cookie banner tracking. I want the script to check the cookie, if expired do not show the banner. etc. thanks
  2. wrighterb

    createTextField Load on Main stage out side movie

    I have this in actions on a movieclip function displayImage() { if(targetRotation>=1453 and targetRotation<=1482) { createTextField("dynamic_txt", 4, 100, 100, 150, 30); dynamic_txt.text = "Here's some text"; loadMovieNum(txtImageURL6.text,2); } The text will not load on...
  3. wrighterb

    Display text field Like you would a movie when called

    I am trying to display a dynamic text block when called at a certain time in a movie. loadMovieNum(bio1.text,3); A text block being loaded into a movie?
  4. wrighterb

    passing url parameters in text doc &amp; giving me trouble

    I have a txt document that I read urls from Text doc. &Link=http://www.blah.com?this=that&that=this It blows up HERE on my & join because of the text doc. What should I do?
  5. wrighterb

    Getting 12 Random Numbers, But I don't want the number to repeat?

    Ok this works great below, I get 12 random numbers and populate a txt doc with information that I get from the database by the random number GREAT, one thing, I dont want the random number to repeat itself ever so each 12 numbers ( that I am getting from the ID field in the database ) have to be...
  6. wrighterb

    asfunction pulling image dynamically

    I have a movie Inside this movie I have another movie and text fields pulling in text from the database dynamically. I created a button, that when pushed will pull the url (via variable from txt doc) of the image and diplay it. Works fine. Everything is dynamic from a database Now I want the...
  7. wrighterb

    Faking out flash on press and enter key

    Look at this http://www.wrighter.com/thisone/ once loaded click on movie anywhere and the hit the enter button The image will load. Not sure why you have to click on the movie first to have the on ("<enter>") work 2nd, I am wondering a different way to do this or fake out flash to do it itself.
  8. wrighterb

    Invoke the enter key when page is loaded

    I want to simulate or invoke the enter key at the bottom of the page. so the actions I ahave set up for onclick in a flash movie run. Does someone have a quick javascript
  9. wrighterb

    on ( press ) to load an image, but I want it to load right away.

    on( press ) { mcImage.loadMovie( txtImageURL.text ); } This loads a url from a database to display an image. How can I get the on ( press ) to press itself on eventload or whatever. I have tried load movies etc
  10. wrighterb

    Load image using the image name from a database

    I do query and set the image name from the database to Image=http://blahblah.com/blah.jpg Now I am trying to pull this into a flash movie as a variable Any Ideas? I get all the text and stuff to load just not the image.
  11. wrighterb

    Trying to load an image

    Loading a image I am trying to load an image 12 times Every time it spins and the number is between 1 and 30 show this image, 30-60 show this image and so on, 60 - 90 etc In the function spin() I need to say if >30 and <60 show this image. Anyone can help? onClipEvent (load) { num =...
  12. wrighterb

    client side content refresh no page refresh

    I have a calendar, I want to switch months a hef"index.html?currdate=nextmonth How can I pass this variable back to the same calendar only update the calendar on the client side, not do a whole page refresh.
  13. wrighterb

    Trying to refresh my calendar, without refreshing the entire page.

    Trying to refresh my calendar, without refreshing the entire page. Any Ideas where to start <style type="text/css"> .cal_Red { Background: #cc0000; color: #000000; FONT-FAMILY: Verdana,Arial, Helvetica; FONT-SIZE: 10px; FONT-WEIGHT: normal; text-align: center; width: 35px...
  14. wrighterb

    XMLHttp Request Error - Whole page loads inside the other

    I am getting the whole page back inside my orginal page where I set the ID, I am just trying to pass back next months date so the just the calendar updates. http://www.wrighter.com/mike/rental_details.cfm?ID=1&name=Leila's%20Beach%20House# Click on right arrow and you will see <script>...
  15. wrighterb

    xmlHttp Request I getting the whole page to load inside

    I just need to send #curredate# back to my calendar so it updates, right now I get the entire page getting jammed into where the calednar is suppose to be on the original page. http://www.wrighter.com/mike/rental_details.cfm?ID=1&name=Leila's%20Beach%20House# Click the right arrow for the...
  16. wrighterb

    Need to trim off the 0 in 09/17/07

    Need to trim off the 0 in 09/17/07 but only if it is a zero Any Ideas, it will be happening in a loop. Thanks.
  17. wrighterb

    Getting Date Range, then put into database as dates by comma delimited

    I take two dates from the db start and end, and find all dates in this range, and return so 09/02/2007,09/03/2007,09/04/2007,09/05/2007,09/06/2007,09/07/2007,09/08/2007 Then I grab what is in already in the field that I want to combine this with. 11/15/2007,10/25/2007,10/26/2007,10/27/2007...
  18. wrighterb

    Application.cfc can't get application.dsn = &quot;Generic&quot;; to work

    <cfcomponent> <cfscript> this.name = "Order"; this.applicationTimeout = createTimeSpan(0,4,0,0); this.clientmanagement= "yes"; this.loginstorage = "session" ; this.sessionmanagement = "yes"; this.sessiontimeout = createTimeSpan(0,4,0,0)...
  19. wrighterb

    &lt;pre&gt; tag Need to use to preserve text out put to html

    I have this code being looped over (1500 results) <pre><a href="#">#currentElement#</a></pre> __________________________________________________ The data comes out preserved but with extra line. 3456 678 x1z - "I don't want this extra line" 45622 35 4 ylz - "I...
  20. wrighterb

    Sending getMessage() method with coldfusion Component

    <cfcomponent> <cffunction name="getMessage" access="remote" returntype="XML"> <cfargument name="firstname" type="string" required="yes"> <cfargument name="lastname" type="string" required="yes"> <cfquery name="result" datasource="#request.dsn#"> SELECT ID, Firstname...

Part and Inventory Search

Back
Top