Flex :: AIR App In Front Of Keynote Presentation?

Oct 27, 2009

Does anyone know of a way to make an AIR app display over top of a Keynote presentation?rrently have alwaysInFront set to true.

View 1 Replies


Similar Posts:


Flash :: Silverlight - MVVM - Presentation Model In Flex Vs Presentation Model In Silverlight: Advantages And Disadvantages?

Apr 10, 2011

As it is said here: [URL] "If you do a Google search today for "MVVM and Flex", the first post is by somebody who claims that MVVM is not a good fit for Flex. I couldn't disagree more. Out of the box, the Flex framework makes it much easier to implement a Presentation Model than similar MVVM implementations in Silverlight. That is not to say that there aren't good third-party libraries that make it easier in Silverlight, but without any help, it is easier to do in Flex." So MVVM as LOGICAL CONCEPT can be implemented in both but the way it is implemented in Silverlight requires more Plumbing than Flex.

What prevents Silverlight MVVM to be implemented like Flex ? Doesn't Silverlight have same capability in event system to do the same? If yes why does Silverlight do things more complicated what's the advantages then ? Is it about using Class Interfaces which are more strongly typed? What are the disadvantages also ? For example as for implementing MULTIPLE VIEWS for 1 View-Model does Flex implementation make it also more obvious?

View 2 Replies

ActionScript 3.0 :: Add The Title In Front Of The Game If A Adding Frame In Front Make It Stop Function?

Jun 24, 2011

am creating a shooting game. my main class in first frame now i want to add the title in front of the game if a adding frame in front make it stop function. the game play runs what can i do?

View 1 Replies

Flex :: DTO / VO Versus Presentation Model

May 5, 2011

In Flex world, is DTO / VO same as Presentation Model?

View 2 Replies

Flex :: Picking A Front-end UI Framework

Nov 13, 2010

We're working to build the front-end of our application and struggling with selecting a good UI framework since we're not experienced UI people (we're mainly back-end developers). The central issue is that we don't know what we don't know and don't know how to best weigh our different options.At the moment, we're evaluating Flex, ExtJS, and Vaadin. Is there another option we should consider? What, are the major elements we should evalutate on?

View 8 Replies

Flex :: Cairngorm 3 Presentation Model Initializations?

Jul 13, 2011

I have a TitleWindow that I open up... and I have 6 states defined.I am using the Presentation model pattern for all of my views. When I tell my window to go to XXX state, the controls have to initialize since the states in flex use lazy loading. so... my PM code that says myTextArea.text bombs out and say "cannot access..." so as a work around, I made some creationComplete events on my controls to register the control with the PM. So when the state changes, the textarea finally initializes and on creationComplete calls PM.registerTextArea() which sets a reference to it. then in that function I run my code... myTextArea.text.. etc.

This seems like such a ugly hack that I hate it. Is there any way to wait until the entire state in created then call code on the PM? I have tried enterstate... but this event seems to fire before the state controls are ready.I tried to add a comment, but I guess editing is the only way I can do this...I am doing something slightly off straight PM. Every view has a viewController (as I call them). Its kinda my own hybrid of a delegate / dataprovider. But this is moot. It's the flex component lifecycle when dealing with states that is the pain.if you change state.. there is no event to say "all my components in this state are ready".only event to say "we changed state". so my code that fires on state change is trying to talk to components that aren't ready yet.So from what I see, there seems to be no design pattern or perfect way to ensure that all components are created in a state unless using creationComplete on every component in the state to register it is ready... if you don't, you get a race condition. Regardless of frameworks or design patterns, this seems to be a root issue.

I am trying to attach video to a display once I get to that state. This is done via addchild. regardless of where I do it.. I need to know that the videoDisplay is done loading before I call addchild. I even tried currentStateChange event since docs say that fires last... but alas.. the components in the state are still initializing. So it seems that creationComplete is my only option. Maybe the only sane way to keep to clean code is to create the entire thing(videodisplay and video) using as once the state is entered. I just hoped the flex framework had events to ehlp me here rather than buiilding everything on the fly in as.

View 1 Replies

Actionscript 3 :: Adding Elements In Flex Using Presentation Model

Apr 11, 2011

I'm refactoring some Flex code written by another developer and I'm implementing a PresentationModel approach, as I like to separate out the ActionScript from the MXML. One of the problems I've found is that the original ActionScript code adds/removes elements from the MXML.What happens is the handler function checks the model and if the values are correct will either create or remove a element from the view. What is the best way to get the presentation model to ad elements to the view and still keep this loose coupling that I'm aiming for.I was thinking of using simple events which the presentation model dispatches and a view can list for passing the details of the element to add.

View 2 Replies

Flex 4 :: Front End Connecting To Java Jersey Web Service

May 25, 2010

I created a Java REST service using Jersey. I use three of the HTTP "verbs" GET, POST and DELETE. I want to create several prototype front ends for the service. After much research, a lot dating to 2008 and 2009, I have been unable to find anything remotely simple.My three options are:

1) resthttpservice. This project hasn't been updated in a year. The only activity are one off suggestions that individual users have implemented.URL...

2) Create an AIR application. This isn't unfeasible.

3) Writing my own socket level code but there is a security restriction with flash players and I need to implement a policy server.

I have already read the question posted about asking whether using Flex for REST services were worth it. That information is old as well. I want to introduce REST services to my company but Flex's limited support for HTTP PUT and DELETE are discouraging. My service also uses the Accept header to determine if JSON or XML will be returned to the client. I can't seem to change HTTP headers without doing socket programming.Is there an easy way to use Flex 4 with RESTful services that uses PUT/DELETE and the Accept HTTP header?

View 2 Replies

Javascript :: Flex Vs ExtJS For Internal System Front End?

Jun 19, 2010

Looking back at an internal system I just built, the common server / page model with minor use of Ajax for some UI components. I'm not sure if I'm satisfy with the end result because it seems like we spent too much time on the frontend. Not a big fan of going through all the trouble for styling and making sure the CSS works right.

So I started thinking, are there better tools for the frontend?

How do Flex and ExtJS compare? maybe in these areas?

[Code]...

View 1 Replies

Android :: Streaming Using Front Camera Using Adobe Flex?

Jul 19, 2011

I wanted to open front camera of the Motorola XOOM and try to live streaming using the front camera.

View 1 Replies

Internet Explorer - Firefox/IE Statusbar Are In Front Of FLEX Page?

Jan 12, 2011

I created the page in FLEX, but i have problem with scroller (the page content) and the bottom status bar from IE/firefox. They are easily overlapping each other (with statusbar in the front - hiding the content of the page) - is there any way to read the height of these elements regardles of the browser (to change 'paddingbottom' accordingly ) ? (I know that disabling them is prohibited from security reasons).

[Code]...

View 1 Replies

Flex SQLite Optimization: Adding Database Name In Front Of Tables?

Sep 18, 2011

This article on Livedocs says you should add the database name in front of tables.[URL]..My question is, should I do that everywhere where a table name appears or only once?In this query: select T1.col,T2.col from T1 left join T2 on T1.id=T2.id order by T2.order;

Should I add main.T1 and main.T2 everywhere or just after for, the first time: select T1.col,T2.col from main.T1 left join main.T2 on T1.id=T2.id order by T2.order;

View 1 Replies

Flex :: Presentation Model Pattern Can View Specific Logic Reside In View?

Aug 15, 2011

I'm currently using RobotLegs with the Presentation Model pattern to develop a Flex 4 project. I understand that all business logic related to a View resides in the Presentation Model associated with that view, however, I am confused when it comes to View specific logic.For example, I have an indicator that needs to be positioned relatively to list items depending on which list item is selected. Is it acceptable in the Presentation pattern to put the logic that will position the indicator in the View and simply have that logic run in reaction to a selectedIndex property changing in the presentation model?The reason I am considering this is that since the Presentation Model does not have a reference to the view it is difficult to come up with an ideal solution for manipulating view components.

View 1 Replies

Access Front Camera In Android Devices Using Flex-android?

May 17, 2011

There are samples to show how to access front camera of android devices using android sdk.

View 1 Replies

Java :: Adding Two Num Flex 3.0 As Front End And Java As Back End?

May 24, 2010

i hava two text boxs in flex.have to add two txt boxs values in back end java and have to return back to third text box in flex.

View 1 Replies

Professional :: Set Up For A TV Presentation?

Oct 9, 2010

I am making a Flash Presentation which a client is going to distribute for customers to show in their showrooms (so TV Screens will vary in size).

View 4 Replies

Use Of An External .txt In Presentation?

Oct 19, 2007

I'm creating a presentation for a client and in this presentation I need a lead up page which has a series of editable text fields, and I'm not quite sure where to start.

1. There is to be a field where the client can punch in thier number and it will bring up information which is stored in an external database (Excel?), if they don't know their number however, they then have the option of filling it out manually. I then need this to immediately create a new .txt file which will become this customers reference (provided one doesn't already exist).

2. Any information that is edited during the session needs to be able to be SAVED to an external .txt file (as above), which can then be called upon if the same client (number) is typed into the field mentioned above.

3. The presentation then moves on to a customisable shopfit, where the client decides how they want their shop to look (this part is already complete and tested and works fine). However, at present I have a print button which the customer can select and it will print out their options, but it has been requested (as I think the reps like to leave their printers in their other suit jackets) that I have an email option, this needs to email the picture (which normally gets printed) AND the information which was entered into the customer reference page.

View 0 Replies

Taskmanager Is Always In Front?

Dec 9, 2009

i created a flash-projector with cs4. after i'am executing my flash.exe, my already opened task-manager is still in front.Is it possible to set the task-manager in background.

View 1 Replies

Presentation With Video Trailers

Jul 9, 2009

I'm a designer at a company. In every day life I use flash for creating banners, simple slideshows and presentations. Nothing complicated really. I have managed to learn some simple expressions.I'm making my presentations in as3, because i'm also using flashEff for the cool text effects. This time i'm assigned to make a presentation that has videotrailers in it. I have no idea where to start.What are the keywords i have to look in to and what to i need to learn the get the new task done.The presentation has 20 slides, each slide contains some content that appears on mouseclick command. I'm navigating from one slide to another with arrow keys. 10 slides are going to contain a player with the trailer (length max 30 sec).

View 1 Replies

Make A Presentation About Our RME Topic?

Jan 21, 2010

For a school project we have to make a presentation about our RME topic, and we can to it in any format we want. I want to do it in Flash so as to add interactivity. Problem is, I am not certain on parts of it.

How do you add buttons, so as to change the background? For example, it shows title screen. Then you click.Then it shows first slide like. Then you can click like, Introduction, The Pillars of Islam, ect.

View 4 Replies

SWF Output To LCD Projector As Presentation

Jul 22, 2010

I am still running Flash MX (04). Because I find flash a little more useable than other progs, I am using it to create a presentation. I am creating a project that I intend to only use as a standalone SWF (not uploadable to a site or anything). I intend to play the SWF full screen on a laptop and output to an LCD projector as a presentation. I have the stage set at 1024 x 768 and am using movie clips imported/embedded (which arent the full 1024x768 but slightly smaller ), text, photo's and audio. I am nearly 2/3rds the way through and the SWF file size is growing (currently at 16 meg). I expect it to be in the region of 90 meg + or so as some audio yet to be loaded and still photos are quite size heavy. Is there any way i can get the audio to sound a little clear as when the SWF is published the sound seems to lose a little quality in the compression. Also, what is the maximum size you would recommend a standalone SWF in this scenario should/could be?

View 21 Replies

Preload Large SWF Presentation?

Oct 4, 2011

My clients have alarge flash presentation (kind of microsite) which is 18MB of size.How can i embed it to their site, and have a preloader for it.The Clients dont have the FLA, as the developer didnt provide, as is out of reach.I am a Zero-Flash knowledge, just a small time web (CSS/HTML) developer.[URL]

View 5 Replies

Getting Document Size For Presentation?

Dec 14, 2009

I'm creating a Flash presentation for a client. The finished product is to be played on a projector from his laptop. His laptop has a screen resolution setting of 1440x900.Would it make sense to make my Flash document the same dimensions?

View 3 Replies

Flash :: Presentation.fla To Add Audio?

Nov 13, 2010

I have a presentation .fla from a client which is published to an .exe projector file. this is my first tome working on a file published for this so I'm a bit confused. Within the fla folder is another fla which is titled player. That file calls background music thru an xml file which I can figure later but my problem is this.
 
if I add the mp3 voiceover to the xml list when the published file plays it of course starts at 001.00 the voiceover needs to be edited to fit within the presentation. How can I drop the swf of the riginal presentation inside an app then add the voiceover on another layer and be able to edit to match sort of what I would do in IMovie. I have the CS5 master Suite so I'm sure one of the apps does this/

View 1 Replies

IDE :: Document Size For Presentation?

Dec 14, 2009

I'm creating a Flash presentation for a client. The finished product is to be played on a projector from his laptop. His laptop has a screen resolution setting of 1440x900.

Would it make sense to make my Flash document the same dimensions?

View 3 Replies

ActionScript 2.0 :: Need Preloader For CD Presentation

Oct 21, 2003

I'm making a CD presentation. I have:
1- Start.swf (menu used for navigation)
2- Slideshow.swf (27mb)
3- Other.swf's (10mb averag size)
I need a preloader. Are preloaders used both for the web and Cd's, or do Cd's require special preloaders. Right now the heaviest swf takes about 20 seconds to open up. I want to put something in front so that people can realize that it is coming...eventually.

View 1 Replies

ActionScript 2.0 :: Bring MC To The Front ?

Sep 5, 2009

I have 3 movieclips in separate layers. inside each they have buttons.I want the mc i hover to move to the front. right now they overlap.see attached. the green cricle appears behind the other 2.

View 2 Replies

ActionScript 2.0 :: Bring MC To Front?

Sep 7, 2009

If you go to the Portfolio page im trying to design 3 links that open up a mini section.. if you notice, each link stl has the other links overlaping the clip, because all links are on the same level..I have tried a couple of scripts that say they bring the clip to the front on rollover but have found nothing that works..

View 6 Replies

Put Some Graphics On Front Of Card?

Dec 3, 2009

I just made my first flash game. A memory game, But I cant figure out how to put some graphics on the front of the card. And make it take the pictures from a image folder. and make it look ok ?

View 1 Replies

ActionScript 2.0 :: CS3 Bring MC To Front

Apr 14, 2010

I have flash file, there is text, who loads from xml file and movie clip. i need, this movie clip, with all content bring to front, because, now it is behind text, but I don`t know how to do that..

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved