Are you embedding the fonts? Do you have the fonts shared in the library?
Dynamic text and fonts is a big deal in Flash 8, I'm still experimenting with all the aliasing features....
User Profile
Collapse
-
Well done for getting it working. I can see you weren't impressed by my suggestion of checking the mc size against a limit.
Opting for a scale limit instead....Leave a comment:
-
I haven't started AS3.0 yet... Still finishing off 2.0 projects, but if I see something I'll send you a post....Leave a comment:
-
I thought this was urgent?!
Attachments can also be added if you click edit/delete on your post....Leave a comment:
-
Try this;
Not my code, but works for me:)Code:on(release){ if(lastclick - (lastclick=getTimer()) + 500 > 0){ //do doubleclick action trace("double"); } else { //do singleclick action trace("single"); } }Leave a comment:
-
-
Ok third time!!!
How annoying! I posted a lenghty response and then the post froze on submit and the post was lost.
So, in brief.
Publish settings->Flash-> settings button
Export in frame (2)
This will load all the external classes, script and objects in frame 2
So Flash will initialise your preloader in frame 1 before it loads all the other content....Leave a comment:
-
You have a checkBounds function so if you getBounds in the checkBounds and then switch a Boolean to false to stop the enlargement.
Example;
...Code:mouseWheelListener = new Object(); var scale:Boolean = true; mouseWheelListener.onMouseWheel = function(delta) { if(delta > 0){ ROOT.onEnterFrame = function(){ if(scale){ zoom._xscale*=0.9; zoom._yscale*=0.9; } scale =Leave a comment:
-
To add screenshots you zip a file and post it somewhere then add a link.
But don't worry about that because the problem is probably embedded fonts. This is one of the hardest things to get right in a Flash CMS. Can you give me a description of how you are dealing with the dynamic textfield fonts in Flash?...Leave a comment:
-
There are many different ways to wire an event to a button. So without seeing the code I wouldn't know which to suggest!...Leave a comment:
-
Have you tried writing any code? If so, post here and I'll take a look!...Leave a comment:
-
It was difficult to understand your question.
I think you're saying that when you release and then rollout you don't want to go3?!
So;
...Code:this.selected = false; on(rollOver){ if(!this.selected) gotoAndPlay("go2") } on(rollOut){ if(!this.selected) gotoAndPlay("go3") } on (release) { this.selected = true;Leave a comment:
-
Adobe recommend using this in Javascript;
...Code:<form> <input type="button" onclick="callExternalInterface(id)" value="Call ExternalInterface" /> </form> <script> function callExternalInterface(id) { thisMovie("externalInterfaceExample").callAS(id); } function thisMovie(movieName) { if (navigator.appName.indexOf("Microsoft")Leave a comment:
-
try this;
Code:stop() ; mask_mc._height = 1; this.onEnterFrame = function():Void { var loadedData:Number = this.getBytesLoaded(); var allData:Number = this.getBytesTotal(); var percent:Number = Math.round (loadedData/allData*100); mask_mc._yscale = percent; if (loadedData>=allData) { gotoAndStop (10); delete this.onEnterFrame; } };Leave a comment:
-
Works fine for me! Can you explain or attach screen grabs of what happens when it doesn't work?
Whenever I connect to a DB using PHP and Flash I serialize the data when parsing into Flash. Then I don't get any problems with html tags or special characters '&' '$' etc.
There are some great serializing classes with tutorials out there, just google.
Having said that it might not be the cause of your problem....Leave a comment:
-
Here's an after effects tutorial to get you started and a plug in 3D lighting effect. I imagine you're trying to get an effect similar to Lost World were the vehicle goes over the edge and the glass is cracking?!
So before you use the shatter effect, you might want to animate some cracks in Flash and import them into AE. Then use a glow effect first on the cracks to make the light start appearing. Then when it shatters fire up your...Leave a comment:
-
Then to get the kind of impact you're looking for I would use a package like SWIFT 3D, After Effects or 3D Studio Max. All these programmes import into flash and will create the kind of complex lighting effects you want....Leave a comment:
-
Are you looking for a dynamic effect that you can apply to loaded images at runtime?
Or a one off transition?Leave a comment:
-
Try this;
import com.macromedia. javascript.*;
var proxy:JavaScrip tProxy = new JavaScriptProxy (_root.lcId, this);
function getBrowserInfo( ):Void
{
proxy.call("get BrowserInfo");
}
function getBrowserInfoR eturn(browser:O bject):Void
{
//can get more info from System.capabili ties
for(var x:String in browser)
{
trace(x...Leave a comment:
-
No activity results to display
Show More
Leave a comment: