User Ryan Guill - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:26:43Z http://stackoverflow.com/feeds/user/7186 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/439662/what-is-the-difference-between-import-and-include-in-objective-c 3 What is the difference between #import and #include in Objective-C? Ryan Guill 2009-01-13T16:25:17Z 2009-12-01T22:39:38Z <p>What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?</p> <p>I was reading the following tutorial: <a href="http://www.otierney.net/objective-c.html#preamble" rel="nofollow">http://www.otierney.net/objective-c.html#preamble</a> and its paragraph about #import and #include seems to contradict itself or at least is unclear.</p> http://stackoverflow.com/questions/1427701/binding-to-a-read-only-getter-in-as3 3 Binding to a read-only getter in AS3 Ryan Guill 2009-09-15T14:56:29Z 2009-10-29T12:03:11Z <p>Consider the following code:</p> <pre><code>[Bindable(event="ReportHeaderVO_effectiveFromDateJulian_updated")] public function set effectiveFromDateJulian ( value:Number ) : void { _effectiveFromDateJulian = value; dispatchEvent( new FlexEvent("ReportHeaderVO_effectiveFromDateJulian_updated") ); } public function get effectiveFromDateJulian () : Number { return _effectiveFromDateJulian; } public function get effectiveFromDate () : Date { return DateUtil.convertJDEJulianToDate(_effectiveFromDateJulian); } </code></pre> <p>There is a setter and a getter for the effectiveFromDateJulian which is a number representation of the date. I have provided a seperate getter which retrieves the same value, only converted to a proper date. It is a getter only though and relies on the setter for the numeric property to get its data from; so the effectiveFromDate property is effectively read-only.</p> <p>Data binding works on the effectiveFromDateJulian property; any updates work fine and notify everything properly. But when binding to the effectiveFromDate (getter only) property, I get a warning from the compiler: </p> <pre><code>warning: unable to bind to property 'effectiveToDate' on class 'com.vo::ReportHeaderVO' </code></pre> <p>Is there a way to make it possible to bind to this read-only property? I would assume I would have to dispatch an event on the setter that effects the read-only property, but I don't know what that would look like. </p> <p>This is a simple example, you could imagine a read-only property that depends on several setters to function and when any of those setters are updated the read-only property would need to fire a propertyChanged event as well. Any ideas? Please let me know if I need to clarify anything.</p> <p>Update: From the Adobe documentation here:</p> <p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=databinding%5F8.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=databinding_8.html</a></p> <blockquote> <p>Using read-only properties as the source for data binding</p> <p>You can automatically use a read-only property defined by a getter method, which means no setter method, as the source for a data-binding expression. Flex performs the data binding once when the application starts.</p> <p>Because the data binding from a read-only property occurs only once at application start up, you omit the [Bindable] metadata tag for the read-only property.</p> </blockquote> <p>And this makes sense for constant values, but in this case the value does change, it just doesn't get set directly.</p> http://stackoverflow.com/questions/1549125/global-states-in-flex-4/1600675#1600675 0 Answer by Ryan Guill for Global States in Flex 4 Ryan Guill 2009-10-21T12:59:15Z 2009-10-21T12:59:15Z <p>no, there is not support for "sub" states like this. What you could do though is have <code>mode1_up, mode1_over, mode1_down, mode2_up, mode2_over, mode2_down</code> etc and then just have which mode you are in based on a private variable and switch out accordingly. do you think that would work for what you are trying to do?</p> http://stackoverflow.com/questions/1552581/edit-multiple-states-at-once-in-flash-builder-4/1600642#1600642 0 Answer by Ryan Guill for Edit Multiple States At Once in Flash Builder 4 Ryan Guill 2009-10-21T12:54:11Z 2009-10-21T12:54:11Z <p>No, there is no way in flex/flash builder to make a change to multiple states at once. What you can try to do though, and im not sure this will do what you are wanting in this particular case, but you can make your states based on one particular state. Then when you change the base state it will apply to the states that are based on it. </p> http://stackoverflow.com/questions/1553009/listitemrenderer-background-color/1575692#1575692 1 Answer by Ryan Guill for ListItemRenderer background color Ryan Guill 2009-10-15T23:37:59Z 2009-10-15T23:37:59Z <p>This seems to work fine for me. Here is my code:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768" xmlns:components="components.*"&gt; &lt;fx:Declarations&gt; &lt;!-- Place non-visual elements (e.g., services, value objects) here --&gt; &lt;/fx:Declarations&gt; &lt;fx:Script&gt; &lt;![CDATA[ import mx.collections.ArrayCollection; [Bindable] public var items:ArrayCollection = new ArrayCollection([{name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}, {name:"foo",value:"bar"}]); ]]&gt; &lt;/fx:Script&gt; &lt;fx:Style&gt; @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/halo"; @namespace components "components.*"; #queueView { alternating-item-colors: red, yellow; } &lt;/fx:Style&gt; &lt;mx:List id="queueView" dataProvider="{items}" width="200"&gt; &lt;mx:itemRenderer&gt; &lt;fx:Component&gt; &lt;mx:VBox&gt; &lt;mx:Label text="{data.name}"/&gt; &lt;mx:Label text="{data.value}"/&gt; &lt;/mx:VBox&gt; &lt;/fx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:List&gt; &lt;/s:Application&gt; </code></pre> <p>And here is the result:</p> <p><img src="http://i38.tinypic.com/10wkzs8.jpg" alt="result" /></p> <p>What build are you running? I am running the latest beta that came out in the last few weeks. Build 4.0.0.253292 to be exact. You can try upgrading to the latest build if you haven't already and you can also try to clean your project. Also make sure your browser isn't caching the swf, which sometimes happens when the file size doesn't change dramatically.</p> <p>Please let me know if I have missed something. But your code seems to work fine.</p> http://stackoverflow.com/questions/1573875/flex-4-build-a-group-with-a-background/1575649#1575649 0 Answer by Ryan Guill for Flex 4: Build a Group with a background Ryan Guill 2009-10-15T23:22:23Z 2009-10-15T23:22:23Z <p>What build of flex 4 are you using? I just copied your code exactly and the output looks as you would expect it to.</p> <p><img src="http://i38.tinypic.com/i5t9it.jpg" alt="result" /></p> <p>I am running the beta 2 build that was released within the last few weeks. Build 4.0.0.253292. You can upgrade your build if you aren't running the latest, but you can also try to clean the project. It might just be getting confused. Also make sure your browser isn't caching the swf, which sometimes happens when the file size doesn't change dramatically.</p> http://stackoverflow.com/questions/1574007/building-flex-project-with-unit-testing-on-cruise-control/1574062#1574062 0 Answer by Ryan Guill for BUilding Flex project with unit testing on cruise control Ryan Guill 2009-10-15T18:01:39Z 2009-10-15T18:01:39Z <p>Would this blog post be useful? </p> <p><a href="http://www.aaronspjut.com/mind/index.php/2009/05/23/continuous-integration-with-flex-3-cruisecontrolrb-and-flexunit4/" rel="nofollow">http://www.aaronspjut.com/mind/index.php/2009/05/23/continuous-integration-with-flex-3-cruisecontrolrb-and-flexunit4/</a></p> <p>Sorry for the lack of information from me, I am not familiar with cruise-control.</p> http://stackoverflow.com/questions/1569590/actionscript-object-labeled-as-a-real-datastructure-for-readability/1569623#1569623 2 Answer by Ryan Guill for Actionscript 'Object' labeled as a real datastructure for readability Ryan Guill 2009-10-14T23:53:57Z 2009-10-15T00:00:10Z <p>Use a dictionary. </p> <p><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/Dictionary.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/Dictionary.html</a></p> <p>You can still use a string for your key, or any object for that matter.</p> <pre><code>var dict:Dictionary = new Dictionary(); var obj:Object = new Object(); var key:Object = new Object(); key.toString = function() { return "key" } dict[key] = "Letters"; obj["key"] = "Letters"; dict[key] == "Letters"; // true obj["key"] == "Letters"; // true obj[key] == "Letters"; // true because key == "key" is true because key.toString == "key" dict["key"] == "Letters"; // false because "key" === key is false delete dict[key]; //removes the key </code></pre> <p>A lot of developer ( myself included ) will tell you: Never use an Object. You are basically blindfolding your compiler. Always either use a built in datatype or make your own. Now obviously you didn't know about dictionaries in this case, but as a general rule, if you think you want to use a plain old Object datatype, think again.</p> <p>Update:</p> <p>Another link you might find helpful:</p> <p><a href="http://www.gskinner.com/blog/archives/2006/07/as3%5Fdictionary.html" rel="nofollow">http://www.gskinner.com/blog/archives/2006/07/as3_dictionary.html</a></p> http://stackoverflow.com/questions/1524538/limiting-web-service-access-to-a-public-facing-flex-application/1525396#1525396 0 Answer by Ryan Guill for Limiting web service access to a public facing Flex application Ryan Guill 2009-10-06T12:52:50Z 2009-10-06T12:52:50Z <p>Like TheBrain mentioned, the crossdomain.xml file is where you need to start, but this only keeps other flash based applications away. His idea about the random id is also a good one but I could see that being rather complicated to implement. You could implement user accounts only having those accounts set up through some other means than the flex application (something presumably more secure). </p> <p>Another way would be to have a shared password between the application and the webservice side, and encrypt that password on both sides using some sort of salt that both sides could know. My first instinct is to think of a time based salt. You could pass the timestamp from the flex application along with the rest of the request and then take your password and the same timestamp concatenated together in someway, hash it and pass that along as well. In the webservice when you get the request, you take the same password (not passed with the request in the clear) and the timestamp that was passed and hash it using the same algorithm. Then compare. If they match then it is an authenticated request. You could even store a dictionary of passwords, and use a different one for each day of the week or something like that. Just however you do it, make sure that your two methods of determining the hashed password is identical. This should provide enough security for most applications. Let me know if any of this needs clarification or if I have misunderstood the question.</p> <p>After re-reading your question, I see you are worried about decompilation. I don't have an answer for this off the top of my head. You could potentially store the password outside of the application and read it in, but that doesn't solve the problem of the person decompiling to be able to read that file. I will think some more on this and see if I can come up with something to guard against that.</p> http://stackoverflow.com/questions/1520610/actionscript-flex-how-to-know-whether-a-property-of-object-exists-or-defined/1520644#1520644 0 Answer by Ryan Guill for actionscript (flex): how to know whether a property of object exists (or defined)? Ryan Guill 2009-10-05T15:02:13Z 2009-10-05T15:02:13Z <p>try </p> <pre><code>if ( obj["2008-02"] != null ) { then do something } </code></pre> <p>it is null, but you can't output null. you can also try converting it to a string for the purposes of a trace().</p> http://stackoverflow.com/questions/1509733/flex-passing-parameters-to-custom-components/1509761#1509761 0 Answer by Ryan Guill for Flex: passing parameters to custom components Ryan Guill 2009-10-02T14:10:32Z 2009-10-02T14:24:41Z <p>try this:</p> <pre><code>&lt;MyComp:Board x="22" y="25" width="600" height="600" boardSize="{Number(19)}"&gt; </code></pre> <p>or this:</p> <pre><code>&lt;mx:Script&gt; &lt;![CDATA[ public var boardSize:Number = 19; ]]&gt; &lt;/mx:Script&gt; &lt;MyComp:Board x="22" y="25" width="600" height="600" boardSize="{boardSize}"&gt; </code></pre> <p>The problem may be that you are passing it as a string to the component, it doesn't realize that it is a number.</p> http://stackoverflow.com/questions/1503693/adobe-flex-app-page-file-usage-going-through-the-roof/1504732#1504732 1 Answer by Ryan Guill for Adobe Flex App page file usage going through the roof! Ryan Guill 2009-10-01T15:43:24Z 2009-10-01T15:43:24Z <p>You can use the profiler in Flex Builder professional to see where your memory usage is going. Like another poster mentioned, event listeners are alot of times the culprits in cases like this, but more generally, just because you think you are getting rid (destroying or deleting) a variable, doesn't mean that it is really getting taken care of by the garbage collector. If any reference (like an event listener) still exists to that variable (or object) it will not be collected. The profiler will point out these things.</p> http://stackoverflow.com/questions/1488608/coldfusion-equiv-of-php-strtotime/1488642#1488642 3 Answer by Ryan Guill for Coldfusion equiv of PHP strtotime() ? Ryan Guill 2009-09-28T18:37:16Z 2009-09-28T18:48:01Z <p>I don't know of a way in coldfusion (not natively anyway) that will take a textual representation of time and do a conversion. A few google searches also did not turn up anything. It could be written but would not be a simple undertaking.</p> <p>That said, if you want to get a date 1 week back, you could do something like this using the <a href="http://www.cfquickdocs.com/#DateAdd" rel="nofollow">dateadd() function</a>:</p> <pre><code>&lt;cfset variables.lastweek = dateAdd("w",-1,now()) /&gt; </code></pre> <p>or </p> <pre><code>&lt;cfset variables.lastweek = dateAdd("d",-7,now()) /&gt; </code></pre> <p>Of course you can substitute now() out for any timestamp or date.</p> <p><strong>Update:</strong></p> <p>Remember that because CF is java, you can use any java classes to help you on your way too. It doesn't look like there is a cut and dry equivallent even in java, but these relevant topics may help you on your way:</p> <p><a href="http://stackoverflow.com/questions/1236678/phps-strtotime-in-java">http://stackoverflow.com/questions/1236678/phps-strtotime-in-java</a></p> <p><a href="http://stackoverflow.com/questions/1268174/phps-strtotime-in-java">http://stackoverflow.com/questions/1268174/phps-strtotime-in-java</a></p> http://stackoverflow.com/questions/1488571/does-flex-not-support-hashmaps/1488659#1488659 5 Answer by Ryan Guill for Does flex not support hashmaps? Ryan Guill 2009-09-28T18:39:53Z 2009-09-28T18:39:53Z <p>It does look like object is what you want: <a href="http://www.mail-archive.com/flexcoders@yahoogroups.com/msg17137.html" rel="nofollow">http://www.mail-archive.com/flexcoders@yahoogroups.com/msg17137.html</a></p> <p>Relevant text:</p> <blockquote> <p>When a HashMap is sent back to Flex it will simply be an Object. You can access a value by doing myObj[key]</p> <p>Matt</p> <p>From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of prasanthasi Sent: Saturday, November 26, 2005 7:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Mapping Java HashMap to Flex Actionscript</p> <p>Hi, I am trying map Java HashMap to Flex Actionscript. I have tried Object mapping and Arrays with Associative keys. Nothing worked for some reason. Please post a sample code if anyone knows how to do this.</p> </blockquote> <p>Another possibly relevant link: <a href="http://www.nabble.com/How-to-deal-with-a-java.util.HashMap-in-flex-td17642614.html" rel="nofollow">http://www.nabble.com/How-to-deal-with-a-java.util.HashMap-in-flex-td17642614.html</a></p> http://stackoverflow.com/questions/1429164/flex-3-coldfusion-8-problem-with-numbers/1429255#1429255 3 Answer by Ryan Guill for Flex 3 / Coldfusion 8 Problem with Numbers Ryan Guill 2009-09-15T19:43:05Z 2009-09-24T12:16:36Z <p>We actually just saw this yesterday too. CF 7 and CF 8 was the only difference. Doing this does not work:</p> <pre><code>var num:Number = e.result.MYNUMBERFIELD as Number; </code></pre> <p>but this does:</p> <pre><code>var num:Number = Number(e.result.MYNUMBERFIELD); </code></pre> <p>I don't think your looping and making a csv is related. I think it is a pure CF8 issue. I'll look in the bugbase and see if I notice anything like this. We haven't had time to research it further yet. I am also interested in what the difference is between those two cast methods.</p> <p><strong>Update 2009-09-24:</strong></p> <p>On at least one one machine here locally, the Cumulative Hot Fix 3 for ColdFusion 8.0.1 has fixed this issue. You can get this hotfix here: <a href="http://kb2.adobe.com/cps/511/cpsid%5F51180.html" rel="nofollow">http://kb2.adobe.com/cps/511/cpsid_51180.html</a>. That page also has instructions for installing the hotfix if necessary.</p> <p>Note for anyone else looking at this question: Adobe recommends that you apply CHF3 to ColdFusion 8.0.1 only if you are experiencing one or more of the issues that are listed on that page. If you are having the issue in this question of course that means you.</p> http://stackoverflow.com/questions/1455659/error-handling-issues/1460520#1460520 1 Answer by Ryan Guill for Error Handling issues Ryan Guill 2009-09-22T14:44:48Z 2009-09-22T14:44:48Z <p>Check where you are pointing to for any external assets or data. More than likely you need a crossdomain.xml file that will say that it is okay for your server to access the data. To be clear, you need the crossdomain file where the assets are that you are pulling.</p> <p>More information here: <a href="http://www.adobe.com/devnet/articles/crossdomain%5Fpolicy%5Ffile%5Fspec.html" rel="nofollow">http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html</a></p> <p>An example of a wide open crossdomain.xml file:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt; &lt;cross-domain-policy&gt; &lt;allow-access-from domain="*" /&gt; &lt;/cross-domain-policy&gt; </code></pre> <p>You can specify a domain where the * is and list multiple allow-access-from nodes. You can also specify all subdomains on a domain by saying *.mydomain.com</p> <p>To be clear, you do not want to go to production with the wide open example I have given, but it is something you can use to test out and make sure this is your problem. Once you verify this then you can restrict it to the appropriate levels.</p> <p>Basically though you just create a file called crossdomain.xml and put this xml in it.<br /> <em>Make sure it is placed at the root of the server that the data or assets are being pulled from.</em></p> http://stackoverflow.com/questions/1452539/flash-as3-eventdispatcher-any-way-of-getting-a-list-of-registered-listeners/1454803#1454803 1 Answer by Ryan Guill for Flash AS3 EventDispatcher - any way of getting a list of registered listeners? Ryan Guill 2009-09-21T14:26:53Z 2009-09-21T14:26:53Z <p>It doesn't look like this is a complete solution but it might help you on your way:</p> <p><a href="http://www.rialvalue.com/blog/2009/09/08/does-an-eventdispatcher-have-subscribed-listeners/" rel="nofollow">http://www.rialvalue.com/blog/2009/09/08/does-an-eventdispatcher-have-subscribed-listeners/</a></p> <p>From the article:</p> <blockquote> <p>The example above shows how we can get a reference to the different listeners declared in an EventDispatcher and how to remove them without having a direct reference (and knowing the event name arggg).</p> <p>Even though this can help you to figure out if an EventDispatcher has listeners or not there’re still several problems you might find:</p> <pre><code>* You don’t have any information about the listener * You don’t know which event the listener is listening to * We don’t know which phase the listener is listening to * Haven’t done too much testing around this, but I think both weak and strong references are hold in the list * The other thing to consider is that flash.sampler.getMemberNames only works in the debugger version of the Flash Player </code></pre> </blockquote> http://stackoverflow.com/questions/1425677/add-days-to-date-in-actionscript/1427554#1427554 3 Answer by Ryan Guill for Add days to Date in ActionScript Ryan Guill 2009-09-15T14:29:35Z 2009-09-15T19:45:30Z <p>While the other answers will work im sure, it is as easy as doing:</p> <pre><code>var dte:Date = new Date(); dte.date += 30; //the date property is the day of the month, so on Sept. 15 2009 it will be 15 </code></pre> <p>This will even increment the month if necessary and year as well. You can do this with the month and year properties as well.</p> http://stackoverflow.com/questions/1415636/sql-how-to-query-with-multiple-foreign-keys-in-a-table/1415647#1415647 3 Answer by Ryan Guill for SQL, How to query with multiple foreign keys in a table? Ryan Guill 2009-09-12T17:23:35Z 2009-09-12T17:23:35Z <p>You are close, but you need to join the user table in twice, once on the owner and once on the winner. Use a table alias to differentiate the two.</p> <pre><code>SELECT projects.project_id , projects.title , projects.start_time , projects.description , projects.user_id , projects.winner_user_id , users.username as owner , winnerUser.username as winner FROM projects INNER JOIN users ON projects.user_id=users.user_id INNER JOIN users winnerUser ON projects.winner_user_id=winnerUser.user_id </code></pre> http://stackoverflow.com/questions/1414763/flex-mxml-components/1415294#1415294 0 Answer by Ryan Guill for flex mxml components Ryan Guill 2009-09-12T14:48:00Z 2009-09-12T14:48:00Z <p>You can also do the same thing with states. When login is done, dispatch an event that you listen for in your application container. When that event fires, swap the state to show the next component/screen.</p> http://stackoverflow.com/questions/1396514/vmware-fusion-view-coldfusion-debugging-host-os/1400633#1400633 1 Answer by Ryan Guill for vmware fusion view coldfusion debugging host os Ryan Guill 2009-09-09T16:11:43Z 2009-09-09T16:11:43Z <p>are you trying to access the debug outside of vmware or inside of vmware? If outside, make sure you are adding the IP of your mac machine, not the vmware machine. Also, you might have to make sure your networking for vmware is bridged so they have different IP addresses (vmware may not call it bridged, im not sure).</p> <p>The easiest way to do this is access the cf administrator from outside of the vm on the mac machine and set it that way. Also make sure that the coldfusion page you are running doesn't have debugging supressed.</p> http://stackoverflow.com/questions/1366585/hmvc-framework-for-coldfusion/1399591#1399591 0 Answer by Ryan Guill for HMVC framework for Coldfusion? Ryan Guill 2009-09-09T13:07:52Z 2009-09-09T13:07:52Z <p>I am not sure I am understanding your question correctly, but with mvc, you should be able to have two views using the same model. Or, you could split the model out into a different place using webservices or something like that, and then have your model in your two different apps connect to it to retrieve your data. Or am I misunderstanding?</p> http://stackoverflow.com/questions/1134989/what-are-my-options-for-working-with-markdown-in-coldfusion 3 What are my options for working with markdown in ColdFusion? Ryan Guill 2009-07-16T01:27:33Z 2009-07-27T17:18:54Z <p>I am seeing many many different use cases where I could use Markdown in apps that I write, both personal and professional. But from my research so far, I haven't been able to find many options for working with it in ColdFusion. I would certainly like to keep from reinventing the wheel by trying to implement it myself if someone else already has a project that I can use and contribute to, both because of time and not to duplicate efforts. </p> <p>My preference would be to use an implementation in native coldfusion because that would be the easiest to tweak if it was necessary, but I am open to alternatives in other languages, as long as it is easy enough to implement and maintain. I have looked at the <a href="http://wmd-editor.com/" rel="nofollow">WMD</a> editor, but it doesn't look like it is the whole solution. It would work for outputing the markup, but I would want to store that and then convert it to html as necessary for display. </p> <p>Does anyone know of any other options?</p> <p>Update: I do know of the <a href="http://sebduggan.com/projects/cfxmarkdown" rel="nofollow">CFX_markdown</a> but I am not sure it is mature enough. If anyone out there has experience with it I would love to hear about it.</p> <p>Update 2: I have added a bounty to this question. Not to say that the answer that has been given so far isn't a good one or isn't the best one, but I am wanting to see if anyone else has any other information about markdown with CF so we know all of the options. </p> <p>Update 3: So offering the bounty didn't really work. I will go ahead and let it auto accept the only answer just in case we have any late answers. Thanks to everyone who has contributed.</p> http://stackoverflow.com/questions/1032984/styling-a-datagridrow-based-on-dynamic-cell-content/1033062#1033062 1 Answer by Ryan Guill for Styling a DataGridRow based on dynamic cell content? Ryan Guill 2009-06-23T14:51:41Z 2009-06-23T14:51:41Z <p>what you want is styleFunction but I think you can only use this on an advancedDataGrid, I don't think the normal dataGrid supports this.</p> <p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid%5F04.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_04.html</a></p> <p>You will pass the row object into the function and you can use logic to say whether or not to apply styles.</p> <p>The only other thing I can think of if you can't use an AdvancedDataGrid is you could probably do it with an item renderer, but that would probably be much more work.</p> http://stackoverflow.com/questions/1032975/selecting-distinct-same-column-values-from-non-related-tables/1032999#1032999 0 Answer by Ryan Guill for selecting distinct same column values from non related tables Ryan Guill 2009-06-23T14:43:05Z 2009-06-23T14:43:05Z <pre><code>select distinct year, month from table 1 union select distinct year, month from table 2 order by year, month </code></pre> <p>The only problem with this is because your month is the alpha representation its not going to sort properly, but im sure oracle has a function to turn the string representation of a month into a numeric, and you can just sort by that instead.</p> http://stackoverflow.com/questions/1014009/as3-how-accurate-are-the-gettimer-method-and-the-timer-class/1014185#1014185 -1 Answer by Ryan Guill for AS3: How accurate are the getTimer() method and the Timer class? Ryan Guill 2009-06-18T17:48:45Z 2009-06-18T17:48:45Z <blockquote> <p>This gives me a max fps of ~60, which is great visually but also means I can't possibly fire more than 60 lasers per second :-(</p> </blockquote> <p>I would say you are very lucky to be getting that kind of FPS as it is, and the majority of your users (assuming your audience is the internet at large) will more than likely not be achieving that kind of framerate. </p> <p>I would agree that the abilities of the flash player are probably not sufficient for what you are trying to achieve.</p> http://stackoverflow.com/questions/1013999/apache-return-404-errors-instead-of-500-errors/1014165#1014165 1 Answer by Ryan Guill for Apache: return 404 errors instead of 500 errors. Ryan Guill 2009-06-18T17:45:44Z 2009-06-18T17:45:44Z <p>I know this doesn't answer your question but are you sure that you really want to do this? a 500 error and 404 are very different things meant to be used for different purposes. You are telling a user that the url that they have is wrong when in fact it is what is more than likely a temporary problem with your application/server. Why would you rather do this than to tell the user there is a temporary problem and they should try again later on? Or in other words, why not just have a custom 500 error page?</p> http://stackoverflow.com/questions/970234/submenu-under-linkbar-option/971587#971587 1 Answer by Ryan Guill for submenu under linkbar option. Ryan Guill 2009-06-09T18:00:20Z 2009-06-09T18:00:20Z <p>would a menubar make more sense in this situation? You can do this, but you would have to extend the linkbar yourself and add the functionality to it. Its not just a few trivial lines.</p> http://stackoverflow.com/questions/970586/error-after-upgrading-flex-sdk-expected/971580#971580 0 Answer by Ryan Guill for Error after upgrading Flex SDK: "{ expected " Ryan Guill 2009-06-09T17:58:26Z 2009-06-09T17:58:26Z <p>Have you tried to do a clean on the project? You didn't mention this but I assume that the project compiles fine under 3.1? If you create a new project does it compile cleanly (if not, it may mean that you have a bad download of the SDK and need to get a new copy.)</p> http://stackoverflow.com/questions/971201/adobe-flex-textinput-messing-up-with-commas/971574#971574 0 Answer by Ryan Guill for Adobe Flex - Textinput messing up with commas Ryan Guill 2009-06-09T17:56:37Z 2009-06-09T17:56:37Z <p>Can you show us the function you have already written so that we might be able to point you to where your mistake may be? Are you allowing for IPv6 or only IPv4 addresses? If only IPv4, you would not want to allow alpha characters, only numeric, periods and commas.</p> <p>Also, would it make more sense to allow the person to enter in the ip addresses one at a time, let them hit enter and add that particular address to a list and then allow them to work on the next one, instead of having them enter several and then not knowing where a typo might be?</p> http://stackoverflow.com/questions/1553009/listitemrenderer-background-color/1575692#1575692 Comment by Ryan Guill on ListItemRenderer background color Ryan Guill 2009-10-16T16:45:21Z 2009-10-16T16:45:21Z great, glad that's all it was! http://stackoverflow.com/questions/1529415/does-it-make-sense-to-dispatch-events-from-another-object/1529445#1529445 Comment by Ryan Guill on Does it make sense to dispatch events from another object? Ryan Guill 2009-10-15T00:32:17Z 2009-10-15T00:32:17Z 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. http://stackoverflow.com/questions/1569590/actionscript-object-labeled-as-a-real-datastructure-for-readability/1569623#1569623 Comment by Ryan Guill on Actionscript 'Object' labeled as a real datastructure for readability Ryan Guill 2009-10-15T00:28:49Z 2009-10-15T00:28:49Z Well, I would say you should only put the same &quot;type&quot; 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. http://stackoverflow.com/questions/1550580/actionscript-undefined-public-variables/1550602#1550602 Comment by Ryan Guill on actionscript: undefined public variables?? Ryan Guill 2009-10-15T00:23:44Z 2009-10-15T00:23:44Z 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 ;) http://stackoverflow.com/questions/1550580/actionscript-undefined-public-variables/1550604#1550604 Comment by Ryan Guill on actionscript: undefined public variables?? Ryan Guill 2009-10-15T00:22:41Z 2009-10-15T00:22:41Z 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. http://stackoverflow.com/questions/1569590/actionscript-object-labeled-as-a-real-datastructure-for-readability/1569623#1569623 Comment by Ryan Guill on Actionscript 'Object' labeled as a real datastructure for readability Ryan Guill 2009-10-15T00:14:11Z 2009-10-15T00:14:11Z 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 ;) http://stackoverflow.com/questions/1509733/flex-passing-parameters-to-custom-components/1509795#1509795 Comment by Ryan Guill on Flex: passing parameters to custom components Ryan Guill 2009-10-02T14:24:16Z 2009-10-02T14:24:16Z thats a good point. http://stackoverflow.com/questions/1488608/coldfusion-equiv-of-php-strtotime/1488642#1488642 Comment by Ryan Guill on Coldfusion equiv of PHP strtotime() ? Ryan Guill 2009-09-28T18:53:16Z 2009-09-28T18:53:16Z @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 &quot;fuzzy&quot;, 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. http://stackoverflow.com/questions/1488571/does-flex-not-support-hashmaps Comment by Ryan Guill on Does flex not support hashmaps? Ryan Guill 2009-09-28T18:28:44Z 2009-09-28T18:28:44Z 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. http://stackoverflow.com/questions/1485430/flex-project-migration-to-3-4-sdk Comment by Ryan Guill on Flex project migration to 3.4 SDK Ryan Guill 2009-09-28T15:28:04Z 2009-09-28T15:28:04Z 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? http://stackoverflow.com/questions/1429164/flex-3-coldfusion-8-problem-with-numbers/1429255#1429255 Comment by Ryan Guill on Flex 3 / Coldfusion 8 Problem with Numbers Ryan Guill 2009-09-25T13:09:49Z 2009-09-25T13:09:49Z I guess this worked for you as well then? http://stackoverflow.com/questions/1475856/coldfusion-process-name/1475917#1475917 Comment by Ryan Guill on Coldfusion Process Name Ryan Guill 2009-09-25T13:05:34Z 2009-09-25T13:05:34Z And more specifically, jrun.exe is the process name in the task manager. It may be a different &quot;service&quot; name in the services view in the control panel where you would start and stop it. http://stackoverflow.com/questions/1475856/coldfusion-process-name/1475917#1475917 Comment by Ryan Guill on Coldfusion Process Name Ryan Guill 2009-09-25T13:04:03Z 2009-09-25T13:04:03Z If this is the answer you found, then you should accept it. Even though it is your answer. http://stackoverflow.com/questions/1477009/flex-class-mapping-object-to-class-failure Comment by Ryan Guill on Flex Class Mapping > Object to Class < Failure Ryan Guill 2009-09-25T12:36:09Z 2009-09-25T12:36:09Z some example code might help. Have you tried simplifying it down and reproducing it somewhere else? http://stackoverflow.com/questions/1473349/determining-if-a-new-week-in-coldfusion Comment by Ryan Guill on determining if a new week in coldfusion Ryan Guill 2009-09-24T19:00:13Z 2009-09-24T19:00:13Z 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?