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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by stillhanginon

  1. stillhanginon

    Disabling Dates in Dynarch Calendar

    Okay, so anyone following this thread, here is how the problem was solved. Thanks to Vasilyev Evgeny on upwork.com here is the code added to the calendar_function.js file that enables me to disable certain dates from being chosen. var DISABLED_DATES = { 20151214: true, 20151215: true...
  2. stillhanginon

    Disabling Dates in Dynarch Calendar

    Here is the documentation for the calendar. If someone can look at how to disable dates and help me, I'd really appreciate it. http://www.dynarch.com/jscal/ Thanks! Jim
  3. stillhanginon

    Disabling Dates in Dynarch Calendar

    Here is the complete calendar_function.js I've highlighted my added code in red. Again, if you open the calendar on this page: jimsgotweb.com/nfkb You'll see that the dates are disabled correctly. But you can't choose other dates without first moving ahead or back a month first. Then it works...
  4. stillhanginon

    Disabling Dates in Dynarch Calendar

    This is a follow to this thread: thread216-1746009 I've been able to disable dates in the calendar using the code listed in the thread above, until recently. Now, the dates are disabled but you aren't able to pick a date in the current month without first moving back or forth a month, then it...
  5. stillhanginon

    Disabling dates in Dynarch Calendar

    For anyone following this thread, here is the code I used in the calendar_function.js file to disable dates: var DISABLED_DATES = { 20150313: true, 20150314: true, 20150315: true, 20150316: true, 20150317: true, 20150318: true, 20150319: true }; function disallowDate(date) {...
  6. stillhanginon

    Disabling dates in Dynarch Calendar

    Thanks for your response. I'll give your code a try. Should the code go in the calendar_function.js file and where in the file should I place the code? Thanks, Jim
  7. stillhanginon

    Disabling dates in Dynarch Calendar

    Hi, I'm using the DHTML Calendar, version 1.0 and need to disable certain dates from being selected. The documentation says, "You can disable individual dates by supplying a callback function which receives a JS date object and returns true if that date must be disabled, or false otherwise. You...
  8. stillhanginon

    Is this a FF issue?

    My website is jimsgotweb.com. When I view it in FireFox 34.0, after viewing 6 pages it stops responding. The message FF gives is: The connection was reset. The connection to the server was reset while the page was loading. After that happens, I'm no longer able to view the website without...
  9. stillhanginon

    How to add a link to an image in an iframe

    Yeah, I agree. I've used Drupal before and that would be a lot better if the client is willing to go that way, worth a shot. Thanks. Jim
  10. stillhanginon

    How to add a link to an image in an iframe

    Task: Set up a website so that someone with no HTML skills can update the "Upcoming" page. option: Have an iframe that opens up a Word document that has been saved as a web page. Images are used in the Word doc and the thumbnails are linked to open a larger picture, all in the iframe...
  11. stillhanginon

    duplicateMovieClip help

    Hi, I'm using Flash MX and here is what I'm tring to do, I have a movie clip on stage: picture_mc I want to load a jpg from a file into it: picture_mc.loadMovie("images/0.jpg"); Then I want to click on the loaded mc and duplicate it: picture_mc.onMouseDown = function() {...
  12. stillhanginon

    loadMovie question

    I’m using the loadMovie action to display an array of jpeg’s, one at a time, in a movie clip “photo”. loadMovie(this.pathToPics+this.pArray[0], _root.photo); I want to be able to move the loaded movie clip around the stage but according to the reference section: “The target movie clip will...
  13. stillhanginon

    duplicate and drag image

    Yes I would like to leave a copy visible.
  14. stillhanginon

    duplicate and drag image

    The images are movieClips. Ive been trying to use the DuplicateMovieClip without any luck, any suggestions?
  15. stillhanginon

    duplicate and drag image

    I'm loading an array of external images one at a time and dragging them across the stage. How can I leave the image where it is and drag a copy of it instead? Thanks, Jim

Part and Inventory Search

Back
Top