XML/AS3 Lightbox style gallery - need starting point....

I've made a gallery slideshow before but wasn't as intuitive looking back at it now and I want to start fresh on this new project. I would like to convert a jQuery lightbox style gallery into a flash XML based AS3 image gallery with categories. I don't want to code the FLA, I want separate AS files.
This is a school project for my website. I would use jQuery and I have more experience with it but this project needs a flash component. I'm just not sure where to start and looking for some advice on how and where I could find resources. I want it to be minimal as I can make it;
- 8 thumbnails to a "page/section" with more flowed into page 2 or 3 etc. (or a srcoller)
- a few buttons for categories
- images fading in full size with a description when hovered over and a close button
- preloader (simple bar)
Esentially something like this > http://www.layeredpixels.com/tf/unibox/#works which is using http://razorjack.net/quicksand/ for the thumbnails. That might be ambitious but I'd suffice with a simple fade effect
I just dont have much time and need to focus on other projects in the meantime so to find a good base with no fancy effects (yet) would really help. I've downloaded some galleries out there but most of the code is messy or outdated.
http://www.republicofcode.com/tutorials/flash/as3gridgallery/8.php < this is alright, but all the code is done in the FLA. I might break it into AS files but it depends. And I would like help with adding categories to that.
I want to look into implementing Greensock, so any pro's out there that can give any advice would help greatly

The best way to get going is to choose a solution path and get started on it.  Then, to get help, come with specific coding problems to solve and not a shopping list of wants.

Similar Messages

  • Need start point

    what is the best way or the best technology to develop gui-database web application???(not applets)

    Go and use .NET
    At least that way, we won't have to put up with stupid open ended questions from you on this board.
    For gods sake go and do some [url http://www.google.co.nz/search?hl=en&q=web+application+java+database&meta=]research on the internet.
    http://www.catb.org/~esr/faqs/smart-questions.html

  • I need a starting point....

    Hi,
    I am an experienced PLSQL developer but know virtually nothing about Web Services and XML.
    What we need to do is publish some data direct from our Oracle database as a webservice, like an interface. Another department wants data from us in an XML format but they want to be able to call it on demand via a webservice.
    Does anyone have a starting point for me? We are on Oracle 9i. I know nothing about Java or Oracle 9i AS.
    Thanks in advance for any help.

    (1) Using wsa.jar command line tool to publish PL/SQL to webservices
    http://www.oracle.com/technology/documentation/appserver.html
    Check out the webservice documentation about PL/SQL.
    (2) Usig JDeveloper to publish PL/SQL into webservices
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3/state/content/navId.4/navSetId._/vtTopicFile.webservices%7Cws_c_createstdepws%7Ehtml/vtTopicId./
    Although Java experience is helpful for using the tools, at runtime, little Java knowledge is required to deploy and consum the service.
    HTH

  • New on Game Develop - I need a Start Point :)

    Hi,
    I know that this must be the topic most common, I develop applications to client/Server and I want to venture me in the development of a game (RPG). The problem is that I do not know where to start! Which are the class that I must use? Already exists some api in java to help me? If yes, which are they? The map, the players. I intend to make a basic game in 2d, as lufia (SNES), Final Phantasy VI (USA III - SNES). Which must be my starting point?
    Thanks for all !

    The beauty of Java is, pretty much everything you need is right there available.
    There are other API's apart from the java standard, but I have not used any as of yet.
    Java2D API is part of the standard edition java. It will handle transparency and everything else you may need to do an snesRPG clone.
    Instance modeling will save you scads of time, make sure you know how to make and extend abstract classes, they will make your life easier, make sure you know how to time Threads properly.
    The map will be a class, the class will actually serve as a sort of database for inividual tiles on the map. The class will be instanced from a 2 dimensional array with x and y values being the dimensions. You will need to have 3 or four layers of this map. The class will store the possition, image, and other important iformation about the individual tile.
    You need to learn MediaTracker, you will most likely want to use AWT instead of Swing, you will need to learn how to use BufferedImage, etc.
    Plan Plan Plan, and Plan more. RPG's are big projects, if you use linux, dia is your friend.
    Work on little things like logic while you learn the other stuff you need such as Randoms, how to implement monsters and characters, and make them do battle, how to tell if they are dead, attacking, etc.
    An RPG takes a very stubborn individual to successfully complete as one man project, if it doesn't work, there is a reason, find out what it is, and yes it has been done before in java. :-)
    I have been assuming you are a good programmer, therefore I just scartched the surface for you to show you some of the things you need to plan for to get into game programming.

  • I need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a hard drive.

    i need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this subject but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a external hard drive.

    If the file was not originally from iTunes, you'll need to redownload it from it's original source or rerip it from the CD.  Files can sometimes go bad and become corrupted.  As to how or why that happens, there are a number of ways.
    What format are the problematic tracks in? Have you tried converting them to another format in iTunes?
    iTunes: How to convert a song to a different file format
    B-rock

  • A starting point for pipemenus in Openbox

    Does anybody know of a good "hello world" pipemenu written in python or bash? I'd like to get started with making my own pipemenus, but I'm having a hard time looking though some of the pipemenus on the Openbox website. I just need a nice clean one to look at for a starting point. Thanks.

    Hi kiwisaotome,
    The idea is to make a script that creates an xml form at the time when it is called, which the openbox menu can use. It's fairly easy. Here is an example that I use. I don't remember where I got it from:
    #!/bin/bash
    FREQ=`cpufreq-info -p | awk '{print $3}'`
    echo '<openbox_pipe_menu>'
    if [ $FREQ = 'powersave' ]; then
    echo '<separator label="Powersave"/>'
    else
    echo '<item label=" Powersave">'
    echo '<action name="Execute"><execute>sudo cpufreq-set -g powersave</execute></action>'
    echo '</item>'
    fi
    if [ $FREQ = 'ondemand' ]; then
    echo '<separator label="Ondemand"/>
    else
    echo '<item label="Ondemand">'
    echo '<action name="Execute"><execute>sudo cpufreq-set -g ondemand</execute></action>'
    echo '</item>'
    fi
    if [ $FREQ = 'performance' ]; then
    echo '<separator label="Performance"/>'
    else
    echo '<item label="Performance">'
    echo '<action name="Execute"><execute>sudo cpufreq-set -g performance</execute></action>'
    echo '</item>'
    fi
    echo '</openbox_pipe_menu>'
    Then I call it from the openbox menu.xml where it first is declared or what ever it's called:
    <menu execute="~/.config/openbox/scripts/cpufreq-pipe.sh" id="system-cpu-menu" label="CPU Governor"/>
    And then called:
    <menu id="system-cpu-menu"/>
    Hope that helps.

  • How can I create a high res image gallery, need to have print res photos for a pressroom section.

    How can I create a high res image gallery, need to have print res photos for a pressroom section.

    If you want Muse to "pass through" your images and not adjust, compress, crop etc - you need to place your images in the lightbox EXACTLY at the right size, pre-cropped and prepped in Photoshop.
    So if your light box is 800x600 the image you're dropping into that must be 800x600 exactly with no effects, rotation etc added to the lightbox frame. This stop Muse fiddling with your images, if they are perfect when inserted and you're not asking Muse to crop, expand, add effects etc. If it's perfect when inserted, Muse SHOULD also leave the resolution alone too, but I have not tried that one, but in theory, it should work.

  • Changing the Media Start point

    So I just had a hard drive crash on me and I did not have back-ups of my footage. It's not to bad because I have back-ups of the project file I was working on. So all I was going to do is a Batch Capture to reconnect all of my clips. Only problem is the person I had capture the footage did not leave enough pre-roll when they did a capture now. So now when it tries to re-capture it says "Cannot locate specified timecode"
    This is because there is not enough pro-roll on the clip to allow it to batch capture. When I look at the Media Start in the browser window for the clip it says it starts at 00:00:02:31. I need to change this to a later start so it does not try to roll the tape so far back. So.....
    How do I change the Media Start Point???
    Thanks

    Ok, I am following you, I just need to make sure the clips in the edited timeline reconnect with the old master clip.
    I could keep the old offline master clip and just make it reconnect to the new captured clip. But will this make all of my already edited clips in my sequence that are looking at the old master clip off by however many seconds I had to reset the in-point to get the tape re-captured?
    Thanks for the tip on dragging clips to the L&C window, I did not know you could do that.

  • Don't know how to set an interactive form as starting point?

    Hi all,
    I need to have a scenario where the starting point of a guided procedure is an interactive form.
    I've made an interactive form in Adobe Designer and saved it as .xdp
    I've made a callable object from it, add it to an action and add the action into a process.
    Now when I initiate a new process in runtime I only see the input fields from the form in a Web Dynpro like design and not the actual form itself.
    I thought it was just a simple handling to start a guided procedure process with an IF but it appears not to be for me.
    Can somebody help me please?

    The input parameters you are seeing in a 'Web Dynpro like' form are more than likely input parameters to the process.  Process input parameters come from action input parameters  in process blocks and actions that are not mapped.  Given that, it sounds like you have not mapped all the input parameters for one or more of your actions in your process.  By default, GP provides the process initiator the ability to specify the values of these inputs when a process is started. To avoid this you can either,
    1. Map all the input parameters.
    2. Specify the process to start automatically under the 'Instantiation' tab for the process template.  By selecting this, input parameters are ignored and their default values used.
    3. Don't expose these parameters if they are not required or applicable to your process.  This can be done at the action or block level under the 'Parameters' tab.
    ~Greg

  • How can I get the mail body of the start point mail

    Hi,
    I am using 'MailStartPoint' activity to fetch mails using POP3 protocol. It is fetching the mail successfully. Now, how can I read the different parts of mail message such as Subject, Body in variables.
    Thank You,
    Hali Gerorge.

    You need to set data types values as below for reading the mail.
    %SUBJECT%
    %BODY%
    %HEADER%
    %SENDER%
    Check this link for more details - http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=001463.html
    Also see "Use an e-mail start point" @ http://www.adobe.com/devnet/livecycle/videotraining.html
    ~ Varun

  • Help with starting point for "proof of concept" integration

    We are a third party application provider and are attempting to figure out how to do a "proof of concept" integration with SAP.  We are not looking for "certification".  Our product does not appear to fit any of the standard certifications for integration and our experience integrating with other systems indicates that no two integration will be identical.
    We are looking to do a simple integration scenario with an SAP system so we have some basic experience doing it, can say 'Yes" when asked if we have done it, and can create a video showing a transaction being done in SAP and our system also updating (and ideally the reverse).
    Our starting point with respect to SAP knowledge is "0".
    Our basic task list (we think) goes something like
    1.  Figure out the version and modules of SAP with which we should be integrating
    2.  Get access to an SAP system (do we rent, is there a developer/evaluation, ...)
    3.  Put some data in the test system (is there a "sample data" set?)
    4.  Figure out the SAP transactions that map to the business process in which we are interested (moving goods in and out of a distribution center/ware house - are there some "standard business process guides")
    5.  Integrate (we are a .NET web based application so we are guessing this means use the ".Net Connector")
    Could anyone point out any resources (white papers, links, people, places to find people,...) that might be a good starting point?
    Thanks,
    John

    Athol,
    We are looking to recieve notifications out of SAP as tractor trailers at a dock are filled as proof on concept.  The actual integration scenarios we do are more complex and do not match well with any of the pre-packaged certification scenarios.  The real world integration scenarios actual vary substantially from customer to customer in terms of the integration points between systems.
    As we have become more marginally knowledgable about SAP, I think we will end up receiving and sending "IDOC" messages from SAP but have no idea what those IDOC messages are or where to start looking for what a "standard" (if there is one) message SAP would generate in reaction to whatever the "trailer is loaded" transaction is.
    To figure out what the transaction is, I assume we need to identify what version of SAP we should be targeting for a simple integration.  Are there any could references on what the commonly integration methods are and to which versions they apply?
    Something like "hey, if you do an integration with a IDOCs in with SAP Netweaver 2004 then that would good proof you could integrate with 90% of the installed SAP base".  Of course, any links explaining what the versions of SAP are and where they are in there lifecycle and what people are actually using would be helpful.
    John

  • Looking for a lightbox style extension for Quicktime Videos

    Hi guys,
    I am looking for a lightbox style extension for Quicktime Videos. I can't find anything on the net.
    Can anyone recomend something easy? Bare in mind I am not good with scripting.more of a designer.
    Thanks everyone.

    Sorry about all this, but it seems that playing videos in a lightbox window is the ultimate goal.
    I have tried the You tube video in my FF and it works O/k except that it does not auto-start. You are correct about not working in IE, (although the documentation says it does!).
    I have found another one that works in IE but the QuickTime part does not seem to work in FF, you can check this out yourself as it may be my settings.
    http://www.stickmanlabs.com/lightwindow/#demos
    (The note on website says that the theme they are using has an effect on compatibility, so this may also cause the problem in FF.)
    After much digging around various websites and forums, mootools had a problem working with IE and the recommendation is to download the new version of mootools from: http://mootools.net/download
    HTH
    PZ

  • AS3 rotation issue/bug need help.

    Ok I have been converting a AS2  flash based sight to AS3. With the project I have to make new  transitions for the pages. The client wants these transitions to be in  3d, which ive worked with before and have had no problems. However for  the last few hours ive had this killer issue that wont go away.
    When using  rotationZ or rotationX on any element the rotation value is not based on  360 degrease but instead based on a random number. For example I can  rotate a box on the stage by 0.03 and it will be ~rotated 180 degrease,  but if I do the same rotation on another box on the stage it will go to  ~40 degrease.
    Im  clueless to why this is happing and if I try to duplicate the error in  another file it wont happen. So... anyone able to give me a heads up at  what may be causing this?
    For those asking how im rotating it.
    box.rotationY  = 45;
    box2.rotationY = 90;

    Ok... heres the min code for the error to happen my side.
    If you need an XML you can make your own to test this using the fallowing structer or just use this.
    ---------------------------- XML Bellow ------------------------------
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xml>
        <page>
            <name value="Home"/>
            <background value=""/>
            <content type="text">Hello this is random text? what the hell? what the duce?</content>
            <x value="400"/>
            <y value="20"/>
            <content type="image">url to the image file</content>
            <x value="400"/>
            <y value="20"/>
        </page>
    </xml>
    -------------------------------- AS3 Bellow -----------------------------
    package {
        import com.greensock.*; // this is a tweening class dont worrie about it
        import flash.display.*;
        import flash.events.*;
        import flash.net.*;
        import flash.text.*;
        import flash.utils.*;
        import flash.geom.*;
        public class sps extends MovieClip {
            var PAGES:MovieClip = new MovieClip();
            var p_url:String="sps.xml"; // this generates content for pages loads and works fine dont worrie about it
            var p_loader:URLLoader = new URLLoader();
            var PageList:XMLList;
            var rdy:Boolean = false;
            public function sps() {
                setFormats();
                loadPages();
                init();
            public function init() {
                addChild(PAGES);
                PAGES.rotationY = 60; // This is were the problem is!
            public function setFormats() {
                ntf.color=0xFFFFFF;
                ntf.font="Tahoma";
                ntf.size=12;
                ntf.align="center";
                ntf.bold=true;
                ntf.rightMargin=ntf.leftMargin=10;
            public function loadPages() {
                function onComplete(e:Event) {
                    p_loader.removeEventListener(Event.COMPLETE, onComplete);
                    var xmlData:XML=new XML(e.target.data);
                    PageList=xmlData.children();
                    var i:Number=0;
                    while (i < PageList.length()) {
                        makePage(PageList[i], PAGES);
                        i+=1;
                p_loader.load(new URLRequest(p_url));
                p_loader.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
            public function makePage(pd:XML, p:MovieClip) {
                var page:MovieClip =new MovieClip();
                var pageCon:MovieClip = new MovieClip();
                var i:Number=0;
                while (i < pd.content.length()) {
                    if (pd.content[i].attributes()=="text") {
                        newText(pageCon, pd.content[i], pd.x[i].attributes(), pd.y[i].attributes());
                    }else if (pd.content[i].attributes()=="image") {
                        newImage(pageCon, pd.content[i], pd.x[i].attributes(), pd.y[i].attributes());
                    }else if (pd.content[i].attributes()=="video") {
                    }else if (pd.content[i].attributes()=="music") {
                    }else if (pd.content[i].attributes()=="subpage") {
                    }else if (pd.content[i].attributes()=="slider") {
                    i += 1;
                pageCon.x-=472.5;
                p.addChild(pageCon);
                pageCon.addChild(page);
            public function newText(p:MovieClip, t:String, x:Number, y:Number) {
                var tf:TextField = new TextField();
                tf.text = t;
                tf.x=x;
                tf.y=y;
                p.addChild(tf);
                return tf;
            public function newImage(p:MovieClip, u:String, x:Number, y:Number) {
                var f:URLRequest  = new URLRequest(u);
                var i:MovieClip = new MovieClip();
                var l:Loader = new Loader();
                i.x=x;
                i.y=y;
                l.load(f);
                p.addChild(i);
                function ps (e:ProgressEvent){
                function lr(e:Event){
                    l.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, ps);
                    l.contentLoaderInfo.removeEventListener(Event.COMPLETE, lr);
                    i.addChild(l);
                l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, ps);
                l.contentLoaderInfo.addEventListener(Event.COMPLETE, lr);
                return i;

  • Numbering: Import v Image v Sequence - How do these work? Can they be set to arbitrary start points?

    I have been searching where ever I can but I can't seem to find a good explanation of the difference between "Import Number," "Image Number" and "Sequence Number."
    In LR4 I was able to specify a start number for sequencing the image reference numbers.
    I would like to be able to specify that start number and have LR remember where it left off for the next time I import so I have continuously increasing numbers across imports until the next time I need to reset.
    Thanks for any information you can provide or links to the information.

    OK. A simple experiment reveals:
    Import# - Ever increasing number for each import. If this is used without another dynamic numbering (ie image#) it will append -# to the end of the filename. (ex. PHOTO001, PHOTO001-2, PHOTO001-3 etc.)
    Image# - Ever increasing number for each image across imports (Half of what I was looking for)
    Sequence# - Increasing number for each import. Resets to 0 each time.
    The question still remains though.
    Can the start points be manually set?
    Thanks.

Maybe you are looking for

  • Not sure WHAT the problem is exactly. . .

    Okay, so here is the situation. I go through Qwest for our wireless internet service. The router for our service is upstairs in our two-story house. We have a few different electronic devices running off of the internet at any given time, including 2

  • Photo Stream question!

    hello! guys Is that Photo Stream works just wifi connection? i think take a picture on my iphone and my photo will be streaming through my cellular data connection to my home located ipad. but i'm going on wifi coverage places my phono immediatly str

  • 16:9 is stretched when exported to 4:3

    I have a project filmed and edited in anamorphic 16:9. However I need to export it in two aspect ratios: 16:9 and 4:3 (letterboxed). The 16:9 version exports with no problems, however the 4:3 is streched! I have made new sequences in both 720x480 and

  • Web Deployment for a 7.3.3 with Developer ?

    Hi , I would really appreciate some high level help. I am a DBA consultant working with a University in Dublin. We are implementing a suite of applications as part of a global program of System upgrades on a Digital Unix database server with W95/98 c

  • How do I print the first page first?

    Why does my printer print back to front since I downloaded Adobe Reader? How can I fix it? I want it to print first page first, not last page first.