Flex :: Get Flickr Photos With YQL With Multiple Parameters?

Aug 26, 2011

I'm trying to create a Flex app to get photos from flickr(using YQL) of "something" near a given ZIPCODE and ordered by interestigness.[url]...

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Flickr API Wrapper - Get A Photogallery To Get Information Directly From Flickr

Feb 16, 2007

I'm trying to get a photogallery to get information directly from [URL] I've found a flash API wrapper that looks like it should work but my understanding of class constructs is too weak to get it going. [URL]

View 3 Replies

Flex :: Pass Parameters Across Multiple Applications?

Jul 21, 2009

Is there any way we can pass parameters from one flex application to the other flex application ?

I know we can pass parameters from module to application and vice versa.

View 1 Replies

Upload Multiple Photos Like Facebook?

Feb 26, 2011

Anyone know what tool does facebook use for uploading multiple photos? It is so neat!

It look like they are using flash uploader? If so, which one out there has similar to that?

View 2 Replies

ActionScript 3.0 :: Build A Gallery Of Photos Which Has Selected Thumbnail On Each Of Them Before Displaying Their Photos?

Nov 13, 2010

I'd like to build a gallery of photos which has selected thumbnail on each of them before displaying their photos.

Ex: photo.xml

Code:
<gallery>
<photo id="1">
<thumb>pics/thumbnail/img_001.jpg</thumb>

[code]....

View 9 Replies

Actionscript 3.0 :: Check Multiple XML Parameters?

Dec 8, 2009

I am trying to read a XML file and check a parameter for duplicates of that parameter in the file. There could be up to 200 entries with this parameter which is a number. How can I check to see if there are any duplicates?

View 1 Replies

ActionScript 3.0 :: Passing Multiple Parameters To Loaded Swf

Aug 31, 2010

I have a loaded swf that passes parameters [code]I am able to get the first parameter (next) but not the xmlPath.in flash, i tried these two:[code]

View 1 Replies

Actionscript :: Sending HTTP Request With Multiple Parameters Having Same Name

Dec 2, 2009

I need to send a HTTP request (and get XML response) from Flash that looks similar to following:

http://example.com/somepath?data=1&data=2&data=3

I.e. having several parameters that share same name, but have different values.

Until now I used following code to make HTTP requests:

var resp:XML = new XML();
resp.onLoad = function(success:Boolean) {/*...*/};
resp.ignoreWhite = true;

[Code].....

But in that case I am loosing ability to do POST requests.

View 4 Replies

ActionScript 3.0 :: Filter XML Based On Multiple Parameters That I Have As An Input?

Feb 7, 2012

I am trying to filter an XML based on multiple parameters that I have as an input.

I am trying to identify the parent nodes which have the matching records so that I can filter them out and process.[code]...

View 1 Replies

Flex :: How To Display Photos Full Screen

Dec 17, 2010

I give users the ability to put album in my Flex application. I want to add a feature when they can click a button to view photos full screen slide show.

View 1 Replies

Actionscript 3 :: Delete Multiple Rows (using Named Parameters) In Adobe AIR

Jan 31, 2011

I am trying to delete multiple rows in the sqlite table in my Adobe AIR app (runtime 2.5).

Here is the statement, using the "IN" operator:

"DELETE FROM mylist WHERE tdId IN (tdId1, tdId2, tdId3, ...)";

Where tdId1, tdId2, etc. will be determined at runtime based on which row(s) the user chooses to delete. The user can delete arbitrary number of rows.

I've tried something like:

//delete statement text
"DELETE FROM mylist WHERE tdId IN :tdId";
//delete statement parameters: take 1.

[Code].....

It would seem too much of trouble to chain these deletes with a callback. So I guess I am using my last resort: building the sql at runtime. Conclusion: Cached statements can't be used in these kind of situations...

View 2 Replies

Flex :: Drag And Drop Photos From Desktop Web App To Upload Them?

Oct 28, 2010

I use Flex 4 wish I can let users drag/drop photos from their computer to the web app to upload them automatically.

View 2 Replies

Actionscript 3 :: Make Transition Animation When Changing Photos In Flex?

Jul 24, 2010

I have an image in Flex I want to change the image with actionscript to show some other image say every 3 seconds or so. I also want to make transition between the image and the next one for instance fade in/out.

View 3 Replies

Flex :: FacebookDesktop.fqlQuery Does Not Work When Trying To Retrieve Users Photos

Nov 2, 2010

When attempting use the the Adobe GraphAPIDesktop library for use with Adobe Flex and AIR I can login to Facebook and retireve wall posts etc ok using FQL or Graph API calls. When attempting to retrieve users photos I can only get tagged photos when using "me/photos". I am trying to use FQL whcih should work, but when using:

var query:String = "SELECT pid, aid, owner, src, src_big, src_small, link, caption, created, modified FROM photo WHERE aid IN ( '1622751608028', '1207785754141' ) ";

FacebookDesktop.fqlQuery(query, getPhotos2);

Only an empty OBject is returned from FB?

View 1 Replies

ActionScript 2.0 :: How To Use The Flickr Api

Jul 15, 2011

how to use the flickr api? all the documentation i've read on it assumes you know so much, but i need to start at square one! my goal is simply to load images from a flickr username at runtime. the swf into which the images will be loaded is itself loaded into another swf. i need to make photo galleries that load my clients' flickr images, so that the clients can update their galleries without anyone having to right new code. swf--> swf--> dynamically loaded images from flickr

View 0 Replies

ActionScript 3.0 :: Flickr XML No XML?

Mar 6, 2009

I'm trying to get a simple photo list from flickr as XML. This works fine, but when I try to use the retrieved data as a local XML-Object it is telling me that the XML cannot be converted to XML. I am sure I am doing something really wrong here, but I don't know what it is. Do I have to convert the ldr.data somehow?[code]

View 1 Replies

ActionScript 2.0 :: XML Gallery Using Flickr RSS?

Oct 22, 2004

Ive been trying to get the xml/flash gallery tutorial to work using the rss from a Flickr image account instead of the format of xml file included in the tutorial download.Try as I might I cant understand how to call information from the specific nodes that contain the picture information.The Flickr XML source It has a lot of information at the beginning of the file to do with the Flickr account details, which i want to ignore. The <item> tag is the one im interested in.

Code:
xmlNode = this.firstChild;

I've tried using xml.nodeName, and looked right through all the xml part of the actionscript dictionary, but no luck.

View 2 Replies

ActionScript 2.0 :: XML Gallery Using Flickr RSS

Oct 22, 2004

Ive been trying to get the xml/flash gallery tutorial to work using the rss from a Flickr image account instead of the format of xml file included in the tutorial download.

Try as I might I cant understand how to call information from the specific nodes that contain the picture information.

The Flickr XML source

It has a lot of information at the beginning of the file to do with the Flickr account details, which i want to ignore. The <item> tag is the one im interested in.

My guess was that it had to do with changing

Code:
xmlNode = this.firstChild;

I've tried using xml.nodeName, and looked right through all the xml part of the actionscript dictionary, but no luck.

View 2 Replies

ActionScript 2.0 :: Flickr Slideshow To Flash

Sep 18, 2009

I am trying to take a Flickr collection (from the website) and integrate it into flash. I suspect something to do with the rss feed. My goal is to take the flash and put it into Screentime so that when the screensaver is running it will basically be an up-to-date slideshow of my flickr images.

View 7 Replies

ActionScript 2.0 :: Parse Flickr RSS Feeds

Mar 28, 2005

I am trying to figure out how to parse a Flickr RSS feed to feed it into a swf to make a pretty flash interface for my photoblog. I am thinking it would be ideal if the image url was in its own element, and the description for the image was in a sibling element. However this is not the case. The problem I am running into is that the image for each post is in the same element as the description (in the content element). The image is simply wrapped by a normal html img tag. Does anyone know how I would pull the image url out of the description during parsing so that I could feed them into flash elements on the stage (one mc for image, another mc with a dynamic text box for the image description)?[code]

View 3 Replies

Actionscript 3 :: Call The Flickr API With The Adobe Lib And Get A Response?

Feb 15, 2011

I've been able to figure out how to call the Flickr API with the Adobe Lib and get a response...I can get the description, id, etc. But now I'm trying to figure out how to load in the actual photo and add it to the stage.

function loadStartingPhoto():void
{
service.addEventListener(FlickrResultEvent.PHOTOS_GET_INFO, handlePhotoGetInfo);[code]....

I'm starting to think that in order to pull in the actual photo, I need to get it by way of a URLRequest. But that's not how any of the other tutorials are doing it... or maybe they are...

View 1 Replies

ActionScript 3.0 :: Adding Flickr Feed To IPhone Application?

Mar 9, 2012

I am fairly new to AS3 but I have been able to build a somewhat dinky app for iPhone and Andoid with Flash CS5.5, and I am wanting to add my Flickr feed to it. I tried going through Flickr's API but that didn't fully work.

View 1 Replies

Actionscript 3.0 :: Load Flickr Slideshow Into Flash Website?

Apr 19, 2009

Is it possible to load a Flickr slideshow into a Flash website?

I know you can load it into an HTML page, but I want to load it into my 100% Flash website. However, I can't get this to work. I picked apart the HTML embed code and pieced it back together as a URL that gets me exactly what I want, but Flash will not do anything with it.

Here is the code I am using:

Code: Select allvar loader:Loader = new Loader();
btn_mc.addEventListener(MouseEvent.CLICK, btnClick);
function btnClick(e:MouseEvent):void{
loader.load(new URLRequest(root.loaderInfo.parameters.flickrURL +

[Code].....

View 1 Replies

ActionScript 3.0 :: Flickr/Google/Bing Image Search API?

Mar 8, 2010

I'm currently using the Flickr Image Search API to load the first result of a string query as a background image for my site.Here's how it's looking so far: http:[url].....The thing with Flickr though is that if you want pictures at their original or large sizes every now and then you get an error message or image saying "Image Unavailable" due to Flickr permissions and user privacy restrictions. On the other hand medium sized or detail sized images tend to get very pixelated on large monitors. I'm pretty new at this Flickr API thing so I don't know if there's a way to filter the results to show only the first one that has actual original/large size available.

Question 1) Is there a way to filter/sort through Flickr API to load only the AVAILABLE/PERMITTED images at their original/largest size?Here's the code I have so far:

Code:
package
{
import flash.display.*;[code]...

2) Alternatively I was thinking that Google and Bing don't have permission/restriction issues(I think) so I was wondering if anyone knew how to set up a Google or Bing image search in Flash using AS3. The farthest I've got on this was finding this link: http:[url].... But I can't seem to get my head around how to actually build the whole search, query and load result.

View 3 Replies

Professional :: Change Code From Flickr So It Would Auto Start And Loop?

Apr 10, 2010

I have been trying for a while to change this code from Flickr so it would auto start and loop.
 
Original code
 
<object width="150" height="150"> <param name="flashvars" value="offsite=true&lang=en-us&page_show_url=%2Fphotos%2F49111858%40N06%2Fsho w%2F&page_show_back_url=%2Fphotos%2F49111858%40N06%2F&user_id=49111858 @N06&jump_to=&autostart=true"></param> <param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com

[code]....

View 2 Replies

Actionscript 3 :: Flash Builder 4.5, SecurityError: Error #3207 For Flickr Api?

Jun 9, 2011

I built this nifty little weather/clock app as a way of learning to work with API's and incorporates both the yahoo weather api and the flickr api. Now that it is in functioning order, I decided I would port it over to a playbook app via a Flash Builder 4.4 ActionScript Mobile project. I was able to get it installed on the playbook simulator just fine however when the app launched it showed a blank stage. After several hours of research I determined it was a runtime error.After several more hours of research I found it was a security error when making a call out to the flickr api. The debugger reports the following error:

SecurityError: Error #3207: Application-sandbox content cannot access this feature.
at flash.system::Security$/allowDomain()
at global$init()[C:UserspoorpaddyAdobe Flash Builder 4.5ScriptsflickrGrabber.as:43]

[code].....

View 1 Replies

Flash :: Upload Snapshot From Webcam Directly To Twitpic, Flickr, Facebook?

Jan 4, 2011

I succeed to get a snapshot from the webcam as a jpeg (via BitmapArray) and now I want to upload it directly to twitpic or flickr

View 1 Replies

AS3 :: Class - Creating A Class With Multiple And Optional Parameters?

May 18, 2010

I'm creating a slideshow where each slide can have:- a video or a still- 1 audio track or many (up to 3)- 1 button or many (up to 3)I was thinking that each slide can be it's own object, and then I would pass the video, audio, buttons, etc., into it as parameters:

package
{
import flash.media.Video;

[code].....

View 2 Replies

Flex :: How To Pass Parameters To A Swf

Jun 8, 2011

I am using FlashVars to pass params in the swf but it is not working.

Here is the html code:

[Code]...

View 2 Replies

Flex :: Send Parameters To Swf Not Using Any Html?

Mar 1, 2010

Is it possible to send params to swf using SWFLoader or something like it?So.. I want to create swf loader (swf) which would be able to send some Application.application.parameters to swf swf I'm triing to load (which are usualy sent to an application from html.)

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved