Search Results

Search found 4 results on 1 pages for 'worchyld'.

Page 1/1 | 1 

  • Photoshop - How to create master/detail pages?

    - by worchyld
    I am skinning up a website and other things in Photoshop but I am finding the PSD taking a very long time to load/save and I'm wanting to split the PSD file into several files. I've done this, but sometimes I need to adjust one thing and I have to change every PSD file so that the entire project is consistent. Ideally, I'd like to be able to create a master/detail (or a template) structure using Photoshop. What is the best way to achieve this goal? Thanks

    Read the article

  • Youtube API - How to limit results for pagination?

    - by worchyld
    I want to grab a user's uploads (ie: BBC) and limit the output to 10 per page. Whilst I can use the following URL: http://gdata.youtube.com/feeds/api/users/bbc/uploads/?start-index=1&max-results=10 The above works okay. I want to use the query method instead: The Zend Framework docs: http://framework.zend.com/manual/en/zend.gdata.youtube.html State that I can retrieve videos uploaded by a user, but ideally I want to use the query method to limit the results for a pagination. The query method is on the Zend framework docs (same page as before under the title 'Searching for videos by metadata') and is similar to this: [code] $yt = new Zend_Gdata_YouTube(); $query = $yt-newVideoQuery(); $query-setTime('today'); $query-setMaxResults(10); $videoFeed = $yt-getUserUploads( NULL, $query ); // Output print ''; foreach($videoFeed as $video): print '' . $video-title . ''; endforeach; print ''; [/code] The problem is I can't do $query-setUser('bbc'). I tried setAuthor but this returns a totally different result. Ideally, I want to use the query method to grab the results in a paginated fashion. How do I use the $query method to set my limits for pagination? Thanks.

    Read the article

  • Objective C display money format like Sensible Soccer

    - by worchyld
    I'm wanting to display money like SWOS (or Sensible World of Soccer) used to. IE: Instead of: $10,000,000+ you got $10m, 10.5m, etc. Instead of: $1,000,000 you got $1m Instead of: $1,500,000 you got $1.5m It also worked for both large and smaller figures, say; 1k, 1.25k, 0.75k, 0.25k, etc. I'm wondering, is there a way to display money in a format that is similar to the way SWOS used to do it? Thanks.

    Read the article

  • Writing a function for UIAlertView?

    - by worchyld
    I'm sick of writing basic UIAlertView's, ie: UIAlertView *alert = [[UIAlertView alloc] initWith...]] //etc Instead of doing this, is it possible to put all this in a "helper" function, where I can return the buttonIndex, or whatever an alert usually returns? For a simple helper function I guess you could feed parameters for the title, message, I'm not sure whether you can pass delegates in a parameter though, or bundle info. In pseudo-code, it could be like this: someValueOrObject = Print_Alert(Title="", Message="", Delegate="", Bundle="") // etc Any help on this would be great. Thanks

    Read the article

1