User adam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:36:21Z http://stackoverflow.com/feeds/user/33604 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1436239/creating-and-serving-zipped-files-with-php/1784122#1784122 1 Answer by adam for Creating and serving zipped files with php adam 2009-11-23T16:06:07Z 2009-11-23T16:06:07Z <p>I had this problem and it turned out the downloaded zip file had a new line inserted at the very beginning.</p> <p>Solved by using ob_clean and flush functions</p> <pre><code> header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=".basename($archive_file_name)); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".filesize($archive_file_name)); ob_clean(); flush(); echo readfile("$archive_file_name"); </code></pre> http://stackoverflow.com/questions/355690/symbian-c-stomp-library 1 Symbian C++ STOMP library adam 2008-12-10T11:00:06Z 2009-11-20T17:06:34Z <p>I want my S60 Application to utilize the Stomp protocol.</p> <p>Although it would be fairly simple to implement myself (but nothing is ever as simple as I hope with Symbian) - I am wondering if anyone has any experience in this already.</p> <p>It seems a Stomp library exists in almost every other language already. The closest match for Symbian would be the C++ library listed <a href="http://stomp.codehaus.org/Clients" rel="nofollow">here</a> but that is embedded quite integrally within the ActiveMQ source.</p> <p>Can anyone offer any advice/experience?</p> <p>Thanks!</p> http://stackoverflow.com/questions/376104/uitextfield-in-uialertview-on-iphone-how-to-make-it-responsive/1762037#1762037 1 Answer by adam for UITextField in UIAlertView on iPhone - how to make it responsive? adam 2009-11-19T09:35:47Z 2009-11-19T09:35:47Z <p>A quite nice approach is, you can use the delegate methods of the UITextFieldDelegate to move the dialog up only when the keyboard is activated. See below.</p> <pre><code>- (void)textFieldDidBeginEditing:(UITextField *)textField { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.5]; [UIView setAnimationDelegate:self]; CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, -20); [dialog setTransform: moveUp]; [UIView commitAnimations]; } - (BOOL)textFieldShouldReturn:(UITextField *)textField { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.5]; [UIView setAnimationDelegate:self]; CGAffineTransform moveDown = CGAffineTransformMakeTranslation(0.0, 0.0); [dialog setTransform: moveDown]; [textField resignFirstResponder]; return YES; } </code></pre> http://stackoverflow.com/questions/756079/flex-vertically-position-children-of-a-horizontal-hbox 0 Flex - Vertically position children of a horizontal HBox adam 2009-04-16T13:22:04Z 2009-11-18T10:30:10Z <p>I have a custom HBox as so....</p> <p>public class MyBar extends HBox {</p> <pre><code>public function MyBar() { super(); this.height = 65; this.percentWidth = 100; var newButton:Button = new Button(); //..... newButton.y = 20; var spacer1:Spacer = new Spacer(); spacer1.percentWidth = 50; var spacer2:Spacer = new Spacer(); spacer2.percentWidth = 50; this.addChild(spacer1); this.addChild(newButton); this.addChild(spacer2); } </code></pre> <p>}</p> <p>This displays a button in the center of the HBox, but the button is aligned to the top of the Box, I would like it to be in the center.</p> <p>I'm sure I've had this working before as simply as setting the y value. But doesn't seem to be working now. I am using SDK 3.3</p> <p>Anyone have any clues as to why I'm having difficulty with this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1544603/iphone-apply-landscape-transform-to-uiviewanimationtransition 1 iPhone - Apply landscape transform to UIViewAnimationTransition adam 2009-10-09T15:45:49Z 2009-11-13T03:00:04Z <p>Hi</p> <p>I apply the following transform to my view to display it in landscape mode.</p> <pre><code>CGAffineTransform transform = CGAffineTransformMakeRotation((90.0 * M_PI) / 180); transform = CGAffineTransformTranslate(transform, +80, +80); </code></pre> <p>Which works fine, now I have two or three other views I want to display in landscape. I would like to animate between these using the <code>UIViewAnimationTransitionCurlUp</code> and <code>UIViewAnimationTransitionCurlDown</code> animation presets.</p> <p>However, when applying these in landscape mode the curl effect happens as if the view was in portrait.</p> <p>I would like to be able to transform the curl animation so it looks good in landscape but it seems <code>UIViewAnimationTransition</code> does not respond to setTransform:</p> <p>Does anyone have any ideas?</p> <p>Thanks! :)</p> http://stackoverflow.com/questions/1519046/iphone-change-target-or-selector-for-back-button-on-uinavigationcontroller 1 iPhone - Change target or selector for Back Button on UINavigationController adam 2009-10-05T09:31:32Z 2009-10-06T12:10:28Z <p>The default behaviour when pushing a UIViewController on a UINavigationController is for the OS to display a back button that pops the UIViewController off again.</p> <p>I have the desire to set a different behavior for this back button (to go back two screens) - is there anyway I can do this without having to create my own back button with custom graphic etc.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1519046/iphone-change-target-or-selector-for-back-button-on-uinavigationcontroller/1525210#1525210 0 Answer by adam for iPhone - Change target or selector for Back Button on UINavigationController adam 2009-10-06T12:10:28Z 2009-10-06T12:10:28Z <p>As I half suspected originally, this isn't possible any exceptionally easy way. So same method applies when creating any custom UIBarButtonItem, just have to source the back button icon from Google....</p> <pre><code>UIButton *backButtonInternal = [[UIButton alloc] initWithFrame:CGRectMake(0,0,54,30)]; [backButtonInternal setBackgroundImage:[UIImage imageNamed:@"backButton.png"] forState:UIControlStateNormal]; boldSystemFontOfSize:12]]; [backButtonInternal addTarget:self action:@selector(backButtonPressed:) forControlEvents:UIControlEventTouchUpInside]; UIBarButtonItem *backBarButton = [[UIBarButtonItem alloc] initWithCustomView:backButtonInternal]; [backButtonInternal release]; [[self navigationItem] setLeftBarButtonItem:backBarButton]; [backBarButton release]; </code></pre> http://stackoverflow.com/questions/839211/iphone-uitableview-with-uisearchbar-and-refreshing-section-index 2 iPhone UITableView with UISearchBar and refreshing Section Index adam 2009-05-08T10:29:44Z 2009-10-02T23:40:23Z <p>I have a UITableView with a UISearchBar at the top of it.</p> <p>I also use the Section Index delegate to display ABC...XYZ on the right hand side.</p> <p>Problem occurs when I click on the Search Box and the keyboard comes up from the bottom, the Section Index squashes so only A*D*...*Z are displayed - when I close the Search and they keyboard goes away, the Index stays in this "squashed" state until I scroll or similar.</p> <pre><code> // animate the searchbar [UIView beginAnimations:nil context:NULL]; CGRect tempRect = [[self searchBar] frame]; tempRect.size.width = 320-kMarginRight; [[self searchBar] setFrame:tempRect]; [UIView commitAnimations]; // animate the search index back into view for (UIView *view in [[self tableView] subviews]) { if ([view respondsToSelector:@selector(moveIndexIn)]) { MovableTableViewIndex *index = (MovableTableViewIndex*)view; [index moveIndexIn]; } } // try a whole load of stuff to try and get the section indexes to draw again properly // none of which work! [searchBar setText:@""]; [searchBar resignFirstResponder]; letUserSelectRow = YES; searching = NO; [[self navigationItem] setRightBarButtonItem:nil]; [[self tableView] setScrollEnabled:YES]; [[self tableView] reloadData]; [[self tableView] flashScrollIndicators]; [[self tableView] sizeToFit]; [[self tableView] zoomScale]; [[self tableView] reloadSectionIndexTitles]; </code></pre> <p>My questions are, has anyone seen this behaviour? Is there a way to redraw the Section Index on the RHS (<code>[[self tableView] reloadData]</code> doesn't do the trick)</p> <p>Thanks a million!</p> http://stackoverflow.com/questions/1465394/iphone-get-position-of-uiview-within-entire-uiwindow 1 iPhone - Get Position of UIView within entire UIWindow adam 2009-09-23T11:23:43Z 2009-09-23T11:32:34Z <p>The position of a <code>UIView</code> can obviously be determined by <code>view.center</code> or <code>view.frame</code> etc. but this only returns the position of the <code>UIView</code> in relation to it's immediate superview.</p> <p>I need to determine the position of the <code>UIView</code> in the entire 320x480 co-ordinate system. For example, if the <code>UIView</code> is in a <code>UITableViewCell</code> it's position within the window could change dramatically irregardless of the superview.</p> <p>Any ideas if and how this is possible?</p> <p>Cheers :)</p> http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the-iphone/1433609#1433609 -1 Answer by adam for How to programmatically send SMS on the iPhone? adam 2009-09-16T15:09:18Z 2009-09-16T15:09:18Z <p>Did anyone ever find a solution for this? I am aware of breaking out of the app using an sms: url specifier, however I really would like to pre-populate the contents of the SMS, similar to how is possible using mailto:</p> <p>Thanks</p> http://stackoverflow.com/questions/1410156/lost-private-key-for-iphone-distribution-certificate-what-could-be-solutions/1410173#1410173 3 Answer by adam for Lost Private Key For iPhone Distribution Certificate. What could be solutions? adam 2009-09-11T10:30:32Z 2009-09-11T10:30:32Z <p>Hi</p> <p>Revoke your current certificate, wait a few seconds and refresh the page and you should see a button "Request Certificate". You'll have to follow the Certificate Signing Request instructions again, and upload the .csr file. You'll then have to wait for your Team Administrator (could well be you) to Accept the new certificate before downloading it and installing in your KeyChain.</p> <p>You'll have to create a new provisioning profile for the App, using the new certificate.</p> <p>Hope this helps :)</p> http://stackoverflow.com/questions/828777/iphone-access-uitableviewcontroller-from-uitableviewcell 1 iphone - access uitableviewcontroller from uitableviewcell adam 2009-05-06T09:17:22Z 2009-09-10T20:54:10Z <p>Hi</p> <p>I have a structure like this....</p> <pre><code>UITableViewController -&gt; UITableViewCell -&gt; UIView </code></pre> <p>I need the <code>UIView</code> to access a HashTable (<code>NSMutableDictionary</code>) in the <code>UITableViewController</code></p> <p>Is there a way to access the ViewController simply from the ViewCell (using [ViewCell superview] obviously won't work) ....Do I need to go down through the AppDelegate using <code>[[UIApplication sharedApplication] delegate]</code>?</p> <p>Thanks!</p> http://stackoverflow.com/questions/776722/flex-as3-dispatch-event-to-all-instances-of-itemrenderer 0 Flex AS3 - Dispatch Event to all instances of ItemRenderer adam 2009-04-22T11:20:46Z 2009-09-09T11:57:46Z <p>Hi</p> <p>I have a List that uses a custom ItemRenderer. Is there a way for the owner (List) to dispatch a custom event I have created, to all instances of it's ItemRenderer?</p> <p>For example, I want to dispatch an event that will add text to a textbox within the item renderer. One or more item renderers will be able to respond to this event depending on certain user interactions.</p> <p>Is there a way?</p> <p>Thanks :)</p> http://stackoverflow.com/questions/965375/change-uipickerview-background/1378491#1378491 1 Answer by adam for Change UIPickerView background adam 2009-09-04T10:45:15Z 2009-09-04T10:45:15Z <p>My UIPickerView has 3 components. And no Selection Indicator.</p> <p>This gives it 11 subviews. <code>[[picker subviews] count]</code></p> <p>Hiding the first and the last subview totally removes the background.</p> <p>[(UIView*)[[picker subviews] objectAtIndex:0] setHidden:YES]; [(UIView*)[[picker subviews] objectAtIndex:10] setHidden:YES];</p> <p>Hiding every third other subview (indexes 1, 4 and 7) hides the opaque background on the components. Giving quite a nice effect that I can skin as I desire.</p> <p>Hope that helps someone :)</p> http://stackoverflow.com/questions/1341088/justify-text-in-a-uilabel-newspaper-style 0 Justify text in a UILabel (newspaper style) adam 2009-08-27T13:25:43Z 2009-08-27T13:54:31Z <p>Is this possible? the effect I want is for the text to align so the left and right sides are straight. Similar to the style of a newspaper.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1340224/iphone-uitextfield-change-placeholder-text-color 0 iPhone UITextField - Change placeholder text color adam 2009-08-27T10:36:19Z 2009-08-27T10:36:19Z <p>I'd like to change the color of the placeholder text I set in my UITextField controls, to make it black.</p> <p>I'd prefer to do this without using normal text as the placeholder and having to override all the methods to imitate the behaviour of a placeholder.</p> <p>I believe if I override this method..</p> <pre><code>- (void)drawPlaceholderInRect:(CGRect)rect </code></pre> <p>..then I should be able to do this. But I'm unsure how to access the actual placeholder object from within this method.</p> http://stackoverflow.com/questions/336801/memory-management-practices-and-tools-for-symbian-c 2 Memory management practices and tools for Symbian C++ adam 2008-12-03T10:49:24Z 2009-08-19T17:22:11Z <p>Hi,</p> <p>I have pretty much finished my first working Symbian application, but in my hastened learning have paid little attention to memory management and pushing to and cleaning up the stack?</p> <p>Could somebody please point me in the direction of some of the best practises to use here, and maybe some of the best leak detection/memory profiling tools.</p> <p>For example, if I grab a TDesC or a TPtrC16 inside a function, how do I then clean them up the best way, is it simply</p> <pre><code>TPtrC16 temp = ... temp.CleanupClosePushL(); CleanupStack::PopAndDestroy() </code></pre> <p>..for everything?</p> <p>Thanks and please forgive me, I am a self confessed Symbian n00b.</p> http://stackoverflow.com/questions/635112/uitabbarcontroller-show-more-tab-even-with-only-four-tab-items 0 UITabBarController - Show "More" tab even with only four tab items adam 2009-03-11T15:42:58Z 2009-08-08T14:15:16Z <p>Hi</p> <p>I have a UITabBarController populated with an array of 4 ViewControllers. This obviously does not trigger the More... tab to be displayed.</p> <p>However I would like to give my users the option to remove some of the tabs, or change the order of them, even though there are only four. Is there a way to do this that anyone knows about?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1132268/how-can-i-append-httpreferer-to-query-string-using-htaccess 0 How can I append HTTP_REFERER to query string using htaccess? adam 2009-07-15T15:48:59Z 2009-07-16T10:17:23Z <p>In my .htaccess file I have a set of rules as follows:</p> <pre><code>RewriteRule ^dir/page1$ /bleh/docs/?id=12 [L,QSA] RewriteRule ^dir/page2$ /bleh/docs/?id=13 [L,QSA] RewriteRule ^dir/page3$ /bleh/docs/?id=14 [L,QSA] </code></pre> <p>Sometimes one of these rules may be accessed via a redirect from another site (referer). I would like to be able to append the referrer to the query string like this:</p> <pre><code>RewriteRule ^dir/page2$ /bleh/docs/?id=13&amp;ref=%{HTTP_REFERER} [L,QSA] </code></pre> <p>However this does not seem to work.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/295778/iphone-debugging-pointer-being-freed-was-not-allocated-errors 3 iPhone - debugging "pointer being freed was not allocated" errors adam 2008-11-17T15:04:45Z 2009-06-11T23:04:49Z <p>When over freeing a pointer you may see an error such as</p> <p>"pointer being freed was not allocated"</p> <p>When debugging with the simulator, I add a build argument MallocStackLogging = YES - this allows me to use malloc_history in the terminal to track down where I have over freed a pointer.</p> <p>If I debug on the device with this build argument I get all sorts of console errors "cannot create stack log files" etc.</p> <p>Oddly, I get some over freed pointer errors appearing on the device, but not on the simulator.</p> <p>Has anyone had any experience tracking these down using the device itself?</p> <p>Thanks!</p> http://stackoverflow.com/questions/528312/creating-an-xml-document-using-namespaces-in-java 2 Creating an XML document using namespaces in Java adam 2009-02-09T14:22:47Z 2009-06-01T18:45:10Z <p>I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal <a href="http://www.google.com" rel="nofollow">favourite tool</a> so was hoping someone may be able to help me out.</p> http://stackoverflow.com/questions/424031/symbian-c-use-a-ttf-font-in-your-application 2 Symbian C++ - Use a TTF font in your application? adam 2009-01-08T12:03:01Z 2009-05-28T12:09:00Z <p>Hi</p> <p>Is it possible to package a .TTF file in your application and use it to render text at runtime, and have the application release the font after use?</p> <p>I've found bits of information scattered around the forum, but nothing conclusive.</p> <p>Can anyone offer any advice?</p> http://stackoverflow.com/questions/916789/mysql-nested-select-in-update-of-same-table 0 mysql nested SELECT in UPDATE of same table adam 2009-05-27T16:42:40Z 2009-05-27T22:27:01Z <p>Hi,</p> <p>Essentially I need to do something like this.... this is just an example... but the syntax of the first query doesn't work in MySQL</p> <pre><code>update people set prize = '' where prize = 'Gold' and class = (select class from people where id = person_id); update people set prize = 'Gold' where id = &lt;id&gt;; </code></pre> <p>Only one person can have the Gold prize in any class. I only know the person_id of the person who receives the Gold prize.</p> <p>I am trying to blank out any previous Gold prize winners in the same class as person_id in the first query. Then set the new Gold winner in the second.</p> <p>I believe I need to use some type of inner join, but I'm not 100% sure on this.</p> <p>What would be even smarter if I could do the whole lot in one query!</p> <p>Can anyone lend advice?</p> <p>Thanks :)</p> http://stackoverflow.com/questions/589840/flex-as3-drag-drop-custom-drop-feedback 1 Flex/AS3 Drag Drop - Custom Drop Feedback adam 2009-02-26T09:39:45Z 2009-05-19T18:55:05Z <p>Hi</p> <p>I am using a <code>HorizontalList</code> component to display a list of images, you can drag images from another component to join the list, this all works fine.</p> <p>If I do <code>list.showDropFeedback(event)</code> I get an unsightly black bar at the top of images in the <code>HorizontalList</code> - what I really want is a line to the left/right of the image, where the new one will actually sit.</p> <p>I guess I need to define a custom DropFeedback to override the default. Does anyone know if there there is a way to achieve this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/862496/testing-a-php-object/862537#862537 1 Answer by adam for Testing a php object adam 2009-05-14T10:05:30Z 2009-05-14T10:05:30Z <p>From <a href="http://uk3.php.net/manual/en/function.mysql-db-query.php" rel="nofollow">http://uk3.php.net/manual/en/function.mysql-db-query.php</a></p> <pre><code> mysql_db_query() selects a database, and executes a query on it. </code></pre> <p>Returns a positive MySQL result resource to the query result, or FALSE on error. The function also returns TRUE/FALSE for INSERT/UPDATE/DELETE queries to indicate success/failure. </p> <p>So you can have MyClass set an error flag in the constructor, as the return value from mysql_db_query() you then check for in your code..</p> <pre><code>foo = new Myclass('my params'); if (foo-&gt;error) { // error occured } else { // all is good } </code></pre> <p>hope this helps!</p> http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller 1 Hidden UINavigationController inside UITabBarController adam 2008-11-12T15:36:08Z 2009-05-10T20:46:59Z <p>I have an application with 5 UIViewControllers each inside a corresponding UINavigationController, all tucked inside a UITabBarController that displays 5 tabs at the bottom of the screen.</p> <p>I want to display another UIViewController (inside a UINavigationController) when a dialog button is pressed.</p> <p>This view should only be loaded and unloaded programatically; ie. it should not appear in the tab bar. However, I want the tab bar to be visible always.</p> <p>If I add the [UINavigationController view] to [self window] the Tab Bar is covered. If I add it to any other layer, the Navigation Controller adds on the compensation it has for the status bar so appears further down than expected.</p> <p>A solution would be to have the 6th Nav Controller added to the Tab Bar with the others, but with its tabBarItem hidden. Then I can show it and hide it using the tabBars selectedIndex property.</p> <p>Accessing the tabBarItem through the View Controller shows no obvious way of doing this.</p> <p>Anyone have any ideas?</p> <p>Thanks!</p> http://stackoverflow.com/questions/839242/iphone-how-to-put-settings-bundle-seen-through-system-settings-app-into-your-ow 3 iPhone - how to put Settings bundle seen through System Settings App into your own App? adam 2009-05-08T10:38:07Z 2009-05-08T16:31:21Z <p>I want to create a settings page from within my app that looks exactly like the one that I would create in the System Settings Application using a Settings.bundle and Root.plist.</p> <p>Is there an easy way to access the controls like PSMultiValueSpecifier etc. and add them to an actual View?</p> <p>Thanks!</p> http://stackoverflow.com/questions/839279/iphone-detect-if-device-is-charging 1 iPhone - Detect if device is charging adam 2009-05-08T10:49:34Z 2009-05-08T12:36:15Z <p>I can't find anything definate using <a href="http://www.google.com" rel="nofollow">my favourite tool</a> however I thought I would put it out here....</p> <p>Is there a way, using the iPhone SDK, for an App to detect if the device is in a state of receiving power (charging, dock etc.)</p> <p>I would like to be able to disable the idleTimer automatically if the device is receiving power (otherwise it is a user-specified setting).</p> <p>Thanks!</p> http://stackoverflow.com/questions/803918/is-it-possible-to-add-info-or-help-text-to-an-iphone-settings-bundle/839247#839247 3 Answer by adam for Is it possible to add info or help text to an iPhone settings bundle? adam 2009-05-08T10:39:32Z 2009-05-08T10:39:32Z <p>The way I do it, and the way I have seen other third parties apps do it is just to use an informative Title as a PSGroupSpecifier</p> <p>I have only seen the native Apple apps do it in this other, slightly nicer way. I expect the ability is buried deep in the undocumented regions of the SDK.</p> http://stackoverflow.com/questions/806599/point-an-img-tag-to-a-image-dynamically-generated-by-php/806608#806608 1 Answer by adam for Point an <img> tag to a image dynamically generated by PHP? adam 2009-04-30T12:14:57Z 2009-04-30T12:44:12Z <p>Try adding something like this to your .htaccess file</p> <pre><code>RewriteEngine on RewriteRule ^(.*)\.jpg$ /scripts/$1.php </code></pre> http://stackoverflow.com/questions/355690/symbian-c-stomp-library/1771896#1771896 Comment by adam on Symbian C++ STOMP library adam 2009-11-23T12:48:29Z 2009-11-23T12:48:29Z congratulations. http://stackoverflow.com/questions/339923/how-to-set-cellpadding-cellspacing-in-css/339933#339933 Comment by adam on How to set cellpadding & cellspacing in CSS? adam 2009-11-19T09:46:18Z 2009-11-19T09:46:18Z That's true. Also border-collapse:collapse is often a useful one. Also, I meant cellspacing and cellpadding are deprecated in XHTML 1.1. http://stackoverflow.com/questions/376104/uitextfield-in-uialertview-on-iphone-how-to-make-it-responsive/535516#535516 Comment by adam on UITextField in UIAlertView on iPhone - how to make it responsive? adam 2009-11-19T09:37:02Z 2009-11-19T09:37:02Z [textField setContentVerticalAlignment:UIControlContentVerticalAlignmentCenter]; http://stackoverflow.com/questions/1544603/iphone-apply-landscape-transform-to-uiviewanimationtransition/1549000#1549000 Comment by adam on iPhone - Apply landscape transform to UIViewAnimationTransition adam 2009-10-11T09:29:06Z 2009-10-11T09:29:06Z eh? The view is rotated fine, it's the UIViewAnimationTransistion that doesn't rotate. http://stackoverflow.com/questions/1519046/iphone-change-target-or-selector-for-back-button-on-uinavigationcontroller/1519080#1519080 Comment by adam on iPhone - Change target or selector for Back Button on UINavigationController adam 2009-10-05T11:54:07Z 2009-10-05T11:54:07Z &gt;&gt; is there anyway I can do this <i>without</i> having to create my own back button with custom graphic etc. http://stackoverflow.com/questions/1410156/lost-private-key-for-iphone-distribution-certificate-what-could-be-solutions/1410173#1410173 Comment by adam on Lost Private Key For iPhone Distribution Certificate. What could be solutions? adam 2009-09-11T13:23:24Z 2009-09-11T13:23:24Z Not 100% sure on that one, I think you may be able to get away with it, because you will still be using the same App ID. I guess you have no choice anyway, having lost your own one. Would be interested to hear the results. Please feel free to upvote/accept my answer, if it helped you ;) http://stackoverflow.com/questions/738750/querying-the-dns-service-records-to-find-the-hostname-and-tcp-ip/740226#740226 Comment by adam on Querying the DNS service records to find the hostname and TCP/IP adam 2009-06-18T15:28:05Z 2009-06-18T15:28:05Z Hello, I am trying to integrate dnsjava-1.6.6 into my android app in order to do SRV resolution. I wonder, did you compile the entire dnsjava package and pull in the .jar - or did you extract the relevant source files from the package.... to keep it lightweight? Thanks! http://stackoverflow.com/questions/862477/flex-add-label-as-child-of-textarea-to-show-char-count/862985#862985 Comment by adam on Flex - Add Label as child of TextArea? (to show char count) adam 2009-05-14T12:17:31Z 2009-05-14T12:17:31Z Yes, I know that is possible but I don't think you have answered my question. I need the label <i>inside</i> the text box, in the top right corner. http://stackoverflow.com/questions/756079/flex-vertically-position-children-of-a-horizontal-hbox/756124#756124 Comment by adam on Flex - Vertically position children of a horizontal HBox adam 2009-05-13T14:07:01Z 2009-05-13T14:07:01Z this doesn't seem to work :( http://stackoverflow.com/questions/839211/iphone-uitableview-with-uisearchbar-and-refreshing-section-index/851709#851709 Comment by adam on iPhone UITableView with UISearchBar and refreshing Section Index adam 2009-05-12T09:28:32Z 2009-05-12T09:28:32Z i've edited my above post to show the exact code i am using... to no avail! http://stackoverflow.com/questions/776457/flex-as3-dispatching-event-between-classes/776483#776483 Comment by adam on Flex AS3 - Dispatching Event between classes adam 2009-04-22T11:06:48Z 2009-04-22T11:06:48Z This was a very simplified example. My real situation is a custom event that does indeed use the bubbles argument. What I realise now is that you can only bubble events upwards and have to re-dispatch them if you want to go &quot;sideways&quot; http://stackoverflow.com/questions/355690/symbian-c-stomp-library/736469#736469 Comment by adam on Symbian C++ STOMP library adam 2009-04-20T15:41:38Z 2009-04-20T15:41:38Z Thanks, but I already know the STOMP protocol inside out; it's just the implementation of it in Symbian C++ that is the daunting task. I will have to try it myself and I will share my results. http://stackoverflow.com/questions/658609/iphone-out-of-memory-weird-crashing-problem/660082#660082 Comment by adam on iPhone Out of Memory WEIRD crashing problem adam 2009-03-19T10:54:26Z 2009-03-19T10:54:26Z Ha. Yes I have been doing exactly this for days, and have narrowed down the problem to a certain part of code that indeed includes loading images. However, at one point the images were contributing to the graph in instruments and I managed to get that fixed. Maybe they are still hiding somewhere! http://stackoverflow.com/questions/658609/iphone-out-of-memory-weird-crashing-problem/658700#658700 Comment by adam on iPhone Out of Memory WEIRD crashing problem adam 2009-03-18T15:18:46Z 2009-03-18T15:18:46Z No does not go up significantly, occasionally it rises when a new object is downloaded but you see it fall again when that object is released. The number of threads stays pretty constants the whole time. http://stackoverflow.com/questions/637841/flex-dispatch-custom-event-on-receipt-of-standard-event/638592#638592 Comment by adam on Flex - Dispatch custom Event on receipt of standard Event adam 2009-03-12T15:57:06Z 2009-03-12T15:57:06Z I need to pass an integer along with every different event, in case they fire in a different order. I don't see how I can do this with your second method? Thanks for the hint though!