Jump to content
Search Community

Technics1210

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by Technics1210

  1. the // approach only seems to work when it is on a server. When testing local it seems not to work. I got an answer from an AdManagement (flashtalking), that cloudflare is not accepted of them because they use cookies - also Amazon, Yahoo, Google seems not to trust cloudflare. But they also recommend to use always "https://" Just another question - i often had - in flash AS 3.0 - to "tint" objects like text, to change the colors fast, not needing to replace the graphic themselves. Which feature do i use when i want to tint SVGs, because i almost use SVG for text. Is it the ColorProbs Plugin or do i need to use TweenMax, what i want to avoid because of the filesize.
  2. Thank you Carl, i didn't notice the https !!! - i just did copy paste from the "http://" Is the relative URL "//" save? I did not ever tried this... But it could save me some work, because some banners also do have to work in https environments. So - i will never link to /latest - good advice.
  3. Hi, i am doing tons of online advertising banner stuff. Sometimes I have to use local JS GSAP libraries, but often i can use the CDN path to Tweenlite etc. to save file size when delivering to the advertiser. There are two methods - to link to the latest GSAP eg <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/plugins/CSSPlugin.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/easing/EasePack.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenLite.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TimelineLite.min.js"></script> or link to the version # of GSAP when coding the banner <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenLite.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TimelineLite.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/easing/EasePack.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/plugins/CSSPlugin.min.js"></script> What is more save to ensure the banners will work, when they show up later "live" at the browsers. Today i had some trouble when using the CDN Links with version # and got a error in Google Chrome's Browser ERR_SPDY_PROTOCOL_ERROR where the JS scripts did not load at all - so did not the banners! This should never happen when the work is "live"...
  4. Jonathan, great script for playing / pausing the timeline when the browser has no focus. I think this would help mobile devices to save more battery power. I tried using it for HTML5 (mobile) banners. The script works well on desktop browsers. But the script seems to pause the tweening at the beginning (Not beginning to play at all) when i am using Safari Mobile on my iPhone5S. Perhaps i should not use it for mobile HTML5 Banner? What is with other smartphones / tablets / operating systems and mobile browsers?
×
×
  • Create New...