Forums

RSS feed into Flash .swf (27 posts)

  1. Anonymous
    Unregistered
    Posted 5 years ago #

    I've been wanting to switch my website into a more animated flash site (since it's about my comic book) but I kept putting it off until I'd actually have time to do it and find a way to display by wordpress blog in it.
    I found this interesting solution:
    http://actionscript-toolbox.com/blogReader.php
    I figure I'll get my hands dirty at some point but hey, if anyone is interested in doing the grunt work now, I'd certainly be happy to have a ready to use solution and so would many others I'm sure.
    If anyone wants to take a crack at it, it'd be great to see a ready to use movieclip (.fla) for displaying posts with categories, archives and perhaps even the comments with form.
    Anyone up tho this challenge? If not, I'll try my hand at it sometime and post my findings here...

  2. Anonymous
    Unregistered
    Posted 5 years ago #

    Hey Anonymous,
    The blogreader you mentioned is overkill. I have been using a flash component called FBlogViewer you can search for it here . It took just a "little" configuration but I was able to use it to read an RSS feed from a b2 blog (going to update client to wordpress soon). If you need an example I will try to finish up this client work and post the url to the site :D

  3. Anonymous
    Unregistered
    Posted 5 years ago #

    Sorry...my first post on this blog...the url is http://www.flashcomponents.net

  4. Anonymous
    Unregistered
    Posted 5 years ago #

    Nice! I'll look into this one then. But what about past entries, categories and archives?

  5. Anonymous
    Unregistered
    Posted 5 years ago #

    ahso, I see now. You want to create a full blog that runs off wordpress and has the "skin" of flash. Go with the first movieclip example...It's not overkill. The component I meantioned can be modified but it is really meant to just read latest feeds from the rss output.

  6. Anonymous
    Unregistered
    Posted 5 years ago #

    There are a few other components you might test that are on the url I gave you...I apologize for not testing them for you, but running a full blog from flash isn't my cup - o' - tea.

  7. Anonymous
    Unregistered
    Posted 5 years ago #

    It's funny how so many people are apprehensive of having a flashed blog. The reason I want to do this is to have both a standard html version of my website and a flash version, where I intend to add other interactive elements and animation. Instead of using flahs elements in an overall html interface, I want to do an entire interface in Flash (sites like http://www.2advanced.com are completely done in Flash and the result look pretty good).
    Access to the complete Blog from this interface would be very usefull to me. The way your component is setup, it simply feeds from the wp-rss2.php file, right? How could the component read from archives? Wouldn't a seperate php "feeder" file be necessairy?
    Sorry about my limited knowledge of php...

  8. Anonymous
    Unregistered
    Posted 5 years ago #

    ...by the way, in the 2advanced example, they have their blog flashed but I notice that their archive link simply opens a popup to an html archive. If I could do it all in the flash interface, that would be preferable.

  9. LoganSix
    Member
    Posted 5 years ago #

    In order to feed data to Flash you can either point to a delimited output or use Flash Remoting.
    There has been some work done for doing Flash Remoting for PHP, but it looks like nothing has changed since last year.
    The first way would require you to have a new output page for your blog and archive. The output page can have multiple streams (for lack of a better word) of data. i.e.

    1. Arhive link months
    2. Category names
    3. Latest posts

    I would suggest that you pass up small data first, then when the Flash application needs it, you pass up the rest of the data.
    You could also just have the Flash for the post content. Then everytime you clicked on the post to see it, the Flash application would retrieve the post you are looking for. This would probably be the easiest route since you could just make a template for the header, author, and body and pass in the parameter values through the data stream in the deliminted file.
    I program in Flash at work, but I have other areas on my site to finish before looking into turning my blog into Flash.

  10. Anonymous
    Unregistered
    Posted 5 years ago #

    Hi LoganSix, the method you outlined seems just like the RSS feed solution. Wordpress' wp-rss2.php file formats the output for mordacaidesign's component. Or are you talking about something completely different?
    Regarding the component I tried it out by having it call the wp-rss2.php file directly and it works at a first glance. However, I noticed that in the flash-scripting, the body of the post to be displayed refers to the xml noce called "description".
    In wp-rss2.php, "description" is *not* the actual content of the post, it's just a description devoid of any links and other formatting.
    So I changed "description" to "content:encoded" in the flash-script but no content shows up in the blog, only the post dates.
    Mordacaidesign, have you actually tested your component with Wordpress? Can you help?

  11. Anonymous
    Unregistered
    Posted 5 years ago #

    so in other words, it gets rid of the middle man that is the RSS file!
    If you do setup something for easy intergration with Wordpress, perhaps a component, I'd be thilled! (and certainly not the only one)

  12. LoganSix
    Member
    Posted 5 years ago #

    Well, no easy integration. Looks like new queries have to be made so that the data is put into the correct format.
    I made a quick app, that doesn't work completely. I'm having some issues with mySQL query syntax.
    Flash Blog Test
    I had to create a query to get the categories, then one to get the post from the selected category, then the post details.

  13. LoganSix
    Member
    Posted 5 years ago #

    Flash Blogger
    I found the above when I was messing around with Flash Remoting with PHP. They haven't worked on it in a while, but it might be close to the total solution.

  14. hrekum
    Member
    Posted 5 years ago #

    One other way is to use NUSOAP to generate SOAP/WSDL services and then discover them using the Web Services component in Flash MX 2004 Pro. There are other PHP link throughs, but I liked this because it would allow you to build more generic WSDL services from WordPress for other media that can call them.

  15. SIMDesigns
    Member
    Posted 4 years ago #

    I found a really easy way around all of the Flash Remoting and XML parsing and server installations of different types of services.

    By utilizing the loadVars object in Flash, you can get it to do just about anything php can throw at it. I've been trying to figure out for months how to make my blog completely Flash, and realized with a little modification of the wp-rss2.php file, which does most of the work of stripping out unneccesary content and tags from the actual blog, and adding a few new functions to template_functions.php, I was able to get Flash to see the content of my blog, by allowing the php files to create the variables in url-encoded format, and passing it to the movie using the sendAndLoad function.

    Here's what I've come up with so far, some customization is still left to be done, and some animation, but you get the general idea.

    http://similitude.sim-designs.net/blog.html

  16. Frets
    Member
    Posted 4 years ago #

    I've been working at this as well...
    for some reason rss2 puts out cd data.

    rss works well but limits the content.

    you can just as easily use mysql to php to format
    the formatting as a result will be richer and can be treated
    as loadvars as opposed to loadxml

  17. cri5tian
    Member
    Posted 4 years ago #

    hello

    i need publish some news from blog in to a swf please help me i speak french or spanish thanks

    cri5tian@chilesat.net

  18. Chadwick
    Member
    Posted 4 years ago #

    is there a way to add css formatting to the imported text?

  19. nerdcore84
    Member
    Posted 4 years ago #

    I'm seriously having issues getting this to work with blogreader or the other component mentioned above. I've installed it, linked it directly to my feed, but it will not open. Even with permissions set correctly. Help please?

  20. SIMDesigns
    Member
    Posted 4 years ago #

    I posted the fla and source files for my blog, you can go through and see if there's anything useful.

    http://similitude.sim-designs.net/2005/8/31/how-it-works/

  21. amit
    Member
    Posted 4 years ago #

    is there a way to add css formatting to the imported text?

    yes its possible, the ability to load CSS was introduced in FlashPlayer-7 but you won't be able to position any thing, I doubt even padding etc. will work. But the colouring & sizing etc work.

  22. 3stripe
    Member
    Posted 4 years ago #

    Dear all...

    It's time to get moving on this...

    I've set up a Basecamp account so that anyone who is interested in putting together a Wordpress-meets-Flash CMS can get involved, and start talking about the best way to make it happen!

    Although the specifics of how it would work aren't defined yet, I'd basically love to see a Wordpress extension that let you manage the text content of a Flash website. It would allow anyone with basic Wordpress and Flash skills to hook the two together, without any complex coding.

    It would support static pages, and also posts to allow for blog-style or news sections which were archived, searchable, and maybe even had an rss feed into the bargain.

    If you would like to get onboard to discuss the idea further, email me (3stripe[AT]gmail.com), and I'll set you up with a login.

    Look forward to hearing from ya!

    3stripe
    http://wordpressmeetsflash.projectpath.com

  23. josepo
    Member
    Posted 3 years ago #

    You can easily build a WordPress Flash interface using XML-RPC:
    http://xmlrpcflash.mattism.com/wordpress/

  24. 3stripe
    Member
    Posted 3 years ago #

    josepo, XML-RPC looks great!

  25. v_r_boy
    Member
    Posted 3 years ago #

    3stripe what about your link? http://wordpressmeetsflash.projectpath.com redirect to /login :(

  26. 3stripe
    Member
    Posted 3 years ago #

    send me an email 3stripe AT gmail DOT com, i'll send you a login.

  27. 3stripe
    Member
    Posted 3 years ago #

    Dead Wordpress/Flash users....

    Quick update for you: my WordpressMeetsFlash project has now been superceceded by FlashBlog - which is a full Wordpress->Flash integatration project

    Please see http://www.sourceforge.net/projects/flash-blog/ for full details and a download!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags