Flex

Events happening in the community are now at Drupal community events on www.drupal.org.
ebeyrent's picture

JSON Server and Facebook

I am currently using Flex to consume an amfphp service, and it works great. However, when you try to use the swf on a Facebook profile, you have to click on an image first in order to load the swf.

My thought was to use the JSON server to return JSON to my facebook app. However, I get hit with the cross domain security issue. Has anyone here successfully accessed the JSON Server from a remote domain?

-Erich-

Read more
interfaced's picture

Drupal + Flex + Flare = Coolness

Hey, I've set up a data pipe from Drupal to Flex/Flare using jQuery. Its as easy as this:

  1. IN DRUPAL TEMPLATE.PHP
    function phptemplate_views_view_list_{viewname}($view, $nodes, $type) {
    foreach ($nodes as $i => $nid) {
    $node = node_load($nid->nid);
    $output[]= json_encode($node);
    }
    return 'var videos=['.implode(',',$output).']';
    }

  2. IN THE HTML-TEMPLATE

<

script type="text/javascript">
function getData(){
$.getScript("http://example.com/view", function(){
/*$(videos).each(function(i){

Read more
ismcdonald's picture

Upload files to drupal via web service (from flex/air client)

Hi All,

(Apologies for cross posting - I've put this at http://drupal.org/node/222404 before I realised this might be a better place for it.)

I'm looking for a way to upload fiiles to a drupal site via a web service (from a AIR/ flex application actually) and I after some digging, I don't see anything on the forums or in the contributed modules that addresses this, so I though I'd post before we go ahead and develop a module to do this.

The module would, very simply:

Read more
tjholowaychuk's picture

Flex / Drupal integration ideas

I have spent the last few months learning as much as I can about AIR / Flex / AS3 and I would like a crack at developing something useful for drupal. Any ideas are definatly welcome, I was thinking mainly of some administration tools which could just speed up the workflow but I would love suggestions.

Read more
herc's picture

Flex controls creation

If there a way to create flex controls on the fly ?

Read more
mikeypotter's picture

Learn More About Adobe Flex at FlexCamp in San Francisco

This isn't yet public information, but I wanted to give this group a chance to register for the event before we open it up to the public...

The Adobe Flex team is hosting on a one night event in July that will allow developers to learn more about Adobe Flex and the upcoming Flex 3 release. The event is being called Flex Camp, and is scheduled for July 27th, at the Adobe San Francisco office, from 5:00 PM to 11:30 PM or so.

Read more
averageyoungman's picture

A really, really simple Services + AMFPHP example using Flex

Hello,

Many seem to be chomping at the bit for examples, and seeing as I've got this working I figured I might as well post one. This is about as simple as you can get in terms of retrieving data from Drupal, via services.module, in Flex:

Read more
Subscribe with RSS Syndicate content