User Ronnie Liew - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:17:36Zhttp://stackoverflow.com/feeds/user/1987http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131571/recommended-books-for-software-engineering5Recommended Books for Software EngineeringRonnie Liew2008-09-25T05:12:15Z2009-11-24T18:05:35Z
<p>What would be a recommended book for Software Engineering? </p>
<p>The book should be covering the various stages involved in software development process, covering topics such as:</p>
<ul>
<li>requirement gathering</li>
<li>use cases</li>
<li>domain model</li>
<li>functional specifications</li>
<li>architecture design</li>
<li>testing</li>
<li>deployment</li>
</ul>
<p>It should be a book that would help someone to understand the various processes, include examples of good documentation of <em>use cases</em>, <em>domain modeling</em>, <em>architecture design</em> etc., explain about how the various steps help in the development of the software. </p>
<p>Not so much on the code writing or the people-management aspect, more on the documentation, design stages, planning prior to actual coding. </p>
<p>Targeted audience should be a technical lead/architect/manager.</p>
http://stackoverflow.com/questions/993445/flex-actionscript-rotate-sprite-around-its-center/1787534#17875340Answer by Ronnie Liew for Flex/ActionScript - rotate Sprite around its centerRonnie Liew2009-11-24T03:08:28Z2009-11-24T03:13:33Z<p>Below are the following steps required to rotate objects based on any reference point (using <a href="http://help.adobe.com/en%5FUS/FlashPlatform/reference/actionscript/3/flash/geom/Matrix.html" rel="nofollow">Matrix</a> object and getBounds):</p>
<ol>
<li>Matrix translation (moving to the reference point)</li>
<li>Matrix rotation</li>
<li>Matrix translation (back to original position)</li>
</ol>
<p><br />
For example to rotate and object 90 degrees around its center:</p>
<pre><code>// Get the matrix of the object
var matrix:Matrix = myObject.transform.matrix;
// Get the rect of the object (to know the dimension)
var rect:Rectangle = myObject.getBounds(parentOfMyObject);
// Translating the desired reference point (in this case, center)
matrix.translate(- (rect.left + (rect.width/2)), - (rect.top + (rect.height/2)));
// Rotation (note: the parameter is in radian)
matrix.rotate((90/180)*Math.PI);
// Translating the object back to the original position.
matrix.translate(rect.left + (rect.width/2), rect.top + (rect.height/2));
</code></pre>
<p><br />
<br />
Key methods used:</p>
<ul>
<li><a href="http://help.adobe.com/en%5FUS/FlashPlatform/reference/actionscript/3/flash/geom/Matrix.html#rotate%28%29" rel="nofollow">Matrix.rotate</a></li>
<li><a href="http://help.adobe.com/en%5FUS/FlashPlatform/reference/actionscript/3/flash/geom/Matrix.html#translate%28%29" rel="nofollow">Matrix.translate</a></li>
<li><a href="http://help.adobe.com/en%5FUS/FlashPlatform/reference/actionscript/3/flash/display/DisplayObject.html#getBounds%28%29" rel="nofollow">DisplayObject.getBounds</a></li>
</ul>
http://stackoverflow.com/questions/215252/uuid-mismatch-detected-with-the-loaded-library2UUID mismatch detected with the loaded libraryRonnie Liew2008-10-18T16:45:54Z2009-11-16T01:10:23Z
<p>I get this warning at the console when I build and run my app in my device.</p>
<p>warning: UUID mismatch detected with the loaded library - on disk is: /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.1.sdk/usr/lib/liblockdown.dylib =uuid-mismatch-with-loaded-file,file="/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.1.sdk/usr/lib/liblockdown.dylib</p>
<p>Anyone has this issue and managed to resolve the warning ?</p>
http://stackoverflow.com/questions/147500/is-it-possible-to-include-one-css-file-into-another/147637#14763715Answer by Ronnie Liew for Is it possible to include one css file into another?Ronnie Liew2008-09-29T05:31:24Z2009-10-27T15:10:49Z<p>Yes. Importing CSS file into another CSS file is possible. </p>
<p>It must be the first rule in the style sheet using the <a href="http://www.w3.org/TR/CSS21/cascade.html#at-import" rel="nofollow">@import rule</a>.</p>
<pre><code>@import "mystyle.css";
@import url("mystyle.css");
</code></pre>
<p>The only caveat is that older web browsers will not support it. In fact, this is one of the CSS 'hack' to hide CSS styles from older browsers.</p>
<p>Refer to <a href="http://www.westciv.com/style%5Fmaster/academy/browser%5Fsupport/basic%5Fconcepts.html" rel="nofollow">this list</a> for browser support. </p>
http://stackoverflow.com/questions/216076/uiview-scale-to-0-using-cgaffinetransformmakescale1UIView scale to 0 using CGAffineTransformMakeScaleRonnie Liew2008-10-19T05:54:23Z2009-08-17T05:13:17Z
<p>Is it possible to scale a UIView down to 0 (width and height is 0) using CGAffineTransformMakeScale? </p>
<p>view.transform = CGAffineTransformMakeScale(0.0f, 0.0f);</p>
<p>Why would this throw an error of "<code><Error>: CGAffineTransformInvert: singular matrix.</code>" ?</p>
<p><br />
<br /></p>
<p><em>Update:
There is another way of scaling down a UIView to 0</em></p>
<pre><code>[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
view.frame = CGRectMake(view.center.x, view.center.y, 0, 0);
[UIView commitAnimations];
</code></pre>
http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c10Object allocate and init in Objective CRonnie Liew2008-10-01T04:31:43Z2009-08-04T00:24:53Z
<p>What is the difference between the following 2 ways to allocate and init an object?</p>
<pre><code>AController *tempAController = [[AController alloc] init];
self.aController = tempAController;
[tempAController release];
</code></pre>
<p>and</p>
<pre><code>self.aController= [[AController alloc] init];
</code></pre>
<p>Most of the apple example use the first method. Why would you allocate, init and object and then release immediately?</p>
http://stackoverflow.com/questions/110065/must-have-tools-for-an-os-x-switcher/110178#11017813Answer by Ronnie Liew for Must have tools for an OS X switcherRonnie Liew2008-09-21T03:37:29Z2009-07-28T03:01:27Z<p>My list would be:</p>
<ul>
<li><a href="http://www.blacktree.com/" rel="nofollow">Quicksilver</a> : Must-have launcher</li>
<li><a href="http://macromates.com/" rel="nofollow">TextMate</a> : Text editor</li>
<li><a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> : Hardcore code editor</li>
<li><a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/" rel="nofollow">NetNewsWire</a> : RSS reader</li>
<li><a href="http://www.adiumx.com/" rel="nofollow">Adium</a> : The only IM client you need</li>
<li><a href="http://www.transmissionbt.com/" rel="nofollow">Transmission</a> : Bittorrent client</li>
<li><a href="http://www.maintain.se/cocktail/index.php" rel="nofollow">Cocktail</a> : System maintenance utility</li>
<li><a href="http://wakaba.c3.cx/s/apps/unarchiver.html" rel="nofollow">The Unarchiver</a> : Archive unpacker program</li>
<li><a href="http://www.macports.org/" rel="nofollow">MacPorts</a> : All for your packages needs</li>
<li><a href="http://www.panic.com/transmit/" rel="nofollow">Transmit</a> : Regular FTP goodness</li>
<li><a href="http://perian.org/" rel="nofollow">Perian</a> : Open source quicktime component supporting AVI, DivX, FLV etc.</li>
<li><a href="http://fluidapp.com/" rel="nofollow">Fluid</a> : Run Web App as a separate Cocoa desktop application.</li>
<li><a href="http://code.google.com/p/qlcolorcode/" rel="nofollow">QLColorCode</a> : Better syntax highlighting for QuickLook in Leopard</li>
<li><a href="http://developer.apple.com/technology/Xcode.html" rel="nofollow">Xcode</a>: Apple's development environment for Mac OS X.</li>
</ul>
http://stackoverflow.com/questions/137326/best-way-to-embed-a-swf-file-in-a-html-page/137349#13734910Answer by Ronnie Liew for Best way to embed a SWF file in a html page?Ronnie Liew2008-09-26T02:03:51Z2009-07-01T06:35:53Z<p>The best approach to embed a SWF into a HTML page is to use <a href="http://code.google.com/p/swfobject/" rel="nofollow">SWFObject</a>. </p>
<p>It is a simple open-source Javascript library that is easy-to-use and standards-friendly method to embed Flash content. </p>
<p>It also offers Flash player version detection. If the user does not have the version of Flash required or has Javascript disabled, they will see a alternate content. You can also use this library to trigger a Flash player upgrade. Once the user has upgraded, they will be redirected back to the page.</p>
<p>An example from the documentation:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>SWFObject dynamic embed - step 3</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("myContent.swf", "myContent", "300", "120", "9.0.0");
</script>
</head>
<body>
<div id="myContent">
<p>Alternative content</p>
</div>
</body>
</html>
</code></pre>
<p>A good tool to use along with this is the SWFObject HTML and Javascript <a href="http://code.google.com/p/swfobject/wiki/generator" rel="nofollow">generator</a>. It basically generates the HTML and Javascript you need to embed the Flash using SWFObject. Comes with a very simple UI for you to input your parameters. </p>
<p>Highly Recommended and very simple to use.</p>
http://stackoverflow.com/questions/1047114/how-do-i-use-a-uisegmentedcontrol-to-switch-views/1047128#10471283Answer by Ronnie Liew for How do I use a UISegmentedControl to switch views? Ronnie Liew2009-06-26T03:00:00Z2009-06-27T00:38:49Z<p>The simplest approach is to have two views that you can toggle their visibility to indicate which view has been selected. Here is some sample code on how it can be done, definitely not an optimized way to handle the views but just to demonstrate how you can use the <em>UISegmentControl</em> to toggle the visible view:
<br/>
<br/></p>
<pre><code>- (IBAction)segmentSwitch:(id)sender {
UISegmentedControl *segmentedControl = (UISegmentedControl *) sender;
NSInteger selectedSegment = segmentedControl.selectedSegmentIndex;
if (selectedSegment == 0) {
//toggle the correct view to be visible
[firstView setHidden:NO];
[secondView setHidden:YES];
}
else{
//toggle the correct view to be visible
[firstView setHidden:YES];
[secondView setHidden:NO];
}
}
</code></pre>
<p><br/>
You can of course further re-factor the code to hide/show the right view.</p>
http://stackoverflow.com/questions/181432/how-to-create-the-indexes-required-for-nsindexpathindexpathwithindexeslength4How to create the "indexes" required for NSIndexPath:indexPathWithIndexes:length:Ronnie Liew2008-10-08T05:09:09Z2009-05-06T11:31:11Z
<p>The class method to create an index path with one or more nodes is:</p>
<pre><code>+ (id)indexPathWithIndexes:(NSUInteger *)indexes length:(NSUInteger)length
</code></pre>
<p>How do we create the "indexes" required in the first parameter? </p>
<p>The documentation listed it as <em>Array of indexes to make up the index path</em> but it is expecting a (NSUinteger *). </p>
<p>To create an index path of 1.2.3.4, is it simply an array of [1,2,3,4] ?</p>
http://stackoverflow.com/questions/215383/right-way-to-implement-touchesmoved2Right way to implement TouchesMoved ?Ronnie Liew2008-10-18T18:26:56Z2009-04-19T22:35:43Z
<p>I have a custom UIView that generates a set of subviews and display them in rows and columns like tiles. What I am trying to achieve is to allow the user to touch the screen and as the finger move, the tiles beneath it disappears. </p>
<p>The code below is the custom UIView that contains the tiles:</p>
<pre><code>- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
int i, j;
int maxCol = floor(self.frame.size.width/TILE_SPACING);
int maxRow = floor(self.frame.size.height/TILE_SPACING);
CGRect frame = CGRectMake(0, 0, TILE_WIDTH, TILE_HEIGHT);
UIView *tile;
for (i = 0; i<maxCol; i++) {
for (j = 0; j < maxRow; j++) {
frame.origin.x = i * (TILE_SPACING) + TILE_PADDING;
frame.origin.y = j * (TILE_SPACING) + TILE_PADDING;
tile = [[UIView alloc] initWithFrame:frame];
[self addSubview:tile];
[tile release];
}
}
}
return self;
}
- (void)touchesBegan: (NSSet *)touches withEvent:(UIEvent *)event {
UIView *tile = [self hitTest:[[touches anyObject] locationInView:self] withEvent:nil];
if (tile != self)
[tile setHidden:YES];
}
- (void)touchesMoved: (NSSet *)touches withEvent:(UIEvent *)event {
UIView *tile = [self hitTest:[[touches anyObject] locationInView:self] withEvent:nil];
if (tile != self)
[tile setHidden:YES];
}
</code></pre>
<p>This approach works but however if the tiles get denser (i.e. small tiles and more tiles on the screen). The iPhone is less responsive as the finger move. It may be the hitTest taking a toll on the processor as it struggles to keep up but would like some opinions.</p>
<p>My questions are:</p>
<ol>
<li><p>Is this an efficient way / right way to implement the touchesMoved?</p></li>
<li><p>If it isn't, what would be the recommended approach?</p></li>
<li><p>I tried moving the functionality into a custom Tile class (a sub UIView) which the class above would create and add as a subview. This subview Tile can handle the TouchesBegan but as the finger move, the other tiles does not receive the TouchesBegan even since the touches are still part of the initial touch sequence. Is there a way to implement it through the subview Tile class, how do other tiles receive the TouchesBegan/TouchesMoved event as the finger move?</p></li>
</ol>
http://stackoverflow.com/questions/725827/does-anyone-know-a-tool-for-git-similar-to-svn-time-lapse-view/726225#7262251Answer by Ronnie Liew for Does anyone know a tool for Git similar to SVN Time-Lapse ViewRonnie Liew2009-04-07T15:04:42Z2009-04-07T15:04:42Z<p>If you are on a mac, you might want to try <a href="http://gitx.frim.nl/" rel="nofollow">GitX</a></p>
<p>As quoted from the site:</p>
<blockquote>
<p>GitX is a git GUI specifically for Mac
OS X. It currently features a history
viewer much like gitk and a commit GUI
like git gui. But then in silky smooth
OS X style!</p>
<p>Features:</p>
<ul>
<li>Detailed history viewer </li>
<li>Nice commit GUI, allowing per-commit staging</li>
<li>Fast Nice Aqua interface</li>
<li>Paste commits to gist.github.com</li>
<li>Explore tree of any revision</li>
<li>QuickLook integration</li>
</ul>
</blockquote>
<p>May not do completely what you want but the history viewer should help.</p>
http://stackoverflow.com/questions/185652/how-to-scale-a-uiimageview-proportionally3How to scale a UIImageView proportionally ?Ronnie Liew2008-10-09T01:58:39Z2009-02-11T16:44:09Z
<p>I have a UIImageView and the objective is to scale it down proportionally by giving it either a height or width. </p>
<pre><code>UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3092/2915896504_a88b69c9de.jpg"]]];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
//Add image view
[self.view addSubview:imageView];
//set contentMode to scale aspect to fit
imageView.contentMode = UIViewContentModeScaleAspectFit;
//change width of frame
CGRect frame = imageView.frame;
frame.size.width = 100;
imageView.frame = frame;
</code></pre>
<p>The image did get resized but the position is not at the top left. What is the best approach to scaling image/imageView and how do I correct the position?</p>
http://stackoverflow.com/questions/514216/rails-ruby-script-generate-model-where-are-the-docs/514235#5142352Answer by Ronnie Liew for Rails: ruby script/generate model, where are the docs?Ronnie Liew2009-02-05T01:56:50Z2009-02-05T02:01:50Z<p>This document on <a href="http://dizzy.co.uk/ruby_on_rails/cheatsheets/rails-migrations" rel="nofollow">Rails Migration</a> would help. </p>
<p>With respect to the naming convention, I think the general adopted convention for Ruby on Rails is to have underscores.</p>
<p>To know which variable types are acceptable, refer to the section on <a href="http://dizzy.co.uk/ruby_on_rails/cheatsheets/rails-migrations#database_mapping" rel="nofollow">Database Mapping</a>.</p>
http://stackoverflow.com/questions/445487/make-link-on-swf-file-to-another-html/445738#4457382Answer by Ronnie Liew for make link on SWF File to another HTML.Ronnie Liew2009-01-15T05:16:32Z2009-01-15T05:16:32Z<p>You can use SWFObject to add a <em>flashvar</em> like this:</p>
<pre><code><script type="text/javascript">
var flashvars = {};
flashvars.targetURL = "http://www.stackoverflow.com";
var params = {};
var attributes = {};
swfobject.embedSWF("myflashmovie.swf", "myAlternativeContent", "800", "600", "9.0.0", false, flashvars, params, attributes);
</script>
</code></pre>
<p>That being said, this is assuming that within your Flash movie, it is coded such that the Flash movie is expecting that <em>flashvar</em> and using that link to the stipulated URL
<br/><br /></p>
<p>In AS 2.0 it would be:</p>
<pre><code>getURL(_root.targetURL);
</code></pre>
<p><br/></p>
<p>In AS 3.0 it would be:</p>
<pre><code>var flashvars:Object = LoaderInfo(this.root.loaderInfo).parameters;
var linkURL = flashvars['targetURL'];
var link:URLRequest = new URLRequest (linkURL);
navigateToURL(link);
</code></pre>
http://stackoverflow.com/questions/34674/performance-difference-between-dot-notation-versus-method-call-in-objective-c2Performance difference between dot notation versus method call in Objective-CRonnie Liew2008-08-29T16:39:51Z2008-11-10T15:09:59Z
<p>You can use a standard dot notation or a method call in Objective-C to access a property of an object in Objective-C.</p>
<pre><code>myObject.property = YES;
</code></pre>
<p>or</p>
<pre><code>[myObject setProperty:YES];
</code></pre>
<p>Is there a difference in performance (in terms of accessing the property)? Is it just a matter of preference in terms of coding style?</p>
http://stackoverflow.com/questions/255133/easiest-implementation-of-onreleaseoutside-in-as3/256007#2560071Answer by Ronnie Liew for Easiest implementation of onReleaseOutside in AS3?Ronnie Liew2008-11-01T19:42:17Z2008-11-01T21:17:47Z<p>Have you looked at this event:</p>
<pre><code>flash.events.Event.MOUSE_LEAVE
</code></pre>
<p><br />
<br />
From the documentation:</p>
<p><strong>Dispatched by the Stage object when the mouse pointer moves out of the stage area.
The Event.MOUSE_LEAVE constant defines the value of the type property of a mouseLeave event object.</strong>
<br />
<br /></p>
<p>It will solve your problem if you are only interested whether the user's mouse if off the stage instead of just outside that particular MovieClip.</p>
http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage/245471#2454710Answer by Ronnie Liew for dimensions of loaded swf's stageRonnie Liew2008-10-29T01:18:17Z2008-10-29T01:18:17Z<p>Did you try the accessing the following:</p>
<pre><code>stage.stageWidth
stage.stageHeight
</code></pre>
<p><br /></p>
<p>From the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Stage.html#stageWidth" rel="nofollow">flash documentation</a>:</p>
<p>If the value of the Stage.scaleMode property is set to StageScaleMode.NO_SCALE when the user resizes the window, the Stage content maintains its size while the stageHeight property changes to reflect the new height size of the screen area occupied by the SWF file. (In the other scale modes, the stageHeight property always reflects the <strong>original height</strong> of the SWF file.)</p>
http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs/232652#2326522Answer by Ronnie Liew for What are the best Cocoa-Touch/iPhone programming blogs?Ronnie Liew2008-10-24T06:34:37Z2008-10-24T06:34:37Z<p><a href="http://iphonedevelopment.blogspot.com/" rel="nofollow">iPhone Development</a></p>
http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs/232617#2326172Answer by Ronnie Liew for What are the best Cocoa-Touch/iPhone programming blogs?Ronnie Liew2008-10-24T06:07:09Z2008-10-24T06:33:32Z<p><a href="http://iphonedevelopertips.com/" rel="nofollow">iPhone Developer Tips, Tricks and Tutorials</a></p>
http://stackoverflow.com/questions/211219/possible-to-use-moviecliploader-to-load-a-swf-from-a-different-server/217664#2176640Answer by Ronnie Liew for Possible to use MovieClipLoader() to load a swf from a different server?Ronnie Liew2008-10-20T06:45:01Z2008-10-20T06:45:01Z<p>In the event of any cross-domain request, Flash will look for the crossdomain.xml file at the root of the domain. For example, if you are requesting an XML file from: <code>http://mysubdomain.mydomain.com/fu/bar/</code> </p>
<p>Flash will check if a crossdomain.xml file exist at: <code>http://mysubdomin.mydomain.com/crossdomain.xml</code></p>
<p>If you ever need to load a crossdomain.xml file from a different location, you can do it via <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/system/Security.html#loadPolicyFile()" rel="nofollow">Security.loadPolicyFile</a> . Bear in mind that the location of this crossdomain have any impact on the security access you have.</p>
<p>You may also want to read up on the <a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer9-10_security.html" rel="nofollow">security changes in Flash Player 10</a>.</p>
http://stackoverflow.com/questions/101427/flex-and-crossdomain-xml/217651#2176510Answer by Ronnie Liew for Flex and crossdomain.xmlRonnie Liew2008-10-20T06:32:17Z2008-10-20T06:38:07Z<p>There are no workaround for the crossdomain file, it is required to support the crossdomain data access or crossdomain scripting. In the event of any cross-domain request, Flash will look for the crossdomain.xml file at the root of the domain. For example, if you are requesting an XML file from: </p>
<p><code>http://mysubdomain.mydomain.com/fu/bar/</code> </p>
<p>Flash will check if a crossdomain.xml file exist at: </p>
<p><code>http://mysubdomin.mydomain.com/crossdomain.xml</code></p>
<p>You can place the crossdomain.xml file in other location. However, when you ever need to load a crossdomain.xml file from a different location, you have to do it via <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/system/Security.html#loadPolicyFile()" rel="nofollow">Security.loadPolicyFile</a> . Bear in mind that the location of this crossdomain have any impact on the security access you have. Flash will only grant access to the folder that contains the crossdomain and its child folders.</p>
<p>You may also want to read up on the <a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer9-10_security.html" rel="nofollow">security changes in Flash Player 10</a>.</p>
http://stackoverflow.com/questions/213443/do-you-need-to-put-something-in-your-code-to-access-an-asset-allowed-by-crossdoma/216647#2166471Answer by Ronnie Liew for Do you need to put something in your code to access an asset allowed by crossdomain.xml?Ronnie Liew2008-10-19T16:47:18Z2008-10-20T06:24:19Z<blockquote>
<p>Will flash handle the 'go get
crossdomain.xml and authenticate
everything' behind the scenes or do I
need to include some special code
beyond simply requesting the swf file?</p>
</blockquote>
<p>In the event of any cross-domain request, Flash will look for the crossdomain.xml file at the root of the domain. For example, if you are requesting an XML file from: <code>http://mysubdomain.mydomain.com/fu/bar/</code> </p>
<p>Flash will check if a crossdomain.xml file exist at: <code>http://mysubdomin.mydomain.com/crossdomain.xml</code></p>
<p>If you ever need to load a crossdomain.xml file from a different location, you can do it via <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/system/Security.html#loadPolicyFile()" rel="nofollow">Security.loadPolicyFile</a> . Bear in mind that the location of this crossdomain have any impact on the security access you have.</p>
<p>You may also want to read up on the <a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer9-10_security.html" rel="nofollow">security changes in Flash Player 10</a>.</p>
http://stackoverflow.com/questions/216069/security-issues-when-using-amazon-s3-file-hosting-for-flex-modules-swfs/216091#2160912Answer by Ronnie Liew for Security issues when using Amazon S3 file hosting for Flex modules/swfsRonnie Liew2008-10-19T06:06:05Z2008-10-19T06:06:05Z<p>You would have to give security access to the SWFs because they are not from the same domains. The approach is similar to the crossdomain for webservices except that you need to place the following method call "<a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002104.html" rel="nofollow">security.allowDomain</a>" instead of crossdomain XMLs.</p>
<p>In order for the SWFs from different domains to examine and modify variables, objects, properties, methods (cross-domain scripting), you would need to call "security.allowDomain". </p>
<p>The Adobe documentation covers it in great details.</p>
http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/109356#1093564Answer by Ronnie Liew for What is a good GUI text editor for the Mac?Ronnie Liew2008-09-20T20:55:32Z2008-09-26T06:54:36Z<p><a href="http://macromates.com/" rel="nofollow">TextMate</a> is great as a general GUI text editor. Very lightweight and fast. Has a fair amount of TMBundles (plugins basically) that gives you like shortcuts, auto-complete.</p>
<p>if you are looking for more precise code hinting and specialized plugins, <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> would probably be an option.</p>
http://stackoverflow.com/questions/1136033/where-is-xcode-located-on-the-hard-drive/1136521#1136521Comment by Ronnie Liew on Where is Xcode located on the hard drive?Ronnie Liew2009-10-28T08:09:57Z2009-10-28T08:09:57ZTo get QuickSilver to index Xcode, go to "Catalog" in Quicksilver and check the "Find All Applications"http://stackoverflow.com/questions/1051543/should-i-use-self-keyword-properties-in-the-implementationComment by Ronnie Liew on Should I Use self Keyword (Properties) In The Implementation?Ronnie Liew2009-06-27T02:16:01Z2009-06-27T02:16:01ZForgot to add that if you are doing Cocoa development that uses KVO or bindings, it is more advisable to use "self" instead of direct access because Key-Value Observing and Cocoa Binding depends on accessor methods being called to synchronize updates/changes.http://stackoverflow.com/questions/1051543/should-i-use-self-keyword-properties-in-the-implementationComment by Ronnie Liew on Should I Use self Keyword (Properties) In The Implementation?Ronnie Liew2009-06-27T01:17:35Z2009-06-27T01:17:35ZI have no data to validate this but according to the documentation from Apple:
"In methods you can directly access the instance variables of your class’s instances. However, accessor methods are recommended instead of direct access, except in cases where performance is paramount."
Refer to: <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/ObjCTutorial/10AppendixA/10AppendixA.html" rel="nofollow">developer.apple.com/DOCUMENTATION/Cocoa/…</a>http://stackoverflow.com/questions/110065/must-have-tools-for-an-os-x-switcher/110178#110178Comment by Ronnie Liew on Must have tools for an OS X switcherRonnie Liew2009-02-11T09:32:40Z2009-02-11T09:32:40ZAs compared to the more 'lightweight' TextMate. :Dhttp://stackoverflow.com/questions/445487/make-link-on-swf-file-to-another-html/445625#445625Comment by Ronnie Liew on make link on SWF File to another HTML.Ronnie Liew2009-01-15T05:07:21Z2009-01-15T05:07:21ZHi Talha, you should try to edit your post to give a better description rather than just adding more replies to the thread. That is the typical way of how to ask questions here is Stack Overflow.http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs/232617#232617Comment by Ronnie Liew on What are the best Cocoa-Touch/iPhone programming blogs?Ronnie Liew2008-10-24T06:35:14Z2008-10-24T06:35:14ZFixed that :p Didn't read the requirements.http://stackoverflow.com/questions/213655/how-do-you-specify-a-custom-location-for-crossdomain-xml-in-actionscript/213825#213825Comment by Ronnie Liew on How do you specify a custom location for crossdomain.xml in actionscript?Ronnie Liew2008-10-20T06:23:04Z2008-10-20T06:23:04ZJust something that you might want to take note of the "opt-in meta policies" security changes that comes Flash 9 and higher version players. You might want to refer to <a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer9-10_security.html" rel="nofollow">adobe.com/devnet/flashplayer/…</a>http://stackoverflow.com/questions/215383/right-way-to-implement-touchesmoved/215531#215531Comment by Ronnie Liew on Right way to implement TouchesMoved ?Ronnie Liew2008-10-18T20:30:39Z2008-10-18T20:30:39ZThanks for the feedback on this. If I were to shift the event handling to the custom Tile subview, how would the underlying tiles be notified when the finger move across them? The touches would still 'belong' to the initial touch sequence for the first tile.