Archive for February 13th, 2008
Posted in February 13th, 2008
We have a customer that would like to upload a file, and this file is a delimited text file…
The first line is a Quoted date (”Tuesday, January 23, 2007″)… but as it gets read into coldfusion it is not a valid date… so what you have to do is convert it, using [...]
continue reading.....
Posted in February 13th, 2008
Some of the things I would like to do is extend the mx:Tree in flex 2, I would like custom images, or font… or anything to just customize this tree. The main purpose of why i want to do this is to show an icon by each tree node, that represents a certain thing [...]
continue reading.....
Posted in February 13th, 2008
We are using the mx:RichTextEditor to edit a description of some sort…. the html that the rich texteditor outputs is the following
<TEXTFORMAT LEADING=“2″><P ALIGN=“LEFT”><FONT FACE=“Verdana” SIZE=“10″ COLOR=“#0B333C” LETTERSPACING=“0″ KERNING=“0″>test</FONT></P></TEXTFORMAT>
If you copy and past this code into an html page, the font shows up huge much like so:
test
Ryan Stille, Jason H. of CFWebtools and [...]
continue reading.....
Posted in February 13th, 2008
The syntax is a little tricky but I found it on the google groups, by searching “get a markers latitude”
marker.getPoint().lat();
it’s very tricky because there isn’t a ton of documentation that show examples of this.
continue reading.....
Posted in February 13th, 2008
I’m trying to do a loop, and call a javascript function in flex for every loop. The loop only seems to call the javascript once the loop is done… and it only calls it for the last iteration of the loop.
To reproduce the issue do the following:
continue reading.....
Posted in February 13th, 2008
I ran into the issue when querying this service, and hit the whole “Connection Failure” Problem, this confused me, and after about an hour of my own trouble shooting i hit the search engines and found that there is some known issue with formating…. you must include charset=”utf-8″ in the tag… there are [...]
continue reading.....
Posted in February 13th, 2008
I was assigned with a task to make a working example of using google maps, and I really wanted to use flex 2.0. I want my movie to cover the full screen, and then i want to use CSS to overlay on top of the .swf file to make it appear as though, [...]
continue reading.....
Posted in February 13th, 2008
After some pretty extensive research, I was able to find a good blog post about a similar subject… The problem…
continue reading.....
Posted in February 13th, 2008
was searching up and down how to convert asfusion.com’s example of filtering data, done in actionscript 2.0, to convert it to actionscript 3.0 http://www.forta.com/blog/index.cfm/2006/7/13/Filtering-Data-In-Flex
continue reading.....
Posted in February 13th, 2008
There was a post on an adobe forum wondering how to go about doing this, they state that they go on and on looking for how to do this, and so i’m gonna help’em out…
continue reading.....
Posted in February 13th, 2008
Short and to the point.
View the example
Download the File
<style>
<!–
#title{
font-family:Arial, Helvetica, sans-serif;
position:relative;
top:5px;
left:5px;
}
#text {
color:#000000;
position: relative;
z-index:2;
top:0;
left:0;
}
#shadow {
color:#999999;
position:absolute;
z-index:1;
top:1px;
left:1px;
}
–>
</style> <body>
<div id=“title”>
<a href=“#”><span id=“text”>Alice in Wonderland</span></a>
<span id=“shadow”>Alice in Wonderland</span>
</div>
</body>
continue reading.....