Using type, with Flash Album Exporter

Hello. I just discovered this plugin, and it works great. Is there an easy way to incorporate type into the albums?
thanks

Not in the flash portion of the slide presentation but you can embed the SimpleViewer flash slideshow in an iWeb page which has the navbar at the top. The following demo pages have examples of several of the FAE themes embedded:
SimpleViewer
Postcard

Similar Messages

  • Flash album exporter plug-in

    I used to use Flash Album Exporter happily until the last update of Aperture - i'm now running 2.1.4. Now when i try to export with it aperture quits. Has anyone got any ideas on how to make 2.1.4 play nice with Flash Album Exporter, or have any alternative means to create a flash photo gallery from Aperture?
    Thanks!

    James:
    First, I can't get your first link to work. Removing the ".index.html" from the link does get the flash to load and play.
    For some reason that particular flash presentation won't work in an iFrame/HTML snippet. Have you tried using a different FAE theme to see if you can get it to work in the iFrame. I've been able to get several to work in my demo sites: SimpleViewer and Flash Album Exporter and Flash Album Exporter Postcard and AutoViewer Slideshow Themes.
    OT

  • Flash Album export using bananalbum

    This function is really useful but what I want to acheive so far isn't.
    I would really like to be able to export my images from aperture to a flash album using the banana album plug in without the banana album intro splash appearing. I have a full licensed version of the Bananalbum web gallery which I use with JAlbum software. It would be excellent if I could use the flash album export in aperture in tandem with the plug in I use in Jalbum.
    Is this possible?

    Are you using the exporter which is available for download at http://rudinswagerman.nl/weblog/index.php?id=169 ?
    You can install your license in this exporter by right-clocking the plugin, click 'Show package Contents', and replace the BananAlbum.swf at 'Contents/Resources/BananAlbum' with your license.
    After exporting an album, you can change settings in the settings file, to be found in the 'res' folder... Or... replace the settings.xml with one you've created with Jalbum.

  • Flash Album Exporter in iFrame problem. Greybox not working as expected

    Hello all,
    I've searched and I can't find the solution or any info on the problem elsewhere.
    I've used Flash Album Exporter for the grey box effect. This appears perfectly here
    http://web.me.com/james.veitch/BoxReviews.index.html
    However, it's aligned to the left hand side; I can't get it to centre and there's more text I want to put on. So I thought I'd put it in an iFrame. The moment I do that, things go wrong. Here
    http://web.me.com/james.veitch/KeatsinHampstead/Home2.html
    For some reason it won't load the images. What am I doing wrong? Also, is there any way to change the thumbnail images?
    Thanks in advance,
    James.

    James:
    First, I can't get your first link to work. Removing the ".index.html" from the link does get the flash to load and play.
    For some reason that particular flash presentation won't work in an iFrame/HTML snippet. Have you tried using a different FAE theme to see if you can get it to work in the iFrame. I've been able to get several to work in my demo sites: SimpleViewer and Flash Album Exporter and Flash Album Exporter Postcard and AutoViewer Slideshow Themes.
    OT

  • Flash Album Exporter

    Has anyone used the Flash Album Exporter to put slideshows on iWeb?
    I use Aperture and have create a slideshow by exporting it to the Flash Album Eporter plugin. However, I'm not sure how to incorporate it into iWeb. Is it even possible?

    http://www.rowan-cottage.co.uk/Site/SimpleViewer.html
    http://www.varkgirl.com/Slideshows

  • Using TYPES with out in a procedure

    Can you use TYPES with the OUT parameter when executing a procedure?
    CREATE OR REPLACE PROCEDURE get_assoc_status (fin_aor_id IN ASSOCIATE_OFFICE_RECORDS.ASSOCIATE_OFFICE_RECORD_ID%TYPE,
    v_amr_id OUT ASSOCIATE_MASTER_RECORDS.ASSOCIATE_MASTER_RECORD_ID%TYPE, ....
    In all documentation where I've looked procedures up, all the examples use internal defined types, like NUMBER, VARCHAR2,etc...It seems like there shouldn't be a problem but I keep getting this message:
    Error at line 2
    ORA-06550: line 2, column 70:
    PLS-00103: Encountered the symbol "," when expecting one of the following:
    := ( ; not null range default character
    ORA-06550: line 9, column 1:

    Yes, you can use typed output parameters:
    sql>create or replace procedure p_test(p_empno in emp.empno%type, p_sal out emp.sal%type)
      2  is
      3  begin
      4    select sal
      5      into p_sal
      6      from emp
      7     where empno = p_empno;
      8  end;
      9  /
    Procedure created.
    sql>var the_salary number
    sql>exec p_test(7369, :the_salary)
    PL/SQL procedure successfully completed.
    sql>print the_salary
    THE_SALARY
           800

  • Using databases with Flash and PHP

    Hi, everyone!
    I`m a PHP newbie. I just learned PHP so that I can use
    databases with Flash.
    I`ve got a .php script that contains html that loads up my
    .swf file. The .swf file is the core of my site. What I want to
    know is if I can call some PHP functions (that I have wrote in the
    .php script) from within the .swf file... This functions would
    perform the reading and updating of my database.
    The only way I know of to modify a database from Flash is
    using the POST and GET methods. But that opens up a new browser
    window in which the PHP script is called. And that only handles
    writing in the database. So, what if I just want to read from the
    database some values and insert them into a TextField in Flash? How
    do I do that?
    Thanks! Ardy

    1. Goggle "Flash and mySQL" and you'll get a listing of alot
    tutorials
    2. I'm also just learning. Here's a great URL to start:
    Building with Flash and MySQL
    That's right, a Flash-based blog — it sounds a little
    loony, but this blog pulls content from a MySQL database and feeds
    it into the dynamic Flash frontend ...
    www.webmonkey.com/programming/php/tutorials/tutorial2.html -
    20k - Cached -

  • Use WCF with Flash CS5

    Hi,
    Is it possible to call WCF service with flash CS5.
    Regards------Amit

    I am trying this with the following code
    import mx.rpc.events.FaultEvent;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.remoting.RemoteObject;
    import mx.rpc.soap.*;
    import mx.rpc.soap.*;
    import flash.events.Event;
    import mx.messaging.channels.StreamingAMFChannel;
    var wcfProxy:RemoteObject= new RemoteObject( "GenericDestination" );
    wcfProxy.source = "http://Domain.org/Service.svc?wsdl";
    wcfProxy.addEventListener( ResultEvent.RESULT, gotResult );
    wcfProxy.addEventListener( FaultEvent.FAULT, gotError );
    var arg1:Number=5;
    var arg2:Number=7;
    var user:String="test";
    var opList:String= "a";
    function calculate(e:Event)
            wcfProxy.logOn(user,user);
    function gotResult( event:ResultEvent ):void
        trace("The Vlue is = "+event.result.toString());
    function gotError(event:FaultEvent):void
        trace("Error is = "+event)
    sndBtn.addEventListener(MouseEvent.CLICK,calculate);
    but it always give the following error
    Error is = [FaultEvent fault=[RPC Fault faultString="[MessagingError]" faultCode="InvokeFailed" faultDetail="null"] messageId="0102BC47-CED4-B019-F8FE-338684D3DBEB" type="fault" bubbles=false cancelable=true eventPhase=2]
    Please help me out
    Thanks

  • Can we use Alchemy with Flash Lite?

    Alchemy can be used with Flash Lite or is it useful only for flash 8?

    Alchemy requires Flash 10 and AS3, neither of which are currently supported by Flash Lite.

  • Using Away3D with Flash Professional

    Hi guys,
    Flash Rookie here.
    I am simply trying to get up and running with flash professional and Away3D.
    I tried following this guide: https://docs.google.com/document/pub?id=1K3L4JajVRPmsQ_v0RgYNQhRmgIcA4WvknwLIRKjPUyI
    But even then I couldn't get it running.
    Could somone please explain an obvious step by step process of (downloading, installing, linking to then running simple example in Away 3D.) Really clearly written as if talking to a child.
    Thanks very much.
    MrB

    Here are the errors:
    Scene 1, Layer 'Layer 1', Frame 1, Line 1
    1172: Definition away3d.cameras:Camera3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 3
    1172: Definition away3d.containers:Scene3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 5
    1172: Definition away3d.containers:View3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 7
    1172: Definition away3d.core.math:Number3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 9
    1172: Definition away3d.core.render:Renderer could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 11
    1172: Definition away3d.primitives:WireCube could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 1
    1172: Definition away3d.cameras:Camera3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 3
    1172: Definition away3d.containers:Scene3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 5
    1172: Definition away3d.containers:View3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 7
    1172: Definition away3d.core.math:Number3D could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 9
    1172: Definition away3d.core.render:Renderer could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 11
    1172: Definition away3d.primitives:WireCube could not be found.
    Scene 1, Layer 'Layer 1', Frame 1, Line 15
    1046: Type was not found or was not a compile-time constant: Scene3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 21
    1046: Type was not found or was not a compile-time constant: View3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 25
    1046: Type was not found or was not a compile-time constant: Camera3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 27
    1046: Type was not found or was not a compile-time constant: WireCube.
    Scene 1, Layer 'Layer 1', Frame 1, Line 41
    1180: Call to a possibly undefined method WireCube.
    Scene 1, Layer 'Layer 1', Frame 1, Line 57
    1046: Type was not found or was not a compile-time constant: Number3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 57
    1180: Call to a possibly undefined method Number3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 61
    1180: Call to a possibly undefined method Scene3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 65
    1180: Call to a possibly undefined method Camera3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 77
    1180: Call to a possibly undefined method View3D.
    Scene 1, Layer 'Layer 1', Frame 1, Line 85
    1120: Access of undefined property Renderer.

  • Using PHP with Flash (contact form)

    I am trying to get a contact form on a flash site to work and
    for some reason the PHP isn't forwarding the message to my email.
    Below is the flash code I have used as well as the document I have
    saved as contact.php. Thank you so much for the help. This is the
    last thing I need to complete for the site and I just can't seem to
    get it right. Thanks.
    Flash Code For the Submit Button:
    onClipEvent (enterFrame) {
    if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
    if (this._currentframe<this._totalframes) {
    this.nextFrame();
    } else {
    if (this._currentframe>1) {
    this.prevFrame();
    on (release) {
    this._parent.getURL ("contact.php","_blank","GET");
    this._parent.name = "Your Name:";
    this._parent.email = "Your Email:";
    this._parent.phone = "Your Phone Number:";
    this._parent.text4 = "e-mail:";
    this._parent.message = "Your Message:";
    Here is what I have for Contact.php:
    <?php
    $your_name = $_GET['name'];
    $your_email = $_GET['email'];
    $your_phone = $_GET['phone'];
    $your_message = $_GET['message'];
    $recipient_email = "[email protected]";
    $subject = "from " . $your_email;
    $headers = "From: " . $your_name . "<" . $your_email .
    ">\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1';
    $content = "<html><head><title>Contact
    letter</title></head><body><br>";
    $content .= "Name: <b>" . $your_name .
    "</b><br>";
    $content .= "E-mail: <b>" . $your_email .
    "</b><br><hr><br>";
    $content .= "Phone: <b>" . $your_phone .
    "</b><br>";
    $content .= $your_message;
    $content .= "<br></body></html>";
    mail($recipient,$subject,$content,$headers);
    ?>
    <html>
    <body bgcolor="#282E2C">
    <div align="center"
    style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
    Your message was sent. Thank you.
    </div>
    </body>
    </html>
    <script>resizeTo(300, 300)</script>

    well...that's true..I wanted "name" to be cleared when
    clicked...this version I found doesn't clear "name" when clicked,
    but it needs selected and erased manually...anyway..it's better
    then nothing...
    Reason I want this is because I'm using a design that is not
    giving me much space and I have to trick the low space with this
    option.
    If you want I can send you the fla to get a better
    picture...I believe you deserve it :)

  • Trying to use Flexbook with Flash Player 10

    I'm trying to use the Flexbook from Ely Greenfield, www.quietlyscheming.com/blog/components/flexbook/, with Flex 3 and Flashplayer 10.
    I'm having problems with multiple lines in Flexbook.as but they all have to do with creating a new Vector, like the example below:
    var delta:Vector;
    delta =new Vector(new Point(x,_pointOfOriginalGrab.y),new Point(x+10,_pointOfOriginalGrab.y+1)); 
    If I use the compiler option 'Enable Strict Type Checking' I get the error:
    1137: Incorrect number of arguments.  Expected no more than 0. FlexBook.as PageFlip2/[source path] src/qs/controls line 1215 Flex Problem
    If I don't use the 'Enable Strict Type Checking' option when the application runs I get this error:
    Error #1007: Instantiation attempted on a non-constructor.
    Can anyone tell me what these errors are trying to tell me?
    Thanks,
    Bob

    I guess that was the issue.  I renamed Ely's Vector class and now it work fine.
    Thanks.

  • Using FABridge with Flash SWF

    Hello Folks,
    FABridge exposes all Flex functionality to JavaScript in a
    beautiful way. However I have a Flash project that spits out an FLA
    and a SWF file. I want to use FABridge to manipulate this SWF and
    Flash through JavaScript. Can FABridge be used for this purpose? If
    so how? In Flex, inserting a simple line of code <fab:FABridge
    xmlns:fab="bridge.*"/> exposes all functionality to JS. But this
    is done in the XML part of the mxml file. Flash has all
    ActionScript code and I am not sure how to use or initialize the
    FABridge from with the ActionScript code in Flash.
    Would appreciate any thoughts or pointers on how to go about
    using JavaScript to access and manipulate Flash through SWF files
    created through Flash project. I would think that if I can
    manipulate the SWF file from Flex why can't I do it thorugh the one
    created through Flash. But sounds like I am missing something very
    basic here.
    TIA,
    Sanjay.

    You cannot do that. Your client will need to scan the image, and then you can allow them to upload the images... but you can't scan from inside Flash.

  • Using Vcam with Flash CS3

    I installed the adobe vcam extension in my Flash CS3 (Mac)
    and it all works
    ok except that the vcam frame comes in with a crosshairs
    located on the
    upper left hand corner of the frame and no matter what I do I
    cant get it to
    set the crosshairs on the center of the frame.
    When I go to use it and test the movie, the vcam action keeps
    giving me a
    lot of extra white space to the top and left of the screen
    rather than show
    me the actual frame area that I want to see and zoom into.
    Can anyone please tell me how the crosshairs of the vcam
    frame can be set to
    the center of the frame so that what I really want to frame
    and zoom on
    actually shows up in the rendered movie? Or is there another
    way to make the
    vcam frame include the areas that I want instead of giving me
    all the
    unweanted extra white space?
    Thanks a lot for any advice.

    I installed the adobe vcam extension in my Flash CS3 (Mac)
    and it all works
    ok except that the vcam frame comes in with a crosshairs
    located on the
    upper left hand corner of the frame and no matter what I do I
    cant get it to
    set the crosshairs on the center of the frame.
    When I go to use it and test the movie, the vcam action keeps
    giving me a
    lot of extra white space to the top and left of the screen
    rather than show
    me the actual frame area that I want to see and zoom into.
    Can anyone please tell me how the crosshairs of the vcam
    frame can be set to
    the center of the frame so that what I really want to frame
    and zoom on
    actually shows up in the rendered movie? Or is there another
    way to make the
    vcam frame include the areas that I want instead of giving me
    all the
    unweanted extra white space?
    Thanks a lot for any advice.

  • Files with Flash Video Exporter

    I have a .fla file which I would like to publish on the Web,
    either streaming or with progressive download. According to
    http://www.adobe.com/devnet/flash/articles/flv_exporter.html
    I have to convert this file to .flv
    Questions:
    1. There is no step by step procedure, or is there?
    2. I cannot find if this is possible with the proper Flash MX
    2004 Pro version I have?
    3. Why should I need a third party tool?
    4. The third party tool specified is Apple QuickTime Player
    6.3 but there is no mention whether it is the Pro version or the
    standard one, the latter doesnot have options to export video.
    Thank you for your help.

    I am confused as to why you would convert an fla file to and
    flv file, when the flv will need to go back into an fla file in
    ourder to play. FLV files do not play on the web without being
    contained in a swf file. Why do you need to control the download
    speed of the fla file, which again needs to be a swf to play on the
    web. I think you are going to far ahead of yourself, and you should
    slowdown and learn what everything means before going any further.
    http://en.wikipedia.org/wiki/Swf
    http://en.wikipedia.org/wiki/Flv

Maybe you are looking for

  • Problem with Sound in iPhone 4

    REcently my iPhone 4 8GB is behaving strangely with sounds. I regularly use the mute button to silent the phone at my workplace. The phone remains on mute even after unmuting it from the side button. Then after sometime it automatically comes back. T

  • Configuring Standalone Oracle HTTP server (1.3) with  Mid tier (10.1.2)

    Hai All, We have installed OHS 1.3 in DMZ and we have 10.1.2 midtier installed with B2B server in Firewall. I have modified mod_oc4j.conf of standalone OHS with following content to route the requests to midtier Oc4jMount /b2b/* instance://ap6003idmz

  • Printing pattern swatch versus Expanded Art

    Attached is a photo of the pattern swatch on the left and the expanded art on the right. Since the colors are both the same, why is the pattern swatch so gray where as the expanded art is what matches my swatches I made. Original art is below, on the

  • Change item value by process in DML Form: best practice?

    Hi, i have a working DML Form and would like to build an option for choosing values in a popup window and refreshing the page items after closing the popup window. the DML Form has a button which opens the popup window with javascript:popUp2('f?p=&AP

  • Read/Write 2d numeric array or string array into bin file

    Can anyone pls help me to resolve this problem Attachments: bin file.vi ‏9 KB