Professional :: Operate Two Gallery On Same Site?

Nov 12, 2010

I'm editing a template built using Flash, which already have a page that is a photo gallery. I created two others. Edict everything right in the xml file. However, when I open the page properly direct the gallery just small pictures, directing the big (it should just be a small extension of) the original gallery.

View 6 Replies


Similar Posts:


Professional :: Make The Scroll Pane Operate With Input From The Mouse's Scroll Wheel?

Jun 15, 2010

Is there a code that will make the scroll pane operate with input from the mouse's scroll wheel?

View 2 Replies

IDE :: Xml Gallery Tut Like Site?

Jul 13, 2009

i built this site for a friend [URL]..now we are planning on an site make-over to the gallery.the problem is the gallery loads up each gallery in one go. we are trying to to make it load up per image with preloaders. [URL]..i need a tutorial that is similar to the gallery but has preloaders per image. saves the user from downloading the whole gallery in one go. Also i prefer it to be XML and AS3.

could anyone help? ive tried alot of tuts but they werent what i was looking for.

p.s i had to use tinyurl because i didnt want this thread to be up on google.

View 2 Replies

Professional :: Site Attack In Flash Site

Dec 14, 2010

A client of mine has had 2 sites (both Flash sites) attacked over the last 12 months, so he's been asking: should he go for a static HTML site or stick with a Flash site? Is there ways to make a Flash site more secure?

View 1 Replies

Image Gallery On The Site?

Oct 14, 2009

A client has asked me about the image gallery on this site, I wonder is anyone can identify it? I have searched a few websites and resources, but no luck thus far.

View 2 Replies

ActionScript 3.0 :: Can't Import Flash Gallery On Site

Apr 10, 2009

I have this gallery and i want to load her into container on my site but it shows one or two times and dissapear. Here is code

Code:
on (release) {
container.loadMovie("galerija.swf");
container.play();
}

View 3 Replies

ActionScript 2.0 :: Can't Get Url Links To Operate

Oct 27, 2010

I am having a major problem trying to insert links in to a swf file.The file has three animated pictures that need to link to different sections of a website.

View 2 Replies

XML :: How To Operate Element Using ActionScript

Feb 7, 2012

<fpdl:StartNode Id="Goods_Deliver_Process.START_NODE" Name="START_NODE" DisplayName="">
<fpdl:ExtendedAttributes>
<fpdl:ExtendedAttribute Name="FIRE_FLOW.bounds.height" Value="20"/>
<fpdl:ExtendedAttribute Name="FIRE_FLOW.bounds.width" Value="20"/>
<fpdl:ExtendedAttribute Name="FIRE_FLOW.bounds.x" Value="11"/>
<fpdl:ExtendedAttribute Name="FIRE_FLOW.bounds.y" Value="117"/>
</fpdl:ExtendedAttributes>
</fpdl:StartNode>

fpdl is the namespace of xml, how can I operate the element of the xml by using the actionscript. I try to use example.["fpdl:ExtendedAttribute"] to visit the element, but it doesn't work.

View 3 Replies

ActionScript 3.0 :: Make A Site In Flash Which Will Have An Image Gallery?

Jun 2, 2010

Im just about to make a site in Flash which will have an image gallery. This will need to include a CMS for the images. Anyone know the best approach in order to make the images as easy as possible to update?

View 6 Replies

Professional :: Convert A JQuery Lightbox Style Gallery Into A Flash XML Based Image Gallery With Categories?

Oct 26, 2010

I've made a gallery slideshow before but wasn't as intuitive looking back at it now and I want to start fresh on this new project. I would like to convert a jQuery lightbox style gallery into a flash XML based AS3 image gallery with categories. I don't want to code the FLA, I want separate AS files.

This is a school project for my website. I would use jQuery and I have more experience with it but this project needs a flash component. I'm just not sure where to start and looking for some advice on how and where I could find resources. I want it to be minimal as I can make it;

- 8 thumbnails to a "page/section" with more flowed into page 2 or 3 etc. (or a srcoller)

- a few buttons for categories

- images fading in full size with a description when hovered over and a close button

- preloader (simple bar)

Esentially something like this > http:[url].........works which is using http:[url].... for the thumbnails. That might be ambitious but I'd suffice with a simple fade effect.I've downloaded some galleries out there but most of the code is messy or outdated.http:[url]... this is alright, but all the code is done in the FLA. I might break it into AS files but it depends.

View 1 Replies

ActionScript 3.0 :: Any Way To Utilize Video Gallery Found On Adobe Site?

Aug 8, 2008

I am a designer, and I am very new to coding and I just began using flash CS3. I am currently working on a project and I wanted to utilize a video gallery that I found on the adobe site. The link is [URL]. And he breaks down the application on the link below and the source code is well written and commented but I just can't seem to understand coding. [URL]. So I was wondering to modify the code so that the thumbnails are images instead of swf files and the thumbnails are placed in columns which represent its own category. In return I can be your contact if you need a favor as far as designing something.

View 3 Replies

Creating A Gallery For My Portfolio Site - When The Thumbnail Is Moved, The Rollover That Would Be Moves ?

May 26, 2009

I'm working on creating a gallery for my portfolio site. I have thumbnails of all my work. I've turned them into button and made it so when you rollover it, a larger preview of it appears with a description of the piece, off to the side in a designated area. Instead of making my stage larger or creating more pages to contain all my thumbnails, I made a vertical scrollbar. The scrollbar works just fine. The problem is when the thumbnail is moved, the rollover that would be moves in relation to it.how can I absolutely make sure that any rollover I create with a button is where I want it to be, no matter where the thumbnail moves to?

View 10 Replies

Converting Symbols : Could Not Complete Operate Due To An Unknown Error

Jun 20, 2011

I have a scene where one of the Layers is an 8 framed animation. Thing is I just can't seem to convert it to a movie symbol. When I select the layer and press F8 it just makes a movie symbol with just one frame in it. If I try another way where I copy all the frames, select 'New Symbol' and paste all the frames into it I get an error message that says 'Could not complete operate due to an unknown error'. Im running Flash 5.

View 7 Replies

ActionScript 1/2 :: Have Movie Clip Effects Only Operate WHILE The Two Objects Are Colliding With Each-other?

Oct 18, 2009

I've been trying to figure out a way to have movie clip effects only operate WHILE the two objects are colliding with each-other. It seems after they collide, however, They no longer need to be in contact to execute the supposedly conditional command. In an attempt to get around "hit Test" I made a fake hitTest, below:
 
function zone(mc, zquestion){
if(man._y < mc._y +25 && man._y > mc._y -25 && man._x < mc._x +25 && man._x > mc._x -25){            mc.onRelease = function(){                trace(zquestion);            }        }else { null;}        }                    onEnterFrame = function(){    zone(block1, "Insert Important Question here?");                    if(Key.isDown(Key.LEFT)){man._x -= 5;}    if(Key.isDown(Key.RIGHT)){man._x += 5;}    if(Key.isDown(Key.UP)){man._y -= 5;}    if(Key.isDown(Key.DOWN)){man._y += 5;}        }
 
except my attempt at "null/do nothing" if coordinates don't equal all of the above has failed. I really don't understand the "else" command, and would like to know how to create a "if NOT X...then DO NOT do Y".

View 1 Replies

Media Server :: When Using RTMFP Protocol FMS Doesn't Operate In Channels

Nov 26, 2010

I'm developing an online meeting system with audio/video sharing, using Adobe Flex 4 and Flash Media Server 4. I'm using the RTMFP protocol to make the transmission of audio/video which increases considerably the performance. The trouble now is that i must record the audio/video transmitted, but i figured out that when using the RTMFP protocol the FMS doesn't operate in the channels. So, how could i make FMS record this channels?

View 1 Replies

ActionScript 2.0 :: Use A Timer Or Time Interval To Operate Automatic Switch?

Mar 11, 2004

I would like to load a movie .swf by clicking a button located in scene 1 so i use [code]Then I want once this loaded movie in scene 1 is finished to play to automatically switch to scene 2. and do the same again.Do i need to use a timer or time interval to operate the automatic switch? if yes how can i do that? or is there something simpler, I use flash MX.

View 5 Replies

Create ActionScript-based Flash File That Doesn't Operate With Fixed Framerate?

Feb 18, 2012

I'm creating an ActionScript-based flash file that only needs the screen to be updated in response to something happening behind the scenes. As such, I don't need it to run with a fixed frame-rate. Instead I just want to tell it to lay dormant until I explicitly tell it the screen needs to update.However, I don't see any way to do that. Can that be done? (i.e. set the framerate to zero and manually force an update based on some user-defined event?)For example's sake, if you can provide an example that just kicks off the update based on a simple timer,

View 2 Replies

Professional :: Swf Plays As Stand Alone But Not In Site?

May 18, 2010

I'm a bit frustrated as I've created a Flash movie with an embedded video.The SWF file works fine when I play it as a stand alone file but when I use the file inside my website, the video portion does not play.I have placed the video file and the Flash file in the correct folder on my site.

View 1 Replies

Flash :: Professional - Map Widget In Site

Jul 15, 2010

I am having difficulties inserting a Map widget on my flash site. [URL] it needs to go on the left hand side were there is a "empty" space waiting for it! so i attached the map widget code just cuz... i am using flash cs4, as3 the code is a follows:

[Code]...

View 15 Replies

Professional :: Preloader For Flash Site?

Aug 11, 2010

I don't know much about Flash so understanding how to implement a preloader for my entire site is just a bit beyond me. Basically, I just want a loading bar, "loading" text, and the percentage text (this should all be in AS3). I know that in Flash CS5, a preloader bar is included as one of the components. The only problem is that I don't know what to do with it (and it shows up as blue and white so not sure how to change the colour).

View 2 Replies

Professional :: Have A Link Which Redirects To Another Site?

Aug 28, 2010

I am making a flash site and am trying to have a link which redirects to another site. The problem is the redirect address has an e with the accent ' above it. When I copy the link directly into flash, it converts it to code in the URL bar.How do I make the link in flash so that it keeps it as an accented letter in the URL bar?

View 2 Replies

Professional :: Add Loading Bar To Already Laid Out Site?

Oct 3, 2010

l basically completed my entire site, which has a few layers and over 400 frames which are broken into different labeled sections on the main time line.The entire site  is located within one scene.After that l decided to add a loading bar with AS3. lt kind of works but only goes to 40% of so and then jumps to the second frame.l took the code from

function loadProgress(my_content:ProgressEvent):void {
var percent:Number = Math.floor( (my_content.bytesLoaded*100)/my_content.bytesTotal );myLoadText.text = percent + "%";myLoadBar.width = percent * 2;}function

[code].....

View 1 Replies

Professional :: How To Center Site In Browser

Jan 8, 2011

I'm new at Flash so my code understanding is very limited. For my 1st site I tried to make a very simple site which would float in the center of the browser, but my site is centered and stuck at the top below the browser.

1. How do I get it centered both vertical & horizontal?

2. How do I edit the placement position in design mode without having to go into code?

My site address is [URL] I'm sure I have more code then is needed because I started with a sample file and tried to delete unneeded parts.

View 9 Replies

Professional :: Connect Different Swf Files Into One Site?

Jan 17, 2011

I need to make this site like presentation for my next exam. I found a good template for a slide show. The presentation will be structured like this: 
 
MAIN PAGE with sidebar which links to: slide one with slideshow 1slide two with slideshow 2slide three with slideshow 3slide four with slideshow 4 due to the nature of the code thou i cannot put the different slideshows into the same .swf file in different scenes (i copied and pasted them in each scene and modified the actionscript so they would refer to different pictures) because they will create conflict with each other. now they question is can i use the sidebar to link to different swf files but still make it look like it was just one big swf?

View 5 Replies

Professional :: Embedding A Swf File On Site

Mar 20, 2011

I'm trying to embed a swf file on a site. Here a link to the file on a page that works. Example Problem is, I need to place it on a different site (we have two servers) and it's not working once I link to the file on the other server. Below is the code. I've highlighted the part that I changed.

[Code]...

View 3 Replies

Professional :: Site Sound When .FLV Plays

Apr 18, 2011

I have a Flash 8 site that plays a music clip throughout the site.  I have a flv video on one of my site's pages and would like to know if there is a way to stop the site's music when the user clicks on the "Play" button of the video and to have the site music start again when the video either ends or the user clicks on stop.

View 1 Replies

Flash :: Professional - Won't Play On Site

Apr 27, 2011

I bought a Flash Portfolio program from Flash Components and followed the tutorial for setup and when I click index.html within my flashport folder, from my local PC it works perfectly. Now when I upload it to my website and try and run [URL], or [URL] a small portion of it loads (just my name and a blank screen really) and stops. So it works when I run the it from my local machine, but doesn't work from my website. Can anyone provide and thoughts or comments?

View 5 Replies

Professional :: Add Two Flash (.swf) File In To Web-site?

Jun 7, 2011

I recently add two flash (.swf) file in to my web-site of selling ink for cartridges, But it seems they are not well embed in the posistion of the web-site front page.

View 8 Replies

Professional :: Uploading Flash Site?

Jul 10, 2011

First off, my main problem is that my company's website is loading slow and I'm not sure why. All of my images are small file sizes, but I do have 4 scenes that I'm using , maybe that causes slow loading?I've attached the website address below:I created my entire website out of flash  Is this not the best way to create and publish a website?Should I use Flash in conjunction with another website building software to create and publish my full website? If I only use Flash can someone please point me in the direction of how to successfully build and publish a website through Flash that doesn't load slow, i.e. loading things dynamically? What I've been doing is publishing my site onto my computer and then uploading the .html and .swf files to Godaddy for publishing.

View 3 Replies

Professional :: Swf File In A Dreamweaver Site?

Jul 21, 2011

I have a site designed in dreamweaver. I inserted an swf file into the dreamweaver site to do the following :The swf allows people donate money through paypal and then return to the main site. I need a step somewhere so that I can disable buttons after the paypal process has occurred. Kglad has suggested that I direct to a new swf file when coming back from paypal. This makes sense, however, do I disable the donate button on the new swf file and if so, how will the actionscript recognise the button instances ?

View 3 Replies







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