ActiveDen

3D Interactive Gallery

  • Bought between 1 and 9 items
  • Has been a member for 3-4 years
idoyan Purchased

Dear RimV,

I’m sorry but i tried and failed.

what child should i remove exactly?

Thanks,

Ido

  • Bought between 1 and 9 items
  • Denmark
  • Has been a member for 4-5 years
kallesoe Purchased

Hi,

I have problems compiling this component in Adobe Flash CS4 – it is like it won’t publish to AS3 . I only work with gallery2

I get a compiler error in line 643, 678, 686, 695 saying “1046: Type was not found or was not a compile-time constant: Cube” in the script2.as

I have found another with similar problem, but no solution http://www.kirupa.com/forum/showthread.php?t=312556

I just want to and add my special characters to text fields. (æøåÆØÅ) and change background color to white and tect color to black.

Can anyone help me?

Thank you

RimmonTrieu

You may want to check actionscript library setting in Edit – Preference, make sure it doesn’t point to any other pv3d library.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
ajks1 Purchased

Hello, love the script, quick question. When you click and get the description and the image, how can I expand that description box to conatin more information.

Alos anyway to style the text in it?

RimmonTrieu

You an open .fla file, click on “des” textfield on stage and adjust its dimension, you can also style text using styles.css in css folder

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years
rjones11 Purchased

Hi RimV,

Very nice script btw.

Playing around with your first example of the gallery/carousel and wondered how I would go about setting the initial speed the images spin when the movie first loads?

I’ve played around with the block of code below but only seems to change the speed when rolling over the images…

// Auto rotate private var autorotate:Boolean = true; private var rotatespeed:Number = 0.002; private var rs:Number = 0.002; private var pitch:Number = 0.075; private var Pitch:Number = 0.075;

Do I need to change or add something here to slow it down when the movie first loads?

Thanks

RimmonTrieu

If it’s gallery 1 the speed totally depends on mouse position, it’s the distance from center screen to current mouse position that effect rotating speed. In any case you can just adjust “rs” variable to modify the speed.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
grinky Purchased

Hi RimV,

I’m sorry to bother you, I love this item and I know you have been asked this before but… I really need the thumbnails to become larger when clicked on, or have a different larger image come up. If you can easily adjust the size of the description box (which you have explained in other comments) surely its fairly simple to change the size of the displayed image? I’m showcasing paintings with this item and so I need to show the full painting fairly large when the thumbnail is clicked on. Please help me out or point me in the right direction of the code to play around with, I really appreciate any suggestions you can give me.

Thank you so much for your time and for providing such great support on this =)

RimmonTrieu

The current design will show larger image after thumbnail clicked and roll mouse over. If you want to display much larger image you may want to open it as external link, please see FAQ regarding open external link.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
grinky Purchased

Also I would really like to put this item on my webpage. Using dreamweaver I have tried to just drag and drop it into my existing project, but it does not display any of the images when I test it on the new page, just the gallery links. Please help!

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
grinky Purchased

Ignore last comment- sorry! Stupidity! But I still need help with my first question please!

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
  • Poland

This file is great!

I had to do some serious modifications to the sourcecode so it suits my needs and it went flawless.

It has saved me a lot of time!

5 STARS

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
grinky Purchased

Hi again RimV,

Have incorporated this file into my website, which I am now testing online, and having a problem with the description page, where I created a link to another page in my website. Now its online it shows all the code and does not work but when I used a testing server the link looked fine- what am I doing wrong?

www.dallenart.com/gallery.html

  • Bought between 100 and 499 items
  • Has been a member for 5-6 years
nycpromo Purchased

Hi,

I keep getting a compile error i first thought it was cs5 but now i tested on cs3 and same error comes up and i downloaded straight from your link with out editing any of the files. i get a class cube missing error.

private function AddEvent(p:Cube):void 1046: Type was not found or was not a compile-time constant: Cube. 1046: Type was not found or was not a compile-time constant: Cube. 1046: Type was not found or was not a compile-time constant: Cube.

  • Bought between 1 and 9 items
  • Has been a member for 3-4 years
flix26 Purchased

Is this thers variable for the rotate speed at script.as?

var del = (stage.mouseX – stage.stageWidth * 0.5) * rs; //var del2 = (stage.stageHeight * 0.5 – stage.mouseY) * pitch;

angle += del;
var x = Math.cos(angleMath.PI/180)cradius;
var z = Math.sin(angleMath.PI/180)cradius;
camera.x = x;
camera.z = z;
RimmonTrieu

Yes, it’s “rs” variable, increase or decrease the value will change rotate speed

Default-user
flix26 Purchased

Which value? can you take an example for slower rotation?

RimmonTrieu

look for


private var rs:Number = 0.002;

in script.as, and change “rs” value there

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

RimV,

I see that these comments are all over 3 years ago so I hope I didn’t buy dinosaurware. This is a great looking application, but I can’t get this to appear in either Dreamweaver (CS3) as a preview or when I load to a website. The movie doesn’t appear.

I can compile the movie Ctrl+enter and that works fine in Flash (CS3) but it is not working for me in the actual page. Any ideas?

RimmonTrieu

To embed the gallery swf in your html page you can use swfobject, in Dreamweaver switch to Code view and try to add this inside a div:

    <div id="flashcontent">

        <div id="flashError">
            <h1>You need to upgrade or install latest Flash Player</h1>
        </div>
    </div>
    <script type="text/javascript">
        // <![CDATA[

        var so = new SWFObject("3d_art_gallery.swf", "albums", "100%", "100%", "9", "#000000");
        so.addParam("scale", "noscale");
        so.write("flashcontent");

        // ]]>
    </script>

You can also view source of included index.html to see how it was implemented

Default-user

RimV,

I couldn’t get the SWObject method to work either even after I copied your code from the source index.html. I thought that perhaps there was something wrong with the SWF I created, or the AS file so I changed my swf to another one of your files that I hadn’t changed at all (3d_art_gallery.swf) but that doesn’t play either. It is just a black square with the gallery links. No image and no action on the flash.

I made sure I copied your entire directory to my server so no files should be missing.

I went directly to the test index.hml file on the server and that appears to work. Could this be a nesting problem? Because I don’t have all of the files in my site root. I basically copied your entire directory into my site and I map the SWF from my page to its place in the directory structure so it looks like this

3D_Interactive_Art_Gallery/source/3d_art_gallery_4.swf

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

RimV,

Thank you for getting back to me, but this doesn’t appear to work either. I pasted your code exactly and only changed the path of the file as below:

    <div id="flashcontent">

        <div id="flashError">
            <h1>You need to upgrade or install latest Flash Player</h1>
        </div>
    </div>
    <script type="text/javascript">
        // <![CDATA[

        var so = new SWFObject("3D_Interactive_Art_Gallery/source/3d_art_gallery_4.swf", "albums", "100%", "100%", "9", "#000000");
        so.addParam("scale", "noscale");
        so.write("flashcontent");

        // ]]>
    </script>

The only thing that appeared is the “download the latest version…” message.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
celiapgt Purchased

Dear RimV, how can I change the color of texts (descriptions and captions) without modifying the FLA file? I use Linux and I don’t have Windows on my machine. Please, explain me how to do it using the XML or CSS files…

RimmonTrieu

Text color of caption is not styleable only description supports it.

You can however send me an email with the wanted color I can make the change and send back the files.

Default-user
celiapgt Purchased

Sorry to insist, dear RimV, but I want to know if it is possible for you to make the change in color for texts, and also if it possible to indicate me how can I change the description color.

Sorry to bother you, but I still don’t have news from you.

Sincerely, Celia

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars

Stylish work. Like it.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hi there, I need some help with this, I have bought this I need help changing the pictures, im very new to actionscript and I need help where in the gallery 2 script I can change the pictures and information and such, i cant seem to find that particular line of code to edit, thank u

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

dw i got it, this thing is amazing, thank you!

  • Bought between 50 and 99 items
  • Exclusive Author
  • Has been a member for 3-4 years

Can I use each thumb as a link, too ? I do not want to see the bigger picture, I want only a link.

RimmonTrieu

You can, check FAQ for detail instruction

  • Bought between 1 and 9 items
  • Has been a member for 3-4 years

VideoStreamMaterial support ?

RimmonTrieu

Unfortunately no, only photo supported.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi, this looks awesome. I’ve been trying to find an IE version of a HTML5/CSS3 3D Carousel, and I think this will work perfectly. Only problem is, I don’t have anything to edit flash. I tried editing the script.as to increase the radius of the circle, but I don’t think I can edit that either. (ubuntu wants to open the .as files in LibreOffice, but won’t resave is .as) What program can I get to make the needed changes?

Thanks, Nick

RimmonTrieu

Hi Nick,

Thank for your purchase. Unfortunately you need to have Flash Pro to edit related scripts file. You can download it for 30 day trials at adobe website.

Hope that helps,

Rimmon

by
by
by
by
by