Flash CS3 Component Help?

I have a menu component I've created in Flash CS3. I'm
running into a small problem. Currently, in Flash, I create an
array in the first frame of the movie and then assign a
"menu_items" property (an array) on my menu object as that array.
The array is an array of specialized menu item objects that is
defined in a separate class. In Flex, I would like to do this:
<mxml:macMenu>
<mxml:macMenuItem image="btn1.png" click="{clickHandler}"
/>
<mxml:macMenuItem image="btn2.png" click="{clickHandler}"
/>
.....etc
</mxml:macMenu>
I'm not quite sure how I can get my object to realize the
children should be part of the array inside of macMenu called
"menu_item" and at the same time make sure they are an instance of
my menu item class.
I have posted the full AS3/Flash CS3 source of my menu at
http://www.adambergman.com/as3/macMenu.html
Any help or ideas are appreciated!!!

Hi Rajesh,
I've seen your query all over the internet, so I should warn you I don't believe it's possible to disable a List Item.
For that you should use Josh Tynjala's open source Advanced List (http://code.google.com/p/flextoolbox/downloads/list).
Best Regards,
Filipe.

Similar Messages

  • Color management issues with Flash CS3, please help?

    Hello everyone.
    I am having issues with color from a Jpeg image produced in Photoshop CS4
    after importing onto the stage in Flash CS3. The color in Flash changes the image to a lighter less saturated state. Yuk.
    Here is a link to a screen capture to show you what's happening (for a bigger view):
    http://www.rudytorres.com/color/weirdcolor.png
    As you can see the front image is the Photoshop image showing the sRGB color profile embedded but Flash (behind) changes that color.
    This client is quite picky and she will notice this difference.
    If any one can help, please.
    - Rudy
    P.S. It's a button somewhere, Right?

    Dougfly,
    Only an hour wasted? Lucky you. Color is an incredibly complex subject. First, forget matching anything to the small LCD on the back of your camera. That's there as a basic guide and is affected by the internal jpg algorithm of your camera.
    2nd, you're not really takeing a color photo with your digital camera, but three separate B&W images in a mosaic pattern, exposed thru separate red, green and blue filters. Actual color doesn't happen until that matrix is demosaiced in either your raw converter, or the in-camera processor (which relies heavily on camera settings, saturation, contrast, mode, etc.)
    Having said the above, you can still get very good, predictable results in your workflow. I have a few color management articles on my website that you might find very helpful. Check out the Introduction to Color Management and Monitor and Printer Profiling. In my opinion, a monitor calibration device is the minimum entry fee if you want decent color.
    http://www.dinagraphics.com/color_management.php
    Lou

  • Creating flash cs3 component

    Hi,
    There is great and easy way to create flash based component
    in flash cs3 using action script 3.0.
    I am going to make a simple My button component which will
    behave likely same as flash native button component.
    You can modify this according your requirement this is just
    you give an idea about how we can go for creating a component in
    flash cs3.
    Follow these steps…
    1. Create a fla file and save this file with any name
    2. Create a movieClip and draw a rectangle shape on first
    frame.
    3. Right click on movieclip in library, select linkage
    4. Provide class name in text field area [MyButton] (you can
    use any name here which should matched with your class)
    5. Click Ok button
    6. Write class [MyButton]
    (you can copy and use this)
    * author @ sanjeev rajput
    * [email protected]
    * A flash action script 3.0 based component without extending
    UIComponent class
    package {
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import fl.motion.Color;
    public class MyButton extends Sprite{
    private var _tf:TextField;
    private var _Label:String="My Button";
    private var _bgColor:uint=0xCCCCCC;
    private var _rollOverColor:uint=0xFFCCCC;
    private var _borderColor:uint=0x000000;
    private var _borderThickness:int=1;
    private var _width:Number = 100;
    private var _height:Number =100;
    private var _background:Sprite;
    public function MyButton() {
    init();
    createChildren();
    initEventListeners();
    draw();
    //-------------property section [Start]
    [Inspectable]
    public function set Label(lbl:String){
    _Label=lbl;
    draw();
    public function get Label(){
    return _Label
    [Inspectable]
    public function set bgColor(color:uint):void{
    _bgColor=color;
    draw();
    [Inspectable]
    public function set borderColor(color:uint):void{
    _borderColor=color;
    draw();
    [Inspectable]
    public function set borderThickness(thickness:int):void{
    _borderThickness=thickness;
    [Inspectable]
    public function set rollOverColor(color:uint):void{
    _rollOverColor=color;
    //-------------property section [End]
    private function init():void {
    trace('welcome');
    _width = width;
    _height = height;
    scaleX = 1;
    scaleY = 1;
    removeChildAt(0);
    private function initEventListeners():void{
    addEventListener(MouseEvent.MOUSE_OVER, eventHandler);
    addEventListener(MouseEvent.MOUSE_OUT, eventHandler);
    private function eventHandler(event:Event):void{
    if(event.type == MouseEvent.MOUSE_OVER){
    toggleColor(_rollOverColor);
    if(event.type == MouseEvent.MOUSE_OUT){
    toggleColor(_bgColor)
    private function createChildren():void {
    _background = new Sprite();
    _tf = new TextField();
    _tf.autoSize = "center";
    _tf.selectable=false;
    addChild(_background);
    addChild(_tf);
    protected function draw():void {
    toggleColor(_bgColor);
    _tf.text = _Label;
    _tf.x = Math.floor((_width - _tf.width)/2);
    _tf.y = Math.floor((_height - _tf.height)/2);
    //width = _tf.width;
    private function toggleColor(color:uint):void{
    _background.graphics.clear();
    _background.graphics.beginFill(color, 1);
    _background.graphics.lineStyle(_borderThickness,
    _borderColor, 1);
    _background.graphics.drawRoundRect(0, 0, _width, _height,
    10, 10);
    _background.graphics.endFill();
    public function setSize(w:Number, h:Number):void {
    _width = w;
    _height = h;
    draw();
    7. Now right click again on your movieclip in library and
    select component definition.
    8. In class name text field provide same class name
    [MyButton]
    9. Click on ok button
    10. Right click again on movieClip in library and select
    Export SWC file.
    11. Same your exported SWC file in (For window only)
    [c:\Documents and Settings\$user\Local Settings\Application
    Data\Adobe\Flash CS3\en\Configuration\Commands\
    12. Now just open another new flash file open component
    panel/window reload component you will your component in component
    panel with MyButton name.
    13. Drag your custom component on stage provide inputs form
    property window and text it.
    Enjoy!

    Lt.CYX[UGA] wrote:
    > if anyone is using Flash CS3, try creating a flash
    movie, using the FLVPlayer
    > component to play an flv video and make it an executable
    projector. Run it
    > fullscreen and watch how the screen just stays black
    when the video should
    > appear. If you stay windowed, it works fine.
    >
    >
    steps to reproduce:
    > 1. create flash movie
    > 2. put an FLVPlayer component on a frame that's not the
    first (for testing
    > purposes)
    > 3. before the projector reaches the frame with the
    FLVPlayer component, change
    > it to fullscreen (by script or CTRL+F)
    >
    >
    observed behaviour:
    > not only the video doesn't play, but the whole screen is
    black until the
    > player goes back to windowed mode
    >
    >
    expected behaviour:
    > video should play
    >
    >
    remarks:
    > if you skip step 3, video plays correctly
    >
    Works just fine.
    Made new movie, on frame 2 places Full screen action, on
    frame 5 placed video component
    and stop(); action attached to frame. Projector pops large
    following by video playing
    just fine.
    I tried variety, first frame, many frames, all on one. Not
    able to reproduce your problem.
    Works on first go.
    Best Regards
    Urami
    Beauty is in the eye of the beer holder...
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Flash cs3 newbie help - setting up a clicktag

    I am just about to pull my hair out - please help as I don't have that much hair to pull out.
    I created a flash file in Flash CS3 and was told I need to add a click tag for an agency who want to keep track of the click throughs for the ad.
    I have created the invisible button layer and set up the 'hit' and tried and tried and tried to select the button and add some action script to it.
    (which I have seen three different codes to use)
    Each time I export it or publish it I get the error message: mouse events are permitted only for button insances on release. I have read and understand I need to assign the code to the button and not the frame but for the life of me, I cannot figure out how to do that.
    I select the button (which I have converted to a 'button') and F9 or left click to get the Actions panel and once I am there and try to use the '+' to add code, it automatically shows 'Current Select/Frame 1 in the left side of the Actions panel. I get that it is adding the code to the frame but how do I get it to add the code to the button???
    So my question is 1) how do I add the code to the button and not the frame and 2) what code should I use?
    Any and all help is GREATLY appreaciated!
    oops...forgot to add I am using AS2. Thanks!

    Kglad - thanks so much for all your help.
    I spoke to a friend who corrected what I was doing.
    Here's an explanation for those who may find the thread...
    Click on the invisible button you created and press F9 (opens Actions)
    (Ensure it says 'Actions: button' at top)
    Put this code in:
    on(release)
    var clickTAG="http://www.yourwebsite.com";
    if (clickTAG.substr(0,5)=="http:")
    getURL(clickTAG, "_blank");
    Seems it's always a simple answer for a baffling question.
    Thanks again.

  • Use Flash CS3 component in Flex

    As a bit of a n00b, this may be a stupid question...
    If I were to get a component made for use with "Flash CS3",
    once it's compiled to a swf & fla, is it entirely usable in
    Flex [Builder] 3 ? Say I didn't want to re-skin it, and it was
    fully programable via AS?
    Is this a "it depends"? Is it a "absolutely, you just need
    CS3 to compile it first"?
    Thanks in advance,
    AJ

    "GuinnessIsGoodness" <[email protected]>
    wrote in message
    news:gbe131$c20$[email protected]..
    > As a bit of a n00b, this may be a stupid question...
    >
    > If I were to get a component made for use with "Flash
    CS3", once it's
    > compiled
    > to a swf & fla, is it entirely usable in Flex
    [Builder] 3 ? Say I didn't
    > want
    > to re-skin it, and it was fully programable via AS?
    >
    > Is this a "it depends"? Is it a "absolutely, you just
    need CS3 to compile
    > it
    > first"?
    I think you need to either use it as an as file or compile it
    as a swc,
    unless you want to load it into a swfloader.
    HTH;
    Amy

  • CoolType.dll error when starting Flash CS3, please help!

    Hello,
    I recently downloaded Flash CS3 Trial from Adobe, a huge
    download, after download i tried to install, a really huge
    installation!
    After the installation is complete finally, i started the
    Flash CS3 and it gives me this error:
    Faulting application flash.exe, version 9.0.0.494, faulting
    module cooltype.dll, version 5.4.15.1, fault address 0x000a2a98.
    Then i replaced the file from an older version of
    CoolType(i.e. 5.1.39.1) by replacing it from other Adobe
    installations, then it gives a new error message:
    Faulting application flash.exe, version 9.0.0.494, faulting
    module adobepdfl.dll, version 8.1.0.546, fault address 0x001b60cd.
    I am using Windows XP
    Can anybody help me with this?
    I don't what to do, if there is anything wrong with my fonts,
    should i remove all fonts and check?
    Or do i have to install any Microsoft Windows Patch for this?
    Or any other way?
    I really need to explore CS3!
    Please advice,
    Thanks,
    Aamir

    Not sure if you found a solution to this but I was having
    this similar problem and just found a post on the
    google
    forums that said it was a font that was installed. It doesn't
    look like it's cooltype so it must be a font that's
    installed.

  • How to build a custom Flash CS3 component

    I just googled in the hope to find some resources about how
    to build custom Flash CS3 components, but nothing turned up. I also
    couldn't find any info on Adobe's Flash developers center.
    Do you know of any resource that sheds some light on this
    subject?
    If not then I'll have to try to find my way around custom
    components by learning from the ones that came with Flash CS3 I
    guess.

    Flash CS3 has been out for a few weeks. At this point, your
    best bet is Amazon books or Barnes & Noble. I've read a few
    books that should shed light on the subject. Otherwise, you'll need
    to wait a few more weeks while people start hashing it out and
    posting it to blogs and other sites.

  • Text doesn't show, scroll bar does? using Flash CS3 Please help!

    A little background:  I made text box, typed some text, converted it to a movie clip, named etc.  Used a purchased and proven scroller component ... followed directions to the letter, including referencing/linking the files. However, when I tried to test the scroll bar .... the scroll bar appears, scrolls and works perfectly except the text does not appear.  I have tried making a scroll bar with the UIscrollbar same thing happens. I made an other attempt and put pics along with the text in the movie clip ... this time the pics appeared and scrolled, but the text still would not appear.  PLEASE HELP. I am on a deadline and can't get past this scroll bar issue. THANK YOU!

    Hi
    Thanks for the tip. I did embed the text, but still not showing. Currently, I have the text  box set to the following: Dynamic Text, Multiline, Border Around text, Anti-Alias for Animation (but I have tried all choices and embed the text each time).
    Here are the original instructions with the FTscrollbar which I followed exactly.
    1. Drag the component (FTscrollbar) from the components panel to the stage.
    2. Create a new movie clip to be scrolled:
         a. create a textfield on the scene and type in a few lines of text
         b. select the text fields and covert them to a move clip symbol having the registration point top left. (I did top right since my scroll bar is on the right).
         c. give the new movie clip an name in properties panel.
    3.Select the component of the stage and configure its parameters in the parameters panel or component inspector panel.
         a. Instruc the component to scroll the new created movie clip as the targetMovieClip
         b. Set the viewAreaHeight and viewAreaWidth
         c. set snapMode to snapToView value
         d. leave rest of parameters unchanged unless you want to adjust.
    4. Test Movie (contol/test movie)
    On the FTscrollbar, I have the targetMovieClip set to the movieclips name the only other parameters the instructions said to change were veiwAreaHeight=100 veiwAreaWidth=150 which were the defaults.  When I change this numbers the scroll bar goes away and the text still doesn't appear?  The scroll bar is 16 x 140, the text box to be scrolled is 130 x 143 and the entire flash page is 500 x 550. I am not sure what the viewAreaHeight and viewAreaWidth are for ... or if that could be the problem?  I have never had problems with scrollers but I used MX. I just recently purchased the CS3 and I am not sure what I am not selecting or not selecting but if feel it's probably something simple I am overlooking.  So any more ideas are MOST APPRECIATED. If you need more info from me to help solve, please feel free to ask. THANKS!

  • Flash CS3 Button HELP

    Ok, so i'm very new to Flash.
    I have a web page & it has 9 buttons. I want the user to
    be able to click on anyone of these buttons & be taken to that
    page.
    I don't know how to do this in CS3?
    I have each button set up on it's own layer & set as a
    symbol. That is it, now what?
    If anyone can give me step-by-step instructions that would be
    great!
    I need this for a class project for tomorrow & I have
    spent a week trying to make it work but nothing!
    I'm very frustrated & confussed!
    Please, help if you can.
    thanks!!

    If you're doing this .fla in AS2.0 there are at least two
    popular ways of doing this. (I'm not sure of the AS3.0 syntax.)
    1) Click on a button, open the Actions panel and have
    ScriptAssist open. In the toolbox on the left you should see a list
    of functions, with headings Global Functions / Movie Clip Control.
    See the word 'on'? The basic functions you want begin with
    'on'...so click it, and you'll get a choice of onPress, onRelease,
    etc. Pick what you want the button to do and you're done. You
    should end up with code that looks something like this
    on (release) {
    gotoAndStop("Scene5", 16);
    (My above example would take you to frame 16 in Scene 5. If
    you have just one scene, leave out the Scene name.)
    You have to do this to each button, individually.
    2) If you'd rather stick all the code in one place, do it
    this way instead. First make sure each button has an instance name.
    In other words, select each button and in the Properties panel give
    it a name like: startButton_btn, stopButton_btn, etc. Open a new
    layer, call it Actions. Click on the first frame, open the Actions
    panel, and enter code like this for each button instance name you
    have:
    startButton_btn.onRelease = function() {
    play();
    If you have nine buttons, you should have nine functions set
    up like the above. Now save and test. If it doesn't work at first,
    you probably just typed something wrong.

  • XML & Flash: ImageFader Component help

    Item 1
    Tutorial, with built-in (AS 2.0) Flash Component
    http://tutorialoutpost.com/count/7022
    Item 2
    Tutorial/Sample of XML thumbnail, photo, caption file:
    http://www.tutorio.com/tutorial/simple-flash-xml-photogallery/1
    (click 2nd page, go to bottom to download source code)
    Basically, I want to create a portfolio section with the
    components of the basic XML (item 2), but when you click on the
    thumbnails, you dont get that jumpy feeling, rather a smooth
    ImageFader (Item 1)
    Here are the files, or look at the code (Files are a bit more
    helpful)
    http://www.dominicdesign.com/mikegreener/Archive.zip

    For starters, read the Help Docs in Flash on Data
    Integration. There's even a tutorial in Flash 8 called "Flash and
    PHP Integration." Then you might want to Google "flash php xml
    tutorial" which returns plenty of stuff to keep you reading for a
    while.
    Good luck!

  • Skinning Flash CS3 component

    I posted this in General but haven't gotten a reply, and now
    I'm beginning to wonder if this must be accomplised with
    ActionScript.
    It's great that you can double click a component, open it up,
    and put your own artwork right in there and set the 9-slice scaling
    guides so it behaves properly. Lightyears better than trying to
    skin in any previous version of Flash.
    But, the rendered SWF does not seem to respect my artwork
    dimensions. For instance, I have a Slider component for which the
    default track is about 3px tall. I have my own artwork which is
    about 6px tall. While I can put my artwork in the skin and it
    scales perfectly, it squashes it down to 3px tall when rendered.
    Likewise, my 9x12 thumb gets scaled when rendered to 13x13(which is
    the default skin's thumb size) when rendered. Although the graphics
    appear the right size in Flash authoring, it appears to get scaled
    at runtime.
    How do I avoid this? How do I define the base dimensions for
    the skin graphics?
    Thanks for any advice.
    Post in General forum:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=1324684

    Changing the avatar size doesn't seem to have any affect. Do
    you know what the Avatar is for? It appears to be a bounding box of
    some sort, but resizing it doesn't seem to change anything.
    Actually, I notice that if I open the avatar, it says it is
    22x80, although the scaled version in the Slider is 3x80. It seems
    to be some sort of shared component. If I resize the contents of
    the avatar, all my buttons change, but the sliders don't actually
    change. Sadly, it seems like "3" is a hard coded value somewhere in
    the source. Blah.

  • Weird flash cs3 bug help!

    Hi ANybody help me on this?
    All of a sudden I lost a file I had been working onlast
    night, it was still there but when i opened it it was last saved
    some 12 hours before my final save of the day. Thought that was it
    and then i found something else, when flash is not open, I click on
    a file to launch the software and it causes the finder to crash /
    relaunch! But if i open the software and then open it its OK and
    works.. another weird thing is when i look at the icon of the flash
    .fla in the finder it appears as a small volume slider like a .mp3!
    now that really is scary! I tried to reinstall and no changes
    there, all i can expect to try next is a complete system reinstall?
    any ideas.
    thanks JAY

    As long as I'm understanding the issue correctly, this is a long standing "Flashism" (not saying it's right or desirable, but something that has required a workaround for a very long time). See if you can use nesting to get around the issue (the animation will restart when keyframes are encountered), I'll send this issue in for review. It's possible it has something to do with Player, although I can't find any concrete information on this to know for sure.

  • FLVplayback component mod help (Flash CS3, as3)

    can anyone help me with the actionscript needed to
    dynamically call a flv video into cs3's default
    flvplaybackcomponent with a variable?
    i have it working on as2 but the scripting must be different
    in as3 cause it dosnt work there.
    my as2 code is as follows:
    stop();
    var passed:String = video;
    player.contentPath= video;
    this allows me to use videoplayer.swf?video=[video].flv
    but i need this to work in cs3 flash9 player with the
    fullscreen support
    any help would be greatly appreciated.

    which version of flash cs3 do you have?

  • Problem Installing Flash CS3 Pro PLEASE HELP!!

    I have downloaded the installer for about the 3rd time i
    extract it all right but when i run the setup.exe its all fine
    until it starts to install but then it says something like " insert
    Adobe Flash CS3 Professional to continue" i keep trying but it
    never works i even converted the folder to a .iso and mounted it
    with the same name it told me but that still doesn't work. I have
    run out of ideas please if anyone knows the problem please can you
    help me out?

    FYI: "Br" is the Bridge application - try launching that to
    see if it fully installed.
    Chris Georgenes
    Adobe Community Expert
    mudbubble.com
    keyframer.com
    http://tinyurl.com/2urlka
    Ms. Clause wrote:
    > My computer is a brand new Vaio laptop loaded and 4 GB
    RAM. I don't think I
    > have a hardware problem. I tried to reinstall,
    redownload and it still will
    > not install the flash software. After I download I
    clicked on the file and it
    > install a folder in my drive, then I clicked on set up,
    it went through a
    > normal set up but for some reason it doesn't load Flash
    CS3, it only load 2
    > components from that I think it Br and something else.
    >

  • Help!! Flash CS3 and CS4 "Test Movie" very slow on OS X

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

Maybe you are looking for

  • Why can't I use my apple id in imessage? Network connection error message always comes up!

    I have iphone5 currently on the latest iOS 6.1.2. I am connected to wifi which is perfectly working. My iMessage is perfectly working using my mobile number but can't add my apple ID. When i try to add my apple ID to use for imessage, an error messag

  • Clearing form fields in a PDF

    I am using Microtype's TimeSavers and SP Form assistant to create forms and calculators in my FrameMaker documents. Is there a way to add an extendscript that will reset/clear the fields when the PDF is opened each time? It is going to be part of a b

  • Unable to Access Resource Error in AE CS6

    Hello, I'm running After Effects CS6 11.0 on MAC OSX  and everytime I attempt to apply text, either by creating a new text layer from the drop down menu or dragging open a text box I get "Unable to Access Resource    P_TextSmallCaps_Sm_N_D (type png)

  • How can i get the footer bar to stay, whilst page scrolls?

    how can i get the footer bar to stay, whilst page scrolls? at the moment, on my site, if the page is longer than the screen, it goes behind the footer, but the foot bar moves up the page as yo scroll down to see the rest of the content. any way of ge

  • Dreamweaver or RoboHelp HTML...or...

    Which tool would you buy today to create a tech pubs site that supports multiple internal and external audiences for multiple components. Customers might be within the company and external and they should not know about one another's stuff, even thou