Please set me in the right direction. PLEASE!

I'm about to undertake a big task. I'll try and keep the overview short, and i'd just like anything, from someone saying that its impossible, to a link to a tutorial if there is one.
My project:
---> An awards banquet slideshow for sports, where each team has an MVP
So what my vision is, is to have this flash .exe i create to be used for subsequent banquet by people with no flash knowledge. They would just open up the file, click a button 'Add page' and it would bring them to a form that has 'Team name, award name, and award winner'. Then click 'add' or something, and it brings you back to the beginning page, but now there is a list started, so i can edit the slide i just created, or add another one.
Once the 20 or so teams are added, i click 'Create show' and it creates a new .exe that will allow me to open up the file the night of the awards, and have a consistent layout for each slide, clicking an envelope or something to expose the winner on demand.
Also, it would be important to have a photo for each award winner, so i would need a 'browse for picture' button or something.
Is this remotely possible?? I would really appreciate help, even if you just help me along step by step.

Ok, i just thought i could have something like an XML file, or a spreadsheet of some sort, get my slideshow to feed from it, and if i change the data source (xml or spreadsheet) my slideshow would change as well.
But what your saying is make the slideshow, and then make an editor? Would it be easy for someone who knows nothing about flash to edit it?

Similar Messages

  • Need advise about new computer (OS Win8.1) to run CS6 - please point me in the right direction  Thanks

    Question:  Need advise about new computer (OS Win8.1) to run CS6 - please point me in the right direction  Thanks

    OSX comes with Xcode. Install it and see what you think. You can write both Java and Objective-C. They both have a particular syntax that is quite different from VB. Try to use them to write a HelloWorld program and see what you think.
    Apple has come a long way in integrating Java into their development environment. Still, it was designed around Objective-C, so that might be more of a "pure" MacOS X development experience.

  • Creating documents-please point me in the right direction

    Could someone please point me in the right direction:
    I have a couple of tabbed panes which contain some data-
    i save the data to mySql db.
    i read the databack. and get a rs.
    i want to take this data and put it into a document(namely pdf).
    -so that it is not editable.
    -so that i can preview the document before printing it
    I would like to print the data on a template - if possible? can i use a word template?

    Could someone please point me in the right
    direction:
    I have a couple of tabbed panes which contain some
    data-
    i save the data to mySql db.
    JDBC will handle this easily.
    i read the databack. and get a rs.
    Good.
    i want to take this data and put it into a
    document(namely pdf).Consider using XSL-FO (if you are comfortable with XSL) or i-Text (if you want to create the PDF programatically)
    -so that it is not editable.This is the default behavior of PDF.
    -so that i can preview the document before printing
    it
    This is provided by most Acrobat readers within a browser.
    I would like to print the data on a template - if
    possible? can i use a word template?Huh? Now you lost me. PDF is a document format. Word is a document format. You can include a PDF in a Word document. However, why would you do that? You already have a PDF.
    - Saish

  • Please point me in the right direction

    I've been developing with AS2 for many years. I want to create an AS3 app for android and ios but am entirely confused about what tools i need to use. I bought Cs5 and started learning AS3. I am using Flash CS5 since that's what I am familer with (I am first, a designer). One of the biggest problems is that I can't figure out how to do a splash/loading screen for android with Flash. I read that Flex can do this. So..Am I supposed to develop my app with both flash and flex? or can I just use flash. The loading screen is very important. I don't want to have to buy flash builder just to make a loading screen. thanks for your help. I really need it!

    Thanks, Red.
    Hmmm. Mail would have a preference to not have itself as the default email reader? Ah, but I have to set up Mail in order to get to its preferences. Tricky.
    Let me explain further what I'm trying to do. I use a time-keeping and billing application that allows me to send an invoice (as a PDF attachment) from within the app. BUT, it only sends via Mail. My workaround at the moment, since I use Entourage, is to use the Print dialog box to save the invoice as a PDF and then attach the file to an Entourage email. This works just fine. Hopefully the developer will allow users to choose email application in the future.
    But, while I was brainstorming this workaround, I saw that in the print dialog box, under the PDF button, is a Mail PDF function, which also uses Mail. So, I was thinking that if I could make something like that but that uses Entourage, it might save me a step, as the invoice is saved in the application for future access. I don't really need the PDF, except maybe to keep a copy of it with the rest of the job files for archiving.
    So, I searched and found the file. It's called Mail PDF.workflow, and its icon shows it to be an automator document. I looked at the workflow in Automator, but it looks like it's one action. (On my computer it's in the main Library/PDF Services folder.) I just literally decided to look into Automator today (although have known about it), so I really have no idea what I'm getting into.
    So, I think this may be too much for me, but I know there are other people out there who prefer non-Mail applications, so I figured I'd come here and ask you nice people to point me in the right direction.
    Thanks--d

  • Help point me in the right direction please??

    Hey whats up. Im trying to make a calendar for my applet. the problem i have is that for each cell in the calendar i want to print 3 lines of information (ie: line 1: day, line 2: some status, line 3: some status)
    ive looked into using JTables but as far as I have seen I can only have 1 line of data for each cell. I was thinking maybe i coudl make a custom JLabel or panel and insert that into each cell...but im not sure if that would work or how to go about doing that.
    does anyone have any suggestions on what path i should take in trying to do this?
    should I not do JTables and take a different approach?
    thanks
    -ray

    I need some help please...
    below is a snippet from my calendar. these panels are the indiviual squares in the calendar. My problem is that I make 3 labels but no matter how i format it...all three labels appear directly next to each other. Ive tried various layouts...some of stuff ive tried is still commented out. the only way to get the proper layout is by adding the ugly spaces that I have in there to FORCE the label down. Im not sure why its doing this. LIke i mentioned ive tried almost all the various layout managers to get this right but no luck. maybe im not doing them right..i dont know.
    any suggestions??
    private class GridPanel extends JPanel {
            private JPanel panel;
            private JLabel dayLabel;
            private JLabel resultLabel;
            private JLabel scoreLabel;
            private String score;
            private Color resultColor;
            public GridPanel(int dayNum, String result) {
                panel = new JPanel();
                //panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                panel.setPreferredSize(new Dimension(100,100));
                //System.out.print(panel.getPreferredSize());
                dayLabel = new JLabel("        "+new Integer(dayNum).toString()+"      ");
                resultLabel = new JLabel("        "+result+"      ");
                scoreLabel = new JLabel(score);
                GenerateScore(result);
                JLabel scoreLabel = new JLabel(score);
                removeAll();
                dayLabel.setFont(new Font("Serif",Font.BOLD,12));
                add(dayLabel,panel);
                resultLabel.setForeground(resultColor);
                scoreLabel.setForeground(resultColor);
                add(resultLabel,panel);
                add(scoreLabel);
                //resultLabel.setAlignmentX(Component.CENTER_ALIGNMENT);
                //dayLabel.setBounds(0,100,25,25);
                //resultLabel.setBounds(50,50,25,25);
            }

  • I have an iPod 80gb which charges and looks to play tunes though nothing comes out of head phones docking stations etc. Can you point me in the right direction please?

    I have an 80GB iPod which charges and looks to play tunes though nothing comes out of ear phones,speakers or docking stations. Can you please help me fix this?

    Hello lowe-m1,
    Thanks for using Apple Support Communities.
    For more information, take a look at:
    iPod troubleshooting basics and service FAQ
    http://support.apple.com/kb/ts1382?viewlocale=nl_nl
    The headphones don't work
    If your iPod's headphones don't work or have static or garbled audio, try connecting them to any other 3.5 mm stereo headphone jack, like the one on your computer. If the issue with the headphones persists, replace them. For an iPod under warranty, you can order a replacement online. Otherwise, check out the cool headphones at theApple Online Store. If the issue appears to be with the iPod, try resetting it. If that doesn't work, then restore iPod with the latest iPod software using iTunes 7 or later.
    Have a nice day,
    Mario

  • For the love of god will someone please point me in the right direct

    I have a SoundBlaster Li've! 5. soundcard installed in my pc. My pc crashed and a new hard disk was required. I do not have the CD that came with the card,?I have managed to ?download Li'veDrvPack.exe, all be it from DriverGuide.com as i cannot find the file anywhere on this site. Every time I run the .exe file I get the following error message;?Setup could not detect any SoundBlaster Audio card on your system. Please ensure the your SoundBlaster hardware is properly installed before running this Setup program. Setup will now exit. I have checked in my Device list and there is an item marked as driver not installed with the label 'Multimedia Audio Controller'. The card is being recognised by Bill Gates' wonderful OS. I am getting towards the end of my tether with this and ready to launch the whole f***ing thing out of the window.... :-s?PLEASE, SOMEBODY HELP ME..
    Thanks?Binty.... :-pMessage Edited by binty on 04-26-20072:47 PM

    binty,
    You can download the CD for the Li've 5. from [url="http://badboy.hub.io/">here[/url]. Look in the Audigy & Li've section. Which download you want depends on your model number. If you get a similar error when you install from the CD, run ctzapxx.exe in the /audio/driver subdirectory on the CD and select "overwrite existing..." (or similar phrasing).

  • Help! I can't find the download link for adobe acrobat in my account. Can someone point me in the right direction, please?

    I have redeemed my Adobe Acrobat XI Serial Number, and created an adobe account, but can't find that link to download the entire program anywhere. I only see a link for a temporary version and a link for updates although I have purchased the program. So where is that download link, please?

    I forgot to get back to you. Thank you very much for your prompt reply.
    Your suggestion helped!
    Pamela Oettel
    *Oh by the way, referrals to your friends are the heart of my business! If
    you know of someone who is buying or selling a home, please give me a call.*
    cell: 510-703-8636
    [email protected] <[email protected]>
    Hablo espanol tambien
    *Check out my Latest Facebook Post
    <https://www.facebook.com/pameastbayrealtor>*
    *Check out *What They Say About Me
    <http://www.zillow.com/profile/Pamela-Oettel/Reviews/?my=y>
    *BHG Mason McDuffie *
    2095 Rose Street, Suite 100, Berkeley, CA 94709
    BRE Lic No. 01761212
    On Tue, May 27, 2014 at 2:29 AM, GautamBahl <[email protected]>

  • Custom UILabel subclass... point me in the right direction please...

    Hello all...
    The app Im working on has a lot of UILabels created programmatically. I have several properties that I am assigning to these labels like font, textColor, textShouldResize, alignment, backgroundColor and a few more. Im doing this for every label in my app which is turning out to be quite a lot.
    I know I can create a class for this label... so I added a CustomLabel class which subclasses from UILabel but that is as far as I got. Im not sure how to declare these properties while subclassing. Or more specifically, how to init the implementation file. Should I be doing initWithCoder or just init??
    So lets say I want to set the textColor to white, would it look like this in the header file?
    #import <UIKit/UIKit.h>
    @interface CustomLabel : UILabel {
    UIColor *textColor;
    @property(nonatomic, retain) UIColor *textColor;
    @end
    .m
    #import "CustomLabel.h"
    #import "Constants.h"
    @implementation CustomLabel
    @synthesize textColor;
    - (id) init {
    textColor = [UIColor blueColor];
    return self;
    @end
    Beyond this Im not sure what to do with the implementation file. Any pointers for this would save me boat loads of time. Ive been playing around with it for a few days now and it just doesnt look right.
    Thanks
    Message was edited by: iMerlin

    Sorry to reply to my own post but I think I figured it out...
    - (id)initWithFrame:(CGRect)frame {
    if ((self = [super initWithFrame:frame])) {
    textColor = [UIColor blueColor];
    return self;
    This fixed it.. Now within the rest of my app I just allocate a UILabel like so...
    label = [[CustomLabel alloc] initWithFrame:CGRectMake(0, 160, 480, 30)];
    That always happens, I struggle with something for a bit, then post a question about it, then I figure it out on my own! LOL Hopefully someone else fnds this useful.

  • HT5204 can some please point me in the right direction to get a apple certificate and put it in layman terms

    can some 1 please help me with a issue of getting a apple certificate please and also explain in layman terms

    I'm not sure if this will help or not, but I came across this page while wondering the same thing.  http://www.apple.com/certificateauthority/
    I just clicked the link "download certificate" and then opened it and it installed. I dont know if it's different on Win7, but this worked for me on my MacBook Pro.
    Good luck!

  • Please point me in the right direction regarding forms that email to me

    I really want to learn how to program a basic form - Name, email, and message. I know how to create the
    webpage that has the boxes you type in using dreamweaver. But i need a little direction to get past that point.
    Here are my questions:
    1) What programming language is easiest to learn that will allow me to finish my email form?
    2) Do you know of any web resources that i can go to to help me get started with that programming language?
    Thank you!

    AndrewMichel1 wrote:
    Thank you both, i will stick to PHP and check out lynda.com to get started!
    One more question, what kinds of other things can you program with PHP?
    You can program lots of things and make modifications to existing scripts as well.  Typically most people work a lot with information in databases and use a language like PHP to process the information and print it into HTML.  For instance, if you want to keep printing results from mySQL as a table you would make a loop in PHP to keep printing:
    <tr><td>$row['var1']</td><td>$row['var2']</td></tr>
    For each row of results.  That is a very simplified version that wouldn't work without other coding so it's just an example.  A lot of times there are pre-made scripts in the case of a forum like this where you should consider open source or commercially available solutions.  And if you want to get even more complicated you can build a facebook from scratch and use PHP interactions with client-side scripting (Javascript) and libraries like JQuery. 

  • I need to completely remove WebRoot from my Macbook Air and cannot. Please point me in the right direction

    I have purchased another security system for my Mackbook Air and my required PC. I now cannot remove Webroot security from my Mac. It responds to me that I do not have "the authority.....", cannot because "it is in use elsewhere", etc. I am using Finder and when I ask to move the application, Finder asks me for my authority password and acts like it is doing the job, but up pops the reason (above) why I can't. I'm not an experienced user of the Mac product but like it a lot. Hopefully, someone can give me a hint. Thanks in advance!
    rmb

    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    Here are some general guidelines. Suppose you want to remove something called “BrickYourMac.” First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickyourmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickYourMac.dmg and open it. There may be an application in there such as “Uninstall BrickYourMac.” If not, open “BrickYourMac.pkg” and look for an Uninstall button.
    You may have to log out or reboot in order to complete an uninstallation.
    If you can’t remove software in any other way, you’ll have to erase your boot volume and perform a clean reinstallation of OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" that purport to remove software.

  • Please Guide Me in the Right Direction.

    I want to record onto a karaoke track and I've got a Mac Book Pro (specs are on this page). But I have absolutely no idea what to use. Do I need to buy a mic? What program can or should I use? Your help is greatly appreciated.

    You can't just buy a professional mic and plug it into your computer, I'm afraid, if you went that route you'd also need to buy an audio interface.
    The other chocie is a USB microphone. Two high quality USB mics are the Studio Condenser Mic with USB Output, and then Snowball USB Microphone.
    Either would sound many times better than the internal mic of the Mac.
    --HangTime [Will Compute for FOod] B-)>
    Note: I am an Amazon Associate, if you purchase this item via my link I will get a small commission)

  • Divs? Please point me in the right direction

    OK, I really need for someone to point me to either a good tutorial, website, or book that will help me learn how to work with divs.  I just need a good guide, so I can build in a more current way.
    And I could also use a good place to learn to use CSS correctly.  Seems no matter how I try, I can't seem to keep my CSS from becoming a mess.
    Thank you in advance
    Nina

    I learned from these two tutorials (links below). They are a few years old but I think still relevant:
    http://css.maxdesign.com.au/floatutorial/tutorial0801.htm
    http://css.maxdesign.com.au/floatutorial/tutorial0901.htm
    You'll need to take a bit of time to read through the step by step instructions BUT it will be time well spent. What you learn you can then begin to apply and modify to suit your own requirements
    Once you become accustomed to using <divs> and css you'll wonder why you found it so difficult to grasp in the first instance. It takes time and patience but the effort is worth while if youre serious about web developement.

  • Please point me in the right direction..... (newb)

    Hi
    I currently code in VB6 on XP and am looking to start coding on OSX, but don't really know where to start. I write applications for image interpretation (pixel position, color info etc.) so I need to be able to pull that kind of data out of images. I need to build UI's with various controls (check boxes, radio buttons, image containers) and so was wondering what's the best way to start out. Which toolset should I be equipping myself with? I looked at RealBasic but that seems pretty expensive and with all the 'free' stuff that comes with OSX I figured I should try and make use of this.
    Your advice would be very much appreciated.
    Thanks
    Richard H
    (http://www.richyho.btinternet.co.uk)
    MacBook 1.83GHz 512MB   Mac OS X (10.4.6)  

    OSX comes with Xcode. Install it and see what you think. You can write both Java and Objective-C. They both have a particular syntax that is quite different from VB. Try to use them to write a HelloWorld program and see what you think.
    Apple has come a long way in integrating Java into their development environment. Still, it was designed around Objective-C, so that might be more of a "pure" MacOS X development experience.

Maybe you are looking for

  • IPod is recognized by iTunes and computer, but wil not sync songs

    iPod is recognized by iTunes and computer, but wil not sync songs. I have about 1400 songs and just got 40 more, and before I bought those 40 my iTunes was wiped out. I still had the files so my iTunes was filled up again. Now, when I connect my iPod

  • Can i use a external thunderbolt harddrive to copy my imac hard drive.

    how fast would a thunderbolt external hard drive be, if i were to copy my Imac hard drive as a backup or image. At the moment its taking 4 hours to copy 95gig using my USB external hard drive......Seems like forever!!!!!

  • Selecting Graphics Behind Text

    Hello, I'm using Pages '08 and working with a neat, layered, grouped graphic. There are three layers: a dark background graphic, a lighter middle graphic, and white text in a text box on top. All three use the exact same dimensions and are stacked on

  • How to call multiple stored procedure from same DB Adapter

    Hi, I want to invoke 3 stored procedures from my message flow in BUS . I created a DB adapter and invoked 1 successfully . Now I don't to configure 2 other DB adapters for calling other 2 stored procedures . I want some how to be able to call the oth

  • Check clearing or not

    How to check any clearing accounting document to settle a goods issues delivery. I have a goods issue document. I would like to know is there any clearing document for the goods document. Thanks!