Flex :: Build Room Planer 3D Web Application In It?
Oct 27, 2011
I have to develop an application like these sites in flex 4[url]...
Which are the main flex components used to build these type of application?
How the conversion from 2D to 3D ?
How to generate dynamic 3D from the 2D resizable objects?
How to show measurement on resizing the objects?
View 1 Replies
Similar Posts:
Jul 27, 2010
My idea is to be able to have a number of different objects on the side of the stage, kind of in a toolbar, then to be able to click (and thus select) one of them and place it another area in the room with another click (basically placing it, deselecting it and fixing it in place where I clicked).
I'd then like to be able to re-click it and reposition it by dragging, if I so wish.
View 1 Replies
May 12, 2011
Basically what I need is to have a permanent web conference room in my web application to handle remote interviews.
This means that any user of the web application can get access to the room and have an interview with another user of the same web application, I need only 2 connection at the same time.[code]...
View 1 Replies
Oct 18, 2009
I need to implement add mp3 player to my AIR application build with flex
is there any tutorials on building mp3 player ( i didn't found any in the web )
View 2 Replies
Aug 14, 2010
how can build a txt document and write in flex application ?
View 1 Replies
Jan 18, 2011
I recently got flex builder 3, and it seems to be a really cool IDE.
View 4 Replies
Sep 1, 2011
Suggest a good tutorial on how to build a dashboard application with Flex.
View 1 Replies
Jun 2, 2009
How do I have to configure my project to open the generated swf file in the debug flash player? When I hit f5 FlashDevelop tells me the following
INITIALIZING: Adobe Flex Compiler SHell (fcsh)
Starting new compile.
Loading configuration file D:ProgrammierungFlexflex_sdk_3frameworksflex-config.xml
Loading configuration file D:ProgrammierungFlexFlashDevelop_workspaceTestobjTestConfig.xml
objTest633795421567473000 (1009 bytes)
(fcsh)
Build succeeded
Done (0)
[Capturing traces with FDB]
Anwendung nicht gefunden (Application not found)
View 1 Replies
Nov 27, 2009
i am starting a project for our church that it will look like a game, each logged in users will be able to attend different types of the room such as prayer room, visitors room etc and will be able to interact each other.
with having a just brief rough idea, i figured that i need to have a socket server and socket class for it. (i tried to make a chatting room with just urlvariable and php mysql but it seems its more appropriate to use the socket server.
well the site will be more focused on the CONNECTION between the logged users and they will need to be able to interact each other when they are viewing photos, videos, sharing thoughts, prayers, etc, and for that matter socket server seems must.
but i do not have any knowledge on the server socket, how to make em and how to set up them. can someone please give me a insight or direction where i should start and look for ?
i figured php isnt suitable for a socket server(which is the only language that i know of) so i m lookin into java or python but i have no idea what to do.
View 6 Replies
May 17, 2010
Which is the best for build an application show like in image. For the better graphics and performance wise. I want to know Flash for Flex is more suitable for this.In Flash ca we be able to build a grid kind of applications easily? I headed that Flex have the functions to handle grid and other things. Drag & scroll Zoom like feature. but am not sure able the graphics of flex. Is the components are customizable
View 3 Replies
Oct 13, 2010
I want to create a fairly large-scale Flex web application that has a similar interface style to Grooveshark.
When it comes to web development, I have always used the common PHP/HTML/JavaScript technologies. Now, I want to try something new and develop a RIA using Flex.
Using PHP/HTML/JavaScript, I am able to develop my entire website with free tools. Now, I'm wondering if I am able to do the same thing with a Flex web application?
Is it possible/feasible to develop a Flex web application for free? If not, what would be the lowest cost I would need to spend? And, whatever the option, what are the tools that would be needed?
View 2 Replies
Jan 25, 2011
I'd like my users to be able to easily navigate their files, which live on my server. Is there an obvious / built in way to build the front end for this in Flex? My ideal scenario would be to have something that looks like the local file browser - but I'm pretty sure that's not an option (although I'd love to be wrong)
View 2 Replies
Dec 20, 2011
I don't know really well the diference between AIR and FLEX, i do with Java tought, My question is that I want to build an application to run in local mode, but maybe in the future I want it to be available trought the web, The basic sequence diagram is the following: So I want the client to connect to a server for login information, and for storing some data, and I don't know wich one of the three technologies is the best..
View 2 Replies
Jun 5, 2010
I have to build a video conference application with flex 3.
View 1 Replies
May 17, 2010
I'm using:
- Flex SDK 3.5.0
- Parsley 2.2.2.
- Flash Builder 4
Down in my src folder (which is configured as part of the source path in the Flash Builder), I have a logging.xml which I configure via Parsley:
[Code]....
View 1 Replies
Dec 30, 2011
I have found some question which refers to my initial question :on xcode Usually resolved in synthesis by :
flushing certificate cache correcting the signing certificate ( using Distribution in replacement of Developper) C checking and correcting the Application ID who was sometimes not the same between the one declared in iTunes Connect and the one in the app.xml file
The fact is that I still has the problem on Flex Builder, which is when I upload my application, it failed with "Application failed codesign verification"
[Code]...
So the question is what could still block the uploading of the application on the App Store?
How to resolve "Application failed codesign verification." when uploading Application, build with Flash Builder 4.6?
View 2 Replies
Mar 31, 2011
In TFS 2010 build, I have a new build and I want to call an ant script that builds Flash. How do I call the ant script? Also How can I compile the Flash directly? I've seen the Power Tools and this question but it doesn't help me as we don't have TFS 2008. I can't find any documentation on how to use the power tools except the 1 sentence on the bottom of download page saying to create your build the old way and import it (which isn't very helpful). I've installed the power tools on the agent computer but I don't see any new options in the Toolbox when I'm designing the build flow.
View 2 Replies
Apr 14, 2011
I just started working with ant a few days ago. Right now I have a general buildall.xml which should call each project's build.xml. Because some projects depend on each other, I need to rebuild some other projects which depend on it. This isn't a problem--I'm just setting the depends property of the target. However, ant is always building the dependencies, even when the files haven't changed.Let's say project1 has no dependencies; project2 depends on project1; project3 depends on project1, 2; project4 depends on project1, 2, and 3; and so on.I could hack a solution which looks at project K, and checks if project 1 .. project K have updated files using uptodate. If so, then run the target. This is messy and appears unnecessary.
What is the cleanest way to implement this?EDIT: So I decided to just hack in a bunch of targets, "check_projectK" where it does the uptodate checks on all of its source files, its build file, and the build files of the 1 .. K-1 projects. Due to dependencies, this is always handled correctly. However, this is still a large amount of copy and paste for a large workspace.
View 1 Replies
Apr 13, 2010
I want to implement a Chat room in Flex 3.
View 1 Replies
Jun 7, 2011
I have created a video chat room by FMS/Flex. what I need to do is:
If everybody in one chat room can use rtmfp, we go with rtmfp if anybody in the chat room disabled his rtmfp, we go with rtmp.
Now I need to create a logic to decide if everybody can use rtmfp between each other, Is there a good way to do so?
View 1 Replies
Jun 2, 2010
I don't want to visually arrange 3D models dragging them with the mouse, all I want is: Given a room of certain dimensions (L,W,H) and given a set of elements like beds, chairs, etc (with L,W,H dimensions, of course) I want to automatically arrange those elements to take advantage of the space as much as I can. So I want to be able to put as much furniture as I can in a given room. At the end I need to represent the arranged items visually, inside the room.
My first thought was to use an array of items and sorting it with array.sortOn(["l","w","h"] Array.NUMERIC) and then define a gap between the objects and make the maths to put the objects one next to another, etc. but that isn't a good approach because some items may be placed on top of another ones (boxes of the same size, boxes on top of tables, etc).
View 1 Replies
Sep 10, 2010
I want to make a virtual tour of a room in Flash / Flex. How can this be achieved? Firstly, is it enough to have pictures taken from a still point? If yes, how can I turn them into a real tour? Also, is there a library for this kind of thing for AS3?
View 1 Replies
May 2, 2010
I'm interested in building a chat application in Flash.
View 2 Replies
Jun 5, 2010
I'm looking for examples (code) of applications that uses Flash (NOT Flex) and Remoting classes for ActionScript 3 (NetConnection). Once there was ARP, a repository of code of this kind, but it seems there is not anymore. I'm trying to figure out how to build an applications that makes heavy use of calls to WebORB and responders. I need an architect point of view, NOT a sample of communication between parts, but a real world scenario.
View 1 Replies
Dec 2, 2010
I want to build an application that will allow the user to upload a movie file, then allow the user to give information about the movie (like synopsis, title, etc.) so that he or she can watch it from the server at a later time. Almost exactly like a youtube clone, for all intents and purposes.
I'm running into a problem, however, with serving up the movie to be watched. I want the user to be able to watch the movie on a variety of different platforms, including over the web in all of the common browsers, on iOS devices and on Android devices (as well as GoogleTV in the future).
I had initially planned on having the user upload whatever file formats they want, store that file, then transcode it on the fly using ffmpeg (or something similar) to serve it up to whichever device is requesting it. This is handy, because I'd be able to transcode it to a smaller size if I needed to to save on bandwidth. Unfortunately, I'm having a tough time finding a method that will do this to display the movie in a web browser.
I've tried VLC to death. I'm able to get it to stream a video on demand over RTSP, but (as I understand it), both the HTML5 video tag and Flash won't accept an RTSP stream. I haven't had any luck finding a method of streaming an on-the-fly transcoded video over HTTP, which looks to limit my options to embedding either a windows media player or quicktime. FFServer with FFMpeg has the same problem; it can create an RTSP stream, but not an HTTP stream.
View 1 Replies
Feb 10, 2010
I am trying to build an application where you click on an option it gives you more options, click on one of those and it displays an image. I am wanting to use xml to load everything.
View 1 Replies
Mar 16, 2009
I want to build or modify a 'one armed bandit' style application... I have limited time to build it and was wondering whether anyone could help in directing me towards a pre-purchased app that i could modify, or if anyone has any pre-coded application that's similar that I could modify?
View 6 Replies
Nov 3, 2009
I am making a basic app but am not sure where to start. This is what I want to accomplish in 3 steps:
1. The user has an option to choose 1 of 6 images for the background.
2. The user uploads an image that meets requirements
3. The uploaded image is skewed/scaled and placed on top of the background image in the appropriate place.
I am trying to get this project done asap. There is a flow chart attached.
View 5 Replies
Sep 20, 2006
who wants to build a flash application to find the shortest path using ant algorithm. but i have not the refferrence about that?
View 5 Replies
Nov 9, 2008
I would like to build a small application in AS3 so that my users can record their voice with microphone.I know there is a Microphone class but I don't know if AS3 allows to record the voice into a file that will be stored on the server.Is that possible to do so only with AS3?
View 2 Replies