Ryan Guill

2,510
reputation
247 views

Registered User

name Ryan Guill
member for 1 year
seen 23 mins ago
website
location Memphis, TN
age 27
Web Application Developer from Memphis TN ColdFusion, Flex
Dec
6
awarded  Mortarboard
Nov
12
awarded  Popular Question
Oct
21
answered Global States in Flex 4
Oct
21
answered Edit Multiple States At Once in Flash Builder 4
Oct
16
comment ListItemRenderer background color
great, glad that's all it was!
Oct
16
accepted ListItemRenderer background color
Oct
15
answered ListItemRenderer background color
Oct
15
answered Flex 4: Build a Group with a background
Oct
15
answered BUilding Flex project with unit testing on cruise control
Oct
15
comment Does it make sense to dispatch events from another object?
From an OO standpoint, it should be an objects own responsiblity to dispatch its own events. The code given here is a great example of how to do it. But he is right, if it is a public method to call, its not technically wrong. There are frameworks that take advantage of this ability.
Oct
15
comment Actionscript ‘Object’ labeled as a real datastructure for readability
Well, I would say you should only put the same "type" of objects in an array. Even though you can put different kinds of data in the same array, surely you could see how that would be a bad idea. Although I would agree, it would be nice to know what is in an array. Thats where vectors in FP10 come in. Don't get me wrong, there are times where dynamic objects can be useful, but those times are few and far between.
Oct
15
revised actionscript: undefined public variables??
updated typo
Oct
15
comment actionscript: undefined public variables??
the flex framework itself uses examples of this very concept to find out if a value has been changed. This is the best answer. You should accept it as the right answer ;)
Oct
15
comment actionscript: undefined public variables??
Avoid not typing variables at all costs. You lose all compiler help and it has negative performance costs. Amarghosh's answer is what you should do.
Oct
15
comment Actionscript ‘Object’ labeled as a real datastructure for readability
Yes and no. Flash player 10 brings vectors which is the only real data type that I have been missing. ArrayList is another thats coming soon ( I guess its in flex4 ) which will be nice too as an alternative to the heavyweight ArrayCollection. But for the most part anything else that I need is domain specific which means I need to write it anyway ;)
Oct
15
accepted Actionscript ‘Object’ labeled as a real datastructure for readability
Oct
15
revised Actionscript ‘Object’ labeled as a real datastructure for readability
added 199 characters in body
Oct
14
answered Actionscript ‘Object’ labeled as a real datastructure for readability
Oct
7
accepted Limiting web service access to a public facing Flex application
Oct
6
answered Limiting web service access to a public facing Flex application
Oct
5
answered actionscript (flex): how to know whether a property of object exists (or defined)?
Oct
2
revised Flex: passing parameters to custom components
added 4 characters in body
Oct
2
comment Flex: passing parameters to custom components
thats a good point.
Oct
2
answered Flex: passing parameters to custom components
Oct
1
answered Adobe Flex App page file usage going through the roof!
Sep
28
accepted Coldfusion equiv of PHP strtotime() ?
Sep
28
comment Coldfusion equiv of PHP strtotime() ?
@jakub, like @peter boughton says, you would need to do the math to figure out what last friday is. And that does seem like a lot of work, but it will more than likely run faster and be much less prone to error. The problem with language translation like this is that it is "fuzzy", there can be multiple meanings for the same thing. It is a nice thing to have when relying on user input, but in your code it is better to do the appropriate math.
Sep
28
revised Coldfusion equiv of PHP strtotime() ?
added more information
Sep
28
answered Does flex not support hashmaps?
Sep
28
answered Coldfusion equiv of PHP strtotime() ?
Sep
28
comment Does flex not support hashmaps?
I'm not going to put this as an answer because I am unsure, but what happens if you try to type it as an object? Hashmaps are basically just key value pairs, which is what public properties on an object are. The biggest difference is with java you can strictly type the values and make sure that they are all the same type and you can use things besides strings as keys like a dictionary, but as long as you are just using string keys, it should work. In ColdFusion, structures are like hashmaps and they come over as objects. Also, don't kill yourself. Especially over something like this.
Sep
28
comment Flex project migration to 3.4 SDK
can you give more information on the problem? Are you using swc files? can you show us the line of code that is throwing the error?
Sep
25
comment Flex 3 / Coldfusion 8 Problem with Numbers
I guess this worked for you as well then?
Sep
25
comment Coldfusion Process Name
And more specifically, jrun.exe is the process name in the task manager. It may be a different "service" name in the services view in the control panel where you would start and stop it.
Sep
25
comment Coldfusion Process Name
If this is the answer you found, then you should accept it. Even though it is your answer.
Sep
25
comment Flex Class Mapping > Object to Class < Failure
some example code might help. Have you tried simplifying it down and reproducing it somewhere else?
Sep
25
accepted Flex 3 / Coldfusion 8 Problem with Numbers
Sep
24
comment determining if a new week in coldfusion
do you want to know if the days are more than 7 days apart or if they are in two different calendar weeks? If you have a saturday and the next day sunday, would that be two weeks in your scenerio?
Sep
24
revised Flex 3 / Coldfusion 8 Problem with Numbers
added another tag
Sep
24
comment Flex 3 / Coldfusion 8 Problem with Numbers
Please check out the update to my answer, I think we found a solution.
Sep
24
revised Flex 3 / Coldfusion 8 Problem with Numbers
Added more information; added 3 characters in body
Sep
23
awarded  Popular Question
Sep
22
comment Flex 3 / Coldfusion 8 Problem with Numbers
I looked through the public bugbase and didn't find anything like this. Im going to dig a little bit more though.
Sep
22
answered Error Handling issues
Sep
21
comment AS3 Error Handling
Can you show the offending code and what it is doing? The best way to handle security sandbox violations is not to commit them; to update your crossdomain.xml file if applicable. But it really depends on what you are doing that is causing the error
Sep
21
answered Flash AS3 EventDispatcher - any way of getting a list of registered listeners?
Sep
21
comment Binding to a read-only getter in AS3
Excellent. Thanks for those links. Your google-fu must be better than mine, I spent hours clicking on links trying to find an answer to this. Again, I really appreciate your help.
Sep
21
comment Displaying Images from SWF Library via ActionScript
Like @amarghosh said, init is fired before creation complete. Init is when the initialization starts, creation complete fires once it is done.
Sep
21
comment Binding to a read-only getter in AS3
This was perfect, exactly what I was looking for. After looking at it, it makes total sense about how and why it works, but it still isn't clear in the docs that this is how it should be. So when you put the [Bindable(event)] metadata, even though the docs show it being put on the setter, it is actually just being put on the property (the publicly exposed property). It could just as easily be put on the getter and it works the same. Just out of curiosity, do you have any link to the documentation or anywhere else that shows to do it like this? Thanks again! This helped a lot.
Sep
17
comment Add days to Date in ActionScript
That is true. Also remember that the month property is 0 based. So January is month 0 and December is month 11.