how draw nsbutton behaves sent button , menu seen in mail app? doesn't have exact. want button label , disclosure icon no background until user hovers , show menu underneath.
i want implement language translation feature in iphone app, there api free can use, or other way this. google's translate api not free anymore. so, if want use free language translation api, here links: mygengo translation api: http://mygengo.com/api/ microsoft translator apis: http://www.microsofttranslator.com/dev/ speaklite translate api: http://www.speaklike.com/access-professional-translation-via-api/ webservicex translate api: http://www.webservicex.net/ws/wsdetails.aspx?wsid=63 this helpful: http://alwawee.com/wordpress/2011/07/03/objective-c-wrap-over-microsoft-bing-translate-api/
i having problem updating database. basically trying everytime download link clicked download count in database goes up. can point me in right direction have been trying right hours :( here html. <div class="button_border_dark"> <a id="linkcounter" href="http://www.derby-web-design-agency.co.uk/freeby-download/<?php echo $freebies_download ; ?>" target="_blank" title="download">click download file</a></div> here jquery <script> $('#linkcounter').bind('click',function(){ $.post("downloadcount.php",{ linkid: <?php echo $id ; ?>}); }); </script> here downloadcount.php trying post data too, updates content. <?php require_once("applications/constants/connection.php"); require_once("applications/controllers/basic.php"); if(isset($_request["linkid"])){ $linkid = sanitise($_post["linkid"]); $updatedownlo...
Comments
Post a Comment