• lenglain

    (@lenglain)


    Hi im teaching myself how to use flash to make my own webpages. Right now im making a site that is exclusively flash, except that I want my friend to update it via wordpress. so if she wants to update her “aboutme” page then she goes into the wordpress blogging dashboard and updates it herself.

    I’ve achieved this perfectly but then I decided to make the site in flash and see how i could pull off the same thing.

    on a regular html page all I have to do is include the wordpress loop:

    <div id=”content”>
    <?php query_posts(‘cat=-4’);?>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post”>
    <h1>” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h1>
    <div class=”postmeta”><img src=”<?php bloginfo(‘template_directory’); ?>/images/calendar.png” align=”center” alt=”Calendar” /> <?php the_time(‘F j, Y’); ?> | Posted by <?php the_author(); ?> <?php edit_post_link(‘edit’, ”, ‘ ‘); ?></div>
    <?php the_content(‘More ?’); ?>

    </div>

    so there’s thediv and the php code that calls for the blog posts of a specific category.

    Is it possible to do this in flash? if so how?

    I appreciate any advice thanks for reading.

  • The topic ‘anyone know any actionscript?’ is closed to new replies.