A WebSite on a 3d-cube face

Hi!
I should realize a VirtueDesktop version web-oriented, but I have a problem:
how do I show a website on a 3d-cube face?
I don't need to show a simply image on a face of the cube, but a completely functional website, where the user can interact with it.
Please, help me :)
Thanks in advance!!

John Barrileaux`s book "3D user interfaces with Java 3D" Manning Publications Greenwich 2001 might help you to formulate the issues involved. As you have described the problem you`ll have to code a 3D web browser.
regards

Similar Messages

  • Add an outlined letter to a cube face illustration

    Hi everybody,
    I'm trying to add an "S" to all my cube illustration faces (3). I would like them to match its face perspective, but I cant find a flawless way to do it. The perspective never seems to match the cube's faces.
    Do you know any trick to do it?
    Thx in advance.

    Create the "S" in a square then distort the whole thing to match the square to the face you want to lay it on? It seems like it should work (but I've been wrong before).

  • Nbsp;� vs. #160;� in JSF with ICE-Faces

    Hi,
    I'm just creating a website with JSF and Ice-Faces. I want to add a space into some field on my page and tried the following 2 ways, both without success:
    1. Use of "�#160;": in this case I get an error message that the entity nbsp is referenced, but not declared. I added some DTD information in front of the document:
    <ice:outputDeclaration doctypeRoot="HTML"
    doctypePublic="-//W3C//DTD XHTML 1.0 Strict//EN"
    doctypeSystem="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
    but with no success. Did I have to add the entitydeclaration: xhtml-lat1.ent separately???
    2. If I use "�#160;" for the space, than in IE everything is fine, in Mozilla I get an � instead of the space.
    Can anybody help me???
    Thanks, Sebastian
    Message was edited by:
    fghgfh

    May be this will be helpful for you:
    I see that in the stack trace jsf trying to instantiate the
    com.globit.icoport.Email (but not the com.myproject.Email as you point in the English translation)
    While your validator is not Email but EmailValidation
    com.globit.icoport.Email is reall class name which is tried to be instantiated while com.myproject.Email is just validator id string.
    May be you have in your project somewhere else the missed annotation @FacesValidator(value="com.myproject.Email")?

  • Crashes during a session and also photos disappear from page and also in Face Book

    No more information other than photos or pictures disappear from any website page including when using Face Book. Also noticed that even Google Logo above search box disappears including the green arrow for returning to previous page or next page. Firefox also crashes during sessions and a widow message appears advising of the crash and requesting to send this on so the problem can be fixed. I have sent this crash report on numerous occasions but have not had any responses yet and the problem continues. Sometimes it works fine for a few days and then down it goes with same issues as mentioned above.

    It is possible that you clicked "Block Images" in the right-click context menu while saving an image.
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    You can use these steps to check if images are blocked:
    * Open the web page that has the images missing in a browser tab.
    * Click the favicon ([[Site Identity Button]]) on the left end of the location bar.
    * Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    * Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    * Select the first image link and scroll down through the list with the Down arrow key.
    * If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.1 r53
    # Java Plug-in 1.6.0_04 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • 3D Cube problem

    Hello I've tested a 3D cube but I can't see correctly the faces and when I send cache to true it's not workig :(
    If someone else have experience with -Xtoolkit prism
    public class Cube extends CustomNode {
        public var origin: Point3D = Point3D{}
        public-init var size: Number = 100;
        init {
            children = [
                for(n in [0..1]) [
                    Rectangle {
                        fill: Color.LIGHTGRAY
                        stroke: Color.BLACK
                        strokeWidth: 2
                        translateZ: size*n
                        width: size height: size
                    Rectangle {
                        rotationAxis: Point3D {
                            x:0 y:10 z:0
                        rotate: 90
                        fill: Color.LIGHTGREEN
                        stroke: Color.BLACK
                        strokeWidth: 2
                        translateX: (size*(n-.5))
                        translateZ: size/2
                        width: size height: size
                    Rectangle {
                        rotationAxis: Point3D {
                            x:1 y:0 z:0
                        rotate: 90
                        fill: Color.LIGHTSKYBLUE
                        stroke: Color.BLACK
                        strokeWidth: 2
                        translateY: size*(n-.5)
                        translateZ: size/2
                        width: size height: size
    function run() {
        def feats = ConditionalFeature.values();
        for(f in feats) {
            println("feature {f}=>{Platform.isSupported(f)}");
        def cube = Cube {
            size: 100
            opacity: 1
            rotationAxis: Point3D{z: 1}
         def grp = Group {
            rotationAxis: Point3D{x: 1 y: 1}
            rotate: 60
            translateZ: 100
            translateX: 100
            translateY: 100
            content: cube
        Timeline {
            repeatCount: Timeline.INDEFINITE
            keyFrames: [at(2s){ cube.rotate => 360}]
        }.playFromStart();
        Stage {
         title : "3D Cube"
         onClose: function () {  }
         scene: Scene {
                width: 300
                height: 300
                fill: Color.TRANSPARENT
                camera: PerspectiveCamera {
                    fieldOfView: 200
                content: [
                    grp
    }

    As of my experiences with the new 'SCENE3D' conditional (optional) feature my conclusion is:
    The cube faces (Rectangle) are drawn in order of their position in the children sequence: if face (j) overlaps face (i; i < j) it is drawn on top. Their z-/depth-values are ignored! So, if a face is rotated away from the camera's position and its z-values are increased it is drawn still not before the predecessors in the sequence are drawn.
    In case of a simple model like a cube or box this dilemma can be solved by hiding (visible = false) all covered faces. A cube's face is covered when its frontside 'Normal' is directed away from the camera.
    Doing more complex 3D modelling and animation based on these features would be a nice way to torture students by a (sadistic) professor.
    Elsewhere it is said that the new 'prism' renderer is only +"... available in the 1.3 development environment, but *not in a deployed applet or JWS*."+ and +"... used on TV, it is *not supported in 1.3 on desktop*. Turning it on manually is for development purposes and kicks and giggles. Actually deploying an app with it turned on may or may not work in this release"+.
    August

  • Mapping Text To a Partial Cube

    I've got a line of text that I need to map to three sides of a cube. I want the type to run from the front across the right side and end on the top.
    1) Can I do this in Illustrator?
    2) Can I flatten the sides so I can print each one on its own page and assemble the partial cube to show what it would look like when produced?

    Perzackly :-) Trouble is that with Illy's 3D thingummy is you have to rely on the preview for accurate alignment on the cube faces.
    In this respect Dimensions was a much better application for this kind of work. Not only were Symbols unnecessary (you could paste directly into the mapping window) but you could also see all faces of such a cube at once, so alignment was not the remotest problem. I do wish they would bring back Dimensions or couple it in as a part of Illy. Then we could do proper 3D work and create whole scenarios, not just single objects. I don't understand how people are expected to create scenarios accurately without very complicated geometrical calculations to find out the relative positioning of different objects. We need to be able to call up top, side and off-centre views of a set of objects together, adjust relative positioning and then do a final render. I haven't been able to find anything that comes close to Dimensions in this respect. Everything I have come across lately produces only pixel output when what we really need is vector output that can be fine tweaked in Illustrator.

  • Faces messed up after sharing on Facebook

    Hi,
    Unfortunately, I'm unable to demonstrate the following right now, but I will capture a vid on this later.
    - I start off with an iPhoto library that has NO faces tagged whatsoever.
    - First thing I do is add my Facebook account.
    - Then, I assign all faces on 8 photos; some assigned to a contact with a Facebook account, some assigned to a contact from my Address Book.
    - I share these 8 photos to a new Facebook album.
    - Everything is synced as neatly as possible and this is why I love iPhoto '11
    - Until I check the name tags in iPhoto once more
    - Now, multiple faces (but not all!) across these 8 photos have been assigned to the same contact, with the same contact sometimes 3 or 4 times in a single photo!
    - As soon as I start making corrections, this will be pushed to Facebook again, ending up (well actually never ending, since the process keeps repeating itself) in a big pile of mess.
    Does this sound familiar?
    Cheers.

    {quote:title=Bug report filed via iPhoto Feedback:}
    Dear,
    Also refer to support forum thread 2626888 for more details. Since I'm not really sure whether this forum will be scanned by developers for bug reports, I have decided to fill out this form as well.
    I'm really impressed by the Facebook integration in the new iPhoto but, unfortunately, I have encountered a problem which practically renders this feature useless, at least for some scenarios:
    I have started off with a new iPhoto library, set up my Facebook account, and imported 8 photos.
    In these 8 photos, I have tagged all faces, using the Facebook accounts where possible, falling back to the Address Book entry if necessary.
    Now, these 8 photos have been added to a new Facebook album and first synchronization is sublime!
    At this point, when I switch to my iPhoto events and switch back to the Facebook album (in iPhoto), I notice that the face tagging has gone berserk: One of my Address Book contacts dominates the photos, with multiple entries of her in a single photo.
    Now, I start correcting and eventually all face tags are acceptable again. At this point, when I switch to my iPhoto events and switch back to the Facebook album (in iPhoto), I notice that the face tagging has gone berserk (sorry for the copy/paste, but this is just to indicate the endless struggle).
    Also note that, after each correction, the Facebook album on the website contains more and more face tags per photo, trivially, with multiple tags per face.
    As this messes up both the iPhoto Facebook album, the individual photo information, and the online Facebook album, the entire feature becomes unusable altogether.
    I'm trying to do some video capturing on this, such that I can demonstrate this problem, but this may take some time. I will update the forum post mentioned above once it has been done. But I would very much like an acknowledgement from your side anyway.
    Best regards,
    Michel
    {quote}

  • Need someone to change/maintain my website - any recommendations?  Thank you.

    The person who built and maintained my website has disappeared off the face of the earth!!  I am now looking for  someone who can help me do this.  My website is www.BrambleBunny.com  Thanks

    I do freelance work.  Contact me through my website at http://www.great-web-sights.com....

  • Can I do this in Flash???

    Hi, I am relatively new to flash and I was wondering if it is
    possible to create an application such as the one used in this
    website (they did it using PHP):
    http://www.weddingpaperdivas.com/personalize.php?pid=128
    That allows users to customize their invitations and preview
    them. If anyone can help I would appreciate it. Just point me in
    the right direction as to what I need to learn, books to read,
    tutorials, whatever?!

    i have a better image here
    http://www.fileden.com/files/2007/7/10/1253954/Picture2.jpg
    I have built this geometric sculpture and I am projecting
    separate After Effects layers onto each cube face by using a 3rd
    party video mapping software. I just convert each layer to a video
    file and then input it into the software and project it over each
    cube face separately. It is easy in after effects because I can
    build a virtual model of this sculpture and preview what it will
    look like before I render each layer out.
    Each cube face has to be able to be rendered out
    independently so in the end I have 10 video files to represent the
    10 faces of the sculpture.
    What I want to know if there is any way that this can be
    achieved in flash? Ie building a virtual model of the sculpture
    within flash to see how it looks and then rendering out each layer
    separately (10 2d square video files).
    Thanks.

  • Cannot work on more than one page and menu shifting problems

    I downloaded Muse CC 2014 when it first came out, and now I find myself no longer able to edit more than one page without having to completely shut down the application and start it again. Here's what happens:
    I open a page to edit, and then anything else I try to double click on (or right click and choose open page) does absolutely nothing. Any ideas why this is occurring?
    Also, I've noticed a strange phenomenon where my menu has completely shifted its menu contents - pushing everything down. Nothing I did - wondering why this is happening. This has pretty much rendered Muse unusable to me and I am becoming more and more frustrated since I'm paying good money for this....please help.
    Here's a screenshot of the messed up menu (all text should be located in between the green dots and not so spread out):
    Also, if I try to create a border around a text box with just the bottom border showing (i.e. the other 3 sides are set to 0), that bottom border also shifts down as if the text container has suddenly expanded.
    This happens with both my Macbook Air and my MacPro.
    Thanks in advance for any help. I'm kind of at my wit's end....I really need to be able to update my website as this is the face of my business.
    -Kristine

    You could look at using a template.  Create your master template, create editable and non-editable regions, then use this template create all the child pages.  When you need to make a change to the menu, make it in the template and the changes will flow down to all the pages created from the template.
    Using DW Templates:
    http://www.adobe.com/devnet/dreamweaver/templates.html
    http://www.adobe.com/devnet/dreamweaver/articles/dw_templates.html
    The other option would be to create the Navigation item as a server side include...
    More about this:
    http://kb2.adobe.com/cps/143/tn_14380.html
    http://www.entheosweb.com/website_design/server_side_includes.asp
    Difference between using a template and server side includes.
    When you make a change to a template, you need to re-upload all the pages created from the template.
    Using a SSI, you make the change in the ssi file,  upload it and all pages are automatically updated.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • CCS3 3D rendering not working correctly

    I create online virtual tours. These tours use HTML5 CCS3 to display the cube faced images as a spherical panorama. All my tours work correctly in FF10 on mac and PC, but testing in FF11 on PC has shown a problem.
    Here is an example link
    http://oberoi.photowebasia.com/mena-house/index.html
    The cube faces appear to be displayed as a "cube" rather than a spherical transformation. The images are also a mirror image or the original, rotate the wrong way, and the field of view restrictions up and down are reversed.
    I have been able to replicate this problem on several PCs in XP and Win7 in FF11. All appears OK in FF10, and in FF11 Mac.

    Looks okay now (Fx11/Win7-64). Did you fix it overnight?
    Note that I turn off hardware accelerated graphics, in case that is a factor (Options > Advanced > General > __ "Use hardware acceleration when available).
    ''Edit: I don't have Fx10 for comparison, so I may not be understanding the problem.''

  • Why is the image quality on facetime so poor?

    Isn't it false advertisement if on their website, it shows nice, crisp face time photos, and when I use mine, its blocky and not that well. I figured since we pay top dollar for our Ipads, the least apple could do is sell us what their website shows us.

    The camera is only 0.7 megapixels.
    In comparison, the avg cell phone camera is 5 - 8 mega pixels, so I can understand why it would be such a surprise to see such a low res camera on this device.
    With that said, you must relize the camera is intended for facetime use only, and although the quality may not be as good as what the commercials, or site suggest, it does work, for it's intended purpose.

  • Control stage animation from buttons nested in a symbol

    I have a symbol that is animated png SEQ of a rotating "cube". Added to the symbol I created "buttons" that are clear rectangles that define a "clicking area" . Each one corresponds to a side of the "cube". As the cube turns i turn these "buttons" on/off and track the corresponding cube face while it is facing the user. The symbol name is "CubeSpin" the button names in the symbol are Button1, Button2, etc to Button6.
    What I want to be able to do is create click actions for these buttons from the main stage compositionReady which would - (1) stop() the play of "CubeSpin" symbol and (2) goto and play(label) on the main stage timeline.  The animation at the head of play(label) on the main stage, among other things, slides symbol "CubeSpin" off the stage and out of view, then turns it off (display off). At the end of this animation, "CubeSpin" slides back on stage and I want to add a trigger code to start play() again for the "CubeSpin" symbol.
    Thanks for any help here.
    Joel H

    Hi there!
    Edge is a very flexible tool that allows you do very simple things (animate objects on the timeline), and very complex things (custom javascript coding in the code panel, using external code libraries, etc).
    For specific Edge Animate questions, a good place to start is this forum- use the search function to find answers to your questions, or start a new thread if you can't find your answer here.
    Also, be sure to read through the Edge API doc:
    http://www.adobe.com/devnet-docs/edgeanimate/api/current/index.html
    If you are looking to dive deeper into javascript, here are a few good JS tutorials:
    http://elegantcode.com/2010/10/22/basic-javascript-part-1-functions/
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Getting_Started
    http://eloquentjavascript.net/chapter1.html
    If you have a javascript-specific question, http://stackoverflow.com/ is also a great resource.

  • Same column handling different languages

    This is more of a generic question.
    While creating a multilingual website which allows for data to be entered in multiple languages, there is an issue if this data in different languages starts to go into fields which have a primary/unique constraint then its integrity will be compromised.
    The DB is UTF8 compliant.There are lot of multiligual websites out there that might face similar problems.Whats the workaround for this.
    - Create another record for different language entry and link it to primary record which is in English.So lot of multilingual records for one main record.
    - Make columns language specific and control it trough front end making constrained columns with same language.Though with this it becomes a user usability issue in that user has to keep switching his keyboard language support.
    Any inputs would be extremely valuable.

    Hi,
    In the report query you can conditionally generate the links.
    Example.
    select
    case when status = 'schedule' then  '<a href="'||'f?p=&APP_ID.:150:&SESSION.::NO:150:P150_ITEM1,P150_ITEM2:'||
          value_for_item1||','||lvalue_for_item2||'">status </a>'
    when status = 'active' then  '<a href="'||'f?p=&APP_ID.:200:&SESSION.::NO:200:P200_ITEM1,P200_ITEM2:'||
          value_for_item1||','||lvalue_for_item2||'">status </a>'
    else status end column_title,
    ....Regards,
    Natarajan
    Edited by: Nattu on Mar 18, 2013 11:53 PM

  • Regarding publishing a VR 360 panorama

    Hello Forum -
    I have some succes with a couple of 360x180 aka " cube faces " panoramic images published for Ipad using Digital Publishing Suite.
    I wonder if so called "autorotation " is possible using panorama tool within DPSuite -
    what I see right now is image looks static after opening in FullScreen - In some other panorama publishing tools ( like krPano or similar )
    you can make the image move directly after opening or after a couple of seconds.
    Any suggestions for a similar solution  using Suite ?
    Regards from Stockholm .

    I logged a request in the pre-release as a feature request.
    Another solution you may look into is http://gardengnomesoftware.com/index.php
    they have an HTML 5 option--- a quicktime option and a flash option.. i haven't played too much with the HTML 5 options but i know the other two have Autorotation.
    We design a lot of 3d worlds that have used the Adobe DPS Panorama feature thus far and we like it..
    As a user experience designer i can recommend you put an alternative image as the "first view" to let people know its interactive.
    Best regards
    David

Maybe you are looking for

  • How to link SAP Application to Digital Signature

    Dear all, As per the sap note 593041,594010 and 827417 we have done the config setting and executed program DSIG_BOOKING_EX in tcode DSAL we are getting the message "Signature process was successfully completed by user" please suggest us how to link

  • Mail 3.0 Check RSS at custom times?

    I have a few RSS feeds that I would like to have updated preferably every five minutes (ie facebook's notifications), and while I can get emails instantly, I would prefer to use the RSS, but it only lets me know of any updates every 30 minutes. Is th

  • ITunes installation gone wrong with Vista!

    I can't get iTunes 8 installed on this new PC. Everytime I try to install, Internet Explorer shuts down with no explanation as to why. I am so frustrated. I have skimmed through the Apple iTunes on line solutions and MS Windoew Vista on line solution

  • How to delete stuff of ipad

    hi there is some sites on my ipad and ipod that shouldn't be there i have 4 children that want to play with them but i don't want them seeing what is on there have tried different things but nothing works please can someone help me

  • Maven plugin properties2java

    Hi. I'm lookin for a plugin to build java classes from properties files. Have u heard about any? How to write own custom plugin to make it? For example, there is a properties file named MyProps:     exemplary.field.one=valueA     exemplary.field.two=