Just thought I’d post this little tidbit. When using Flash/action script to call the infamous ‘Loadvariables’ functions I have found that some browsers like IE like to grab cached results, for some reason it worked fine in Firefox but if you try to embedded IE in your programs you will run into the same problems. [...]
Posts Tagged ‘Flash’
Flash:Getting non-cached results from IE / Firefox using LoadVariables
Posted: May 22, 2010 in Flash, Non Insteon Programming, UncategorizedTags: actionscript, actionscript 2.0, cache buster, Flash, getting cached results from IE
How I Interacting Flash with my SQL / Insteon System
Posted: August 17, 2008 in Flash, Non Insteon ProgrammingTags: .net, 2.0, actionscript, checking status via code, Flash, Insteon, load, loadvariables, passing variables in flash, server, sql database, vb2008, X10
One of the questions ive been asked is how to I put my flash script to grab data from the SQL database and provide updates if the device is on or off etc. Well the awnser is, I dont. Like mentioned before to have your flash talk directly to a sql database you will need [...]
ActionScript 2.0 or Actionscript 3.0?
Posted: August 7, 2008 in GeneralTags: Flash, which one to use
Ok, now im really confused. Actionscript 2.0 is what ive seen many people use today, and even many down loadable templates are in actionscript 2.0. Why do I feel I need to jump to version 3.0. Many of the commands are different, there is a lot of setting classes and other stuff which really pulls [...]
Flash:Loading Variables from files into Flash
Posted: August 3, 2008 in FlashTags: actionscript, Flash, reading variable from text files
Instead of re-inventing the wheel this is the document I used to get data for my flash variables http://www.smartwebby.com/flash/external_data.asp Basically using the “loadvariables” command you can read any file containing properly formated text, and just match up the variable with the variable in the text file, for example loadVariables(“http://192.168.0.101/data.txt”,this); The File ‘data.txt’ contains name=1 If [...]
Flash:Showing the ‘time’ in flash continuously.
Posted: August 2, 2008 in FlashTags: actionscript, cs3, Flash, Home Automation, Insteon, show the time in flash, timer, X10
Last week I was working on automating the house’s coffee machine. And a real neat feature I saw around was the ability to display updated content in flash. In bare bones, simple copy and paste, below is the the code I used to update the clock each second. Basically open a scene of one frame [...]