A single PSD imported but has buttons within

I imported a single PSD with 88 layers as buttons. When I double click on the PSD, to break apart, I creat new symbols of 88 buttons. But when I run the program, flash dosen't see the buttons within the PSD. The EventListener can't see the buttons because they are within the single PSD file. I did the buttons one by one, but when scrolling through the 88 buttons, the buttton move closer together as scrolling, That's why I made a single PSD so they don't move.
I am using Flash Professional CS5

Are you not using the import function in the File menu? Ordinarily, when you import a .ps file into Flash you will get a window that will allow you to set the layers that are to be imported and the method used to import  those layers. If you Select to import Photoshop's layers as Flash layers then each of your Photoshop layers will be imported as individual bitmaps on their own layers into Flash.
Then you can select each individual item and set it to be a button if you like.

Similar Messages

  • The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar? Also would like to know if the toolbars can be put on the same line to make more room on the page (drag & drop) ??

    The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar?
    Also would like to know if the toolbar can be put on the same line to make more room on the page (drag & drop) ?? Like the menu & bookmarks toolbar could/should fit on same line. This would add more page view...
    Floyd Perry
    Thanks

    Check that you still have the "Bookmarks Toolbar items" placed on the Bookmarks Toolbar
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button
    You can only move the content from a toolbar onto other toolbars if all toolbars support that feature. You need to check that in the options of each toolbar.

  • I have an iphone 5 that was originally with verizon but has been unlocked now by them and the phone is still under the apple warranty, if I go to replace for power button malfunctioning, will they give replace it with an unlocked phone as well?

    I currently have an iphone 5 that was verizon locked but has been unlocked by them because of my contract, the phone is still under the apple warranty but the power button is not working, if it was the case that apple has to replace it with another phone, will they replace with an unlocked phone now?
    thanks

    The SIM Lock is stored on the Apple Activation Server - if it has been correctly unlocked by a network then this would have been done on the Activation Server.
    When you get your replacement handset through Apple they mirror the activation server details of your existing handset and the current SIM LOCK status is mirror'd onto the new device.
    (100% Accurate - done mine 2 weeks before christmas due to original 5 sleep button stopped working)

  • I have a 4s with ios7, the Flixter app appears when I double click the home button but has disappeared from the main screen page. How do I get it back?

    The app appears when I double click the homw button but has disappeared from the main screen. How do I get it back on the screen so that I don't have to double click every time?

    The app appears when I double click the homw button but has disappeared from the main screen. How do I get it back on the screen so that I don't have to double click every time?

  • Call a external SWF by press the button within another SWF file but the second SWF file play Externely

    Hello Guyz.
    i am working on Macromedia Flash 8 and i just want to call a external SWF when i press the button within another SWF file.......but the second SWF file play Externely............can any one knows the code.... AS2

    try this
    http://www.actionscript.org/forums/showthread.php3?s=&threadid=28123

  • I have been using iphoto 09 and am now unable to import photos from my camera.  I get the message that they are being imported but after 10 minutes nothing has actually been imported.

    I have just been trying to import photos from mine and my husbands cameras but nothing seems to be happening.  I get the message to wait while they are being imported but after 10-15 minutes, nothing has been uploaded.  I have always had updates downloaded when they become available and can't think what I may have done wrong.
    I hope someone out there can give me some advice.  My mac is running Snow Leopard and I love it.

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes a

    I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes ages. Any help out there?

    I believe there are a couple of similar threads about CC or CC2014 behaving this way that might give yo some hints, but CS5 is not supported on your OS and may not run properly regardless of what you do. An in-place OS upgrade or an attempt to migrate the application would both be major problems for ID, so if you did either of those things you'll want to uninstall, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • How do I use a button within a movieclip to go to the root?

    Hi there, I am new to flash and AS3 and need some help
    getting my buttons to work.
    I made a script for the file that i am working with that has
    buttons located within 2 movieclips. I want that button to load and
    image into a UILoader (problemLoader_mc) that I placed on the stage
    on the main timeline (the timeline that contains WeekBar_mc). The
    problem is that I don't know how to get to the root of the file to
    start a new directory to tell my function to load the image i want.
    I have tried multiple approaches including:
    MovieClip(root).problemLoader_mc.source = problemArray[0]
    MovieClip(parent).problemLoader_mc.source = problemArray[0]
    root.problemLoader_mc.source = problemArray[0]
    parent.problemLoader_mc.source = problemArray[0]
    (root as MovieClip).problemLoader_mc.source = problemArray[0]
    If anyone can help me out with this, I would greatly
    appreciate it, I am banging my head against a wall at the moment.
    (Also, please excuse my vague descriptions, I am still learning the
    official terms.)
    Here is the code that I have written that pertains to this
    problem:

    I have a mental block for reasoning things out as far as
    assigning the listener to an object two mc's away from the main
    timeline while having the function in the main timeline, so I may
    play with that on my own for awhile. One thing you didn't do
    though, was to pay the same attention to the problemArray[0]
    assignment in that function, which I assume also lives in the root.
    But here's what I'd do for the moment.
    Take all that code except the array and plant it in the
    timeline where WEEK1btn lives, modifying it as follows....
    WEEK1_btn.addEventListener(MouseEvent.CLICK, pload1);
    function pload1(event:Event)
    MovieClip(this.parent.parent).problemLoader_mc.source =
    MovieClip(this.parent.parent).problemArray[0];
    I haven't utlized root myself yet, so I am not comfortable
    offering you a solution that attempts it.

  • Get the value of a selected radio button within a ToggleGroup

    All
    Please see the script below. All I'm trying to do is to identify the selected radio button within a ToggleGroup. This has been working in JavaFX 1.2.
    This is JavaFX 1.3 running on NetBeans 6.9 (beta) on Ubuntu 10.04
    Does anyone know why this is no longer working?
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    import javafx.scene.control.ToggleGroup;
    import javafx.scene.control.RadioButton;
    import javafx.scene.layout.HBox;
    import javafx.scene.control.Toggle;
    def levelGroup = ToggleGroup {};
    var selected: Toggle = bind levelGroup.selectedToggle on replace {
        // here I want to capture the value of the selected toggle
        // the outputted value is always 'null'
        println("level toggle = {selected.value}");
        println("selectedToggle = {levelGroup.selectedToggle.value}");
    Stage {
       scene: Scene {
          width: 300
          height: 300
          content: [
             HBox {
                    translateX: 100
                    translateY: 67
                    spacing: 20
                    content: [
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Easy"
                            selected: false
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Medium"
                            selected: true
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Hard"
                            selected: false
    }

    Actually, your code above wouldn't have worked in JavaFX 1.2 as we only added the value property to the new Toggle mixin in 1.3. I believe what worked for you in 1.2 was when you referred to text, which is not a property on Toggle, so you need to cast the selected variable from Toggle to a RadioButton, which does have a text property. For example, this would work:
    var selected: Toggle = bind levelGroup.selectedToggle on replace {
        println("level toggle = {(selected as RadioButton).text}");
        println("selectedToggle = {(levelGroup.selectedToggle as RadioButton).text}");
    }Alternatively, instead of casting like this, you can store a value in the value property of the Toggle mixin class, which is extended by RadioButton. For example, your code could be changed to the following (in particular note that the only change is the addition of the value properties in each of the RadioButton):
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    import javafx.scene.control.ToggleGroup;
    import javafx.scene.control.RadioButton;
    import javafx.scene.layout.HBox;
    import javafx.scene.control.Toggle;
    def levelGroup = ToggleGroup {};
    var selected: Toggle = bind levelGroup.selectedToggle on replace {
        println("level toggle = {selected.value}");
        println("selectedToggle = {levelGroup.selectedToggle.value}");
    Stage {
       scene: Scene {
          width: 300
          height: 300
          content: [
             HBox {
                    translateX: 100
                    translateY: 67
                    spacing: 20
                    content: [
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Easy"
                            selected: false
                            value: "Easy"
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Medium"
                            selected: true
                            value: "Medium"
                        RadioButton {
                            toggleGroup: levelGroup
                            text: "Hard"
                            selected: false
                            value: "Hard"
    }This approach saves you from having to cast from Toggle to RadioButton. This second approach is actually very powerful, as you can store any object in the value field, and can then easily retrieve it at a later point when the user selects the desired RadioButton. Of course, you can just use it as in the simple case above as well.
    I hope that helps.

  • I am having issues today with my Adobe Lightroom 5.6 today that was working fine yesterday except for te files from one of my cameras showed up on import but wouldn't download, today I'm getting the message "Lightroom cannot start because it cannot create

    I am having issues today with my Adobe Lightroom 5.6 today that was working fine yesterday except for te files from one of my cameras showed up on import but wouldn't download, today I'm getting the message "Lightroom cannot start because it cannot create files in the temporary file location  /var/folders/jv/2bct456j0yg4ys681fxk9zq00000gn/T " don't know what has happended in 24 hrs except I did check my permissions on my main directory to ensure that I had extended permissions to all the folders contained within my main drive on my IMac running OSX 10.10

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Button within Region

    Hi,
    Previously, I created a screen that had a Password field and next to it a button marked as 'Approve'. When the user filled in his password and clicked the button, the Approved By field wouild be filled in and the DML update process would update the record. I checked for :REQUEST in ('SAVE', 'APPROVE'). I had tested this and it worked.
    Sometime after the testing, I upgraded to Apex 2.2. I just built another screen that, in effect, cloned the Approve processing and found that I cannot make it work and that the original screen does not work as it used to. The session state shows that the appropriate values are being set/calculated and the debug process shows that the DML process is 'running' but no update is occurring. If I do a 'normal' update via a SAVE button at the top of the region, the DML process stores the record and if the session state for the Px_Approved_BY screen field has been set by the Approve process then its value goes into the data base record too.
    I think the difference in behavior is caused by the fact that SAVE button has a Database Action attribute of SQL Update action associated with it while the Approve button within the region has no data base action attribute.
    Is there a way to get around this new 'feature' without moving the Approve button to a non-intuitive position in the screen?
    thanks,
    Peter

    Peter - Can you put an example on apex.oracle.com and show us what is not working?
    Scott

  • Encore installed but no buttons or photo objects appear. Where do I load these?

    I recently purchased CC Premier CS6 and I am going through the Lynda.com tutorial on how to use Encore and when it says select a Blank HD menu there are not buttons or photo objects available. Also, it will not allow me to import a custom button. Any suggestions?

    Did you extract the contents of the file?  Yes, I did extract the contents of the files and placed them within the Encore Folder within Applications.
    Where did you put the contents?   They are currently in the Encore Folder
    Where is encore looking for it?  I don't know if Encore is looking for them or not.
    I'm wondering if I uninstall Encore and then reinstall it, if it will find the files this way.
    I will have to say that I'm surprised that Adobe doesn't have a help desk number that a user can call to get some basic answers. I am paying $21/ month for the programs and right now not using them.
    On a side note, I am using Photoshop CS4 but when I downloaded the entire suite it didn't download Photoshop CS6. Do I need to uninstall CS4 then download CS6?
    Thank you again for your help. I really do appreciate it.
    Matt

  • Trying to get mc to play and stay open/buttons within

    Hi everyone, i am in desperate need to get this to work! I've
    tried posting previously and this is what i have so far now...
    I am creating a navigation bar in Flash (which will then be
    used in Dreamweaver). When you mouse over each topic in menu (ex.
    Products), i want it play a movie clip (so it shoots out a sub-menu
    underneath). so far so good, but the only thing is, the sub-menu
    won't stay open in order for me to click on buttons in it. For each
    button, I assigned it the Behavior to go to a url. Also, I tested
    the buttons within the mc and they don't seem to direct me to url.
    do you think maybe it's because it's nested within the movie clip??
    Is there an easier way to go about this?
    Here is the link:
    http://www.jeannettevillarreal.com/index.html
    I can also email the file, it is very small, to you. Please
    help!! thanks!!
    This is the code I used for it:
    products.onRollOver = function() {
    products.gotoAndPlay("over" );
    products.onRollOut = function() {
    products.gotoAndStop(1);
    store.onRollOver = function() {
    store.gotoAndPlay("over" );
    store.onRollOut = function() {
    store.gotoAndStop(1);
    }

    sorry to be a pest but i'm not making a connection on how
    this will make the button work. would it be too much trouble to
    post a sample of what you mean by "start a loop that repeatedly
    checks if the the child moviclip has a positive hitTest with the
    mouse"...? thanks

  • Image plays ok but has coloured filter appears over image

    After exporting a Quicktime Movie from FCP and gragging it into iDVD it plays ok but has a horrible red blue green speckled looking filter on it. The file plays perfectly in Quicktime player but looks crap it iDVD.

    Hi
    FCE/P to iDVD
    Several things
    • How to go from FCE/P to iDVD
    • Free space on Start-up hard disk
    • Encoding
    • Brand and type of DVDs used
    • Burn speed set
    • iDVD BUG
    • Chapters
    How to go from FCE/P to iDVD I do
    • Disable Screen and Energy saver
    • IMPORTANT --> FIRST in FinalCut - Mix Down Audio under Sequence Menu / Render Only / Mix-down
    • Export out as a QuickTime .mov file
    • Select with Mark - Chapter Mark
    • Not as Self-Contained (not important but saves time and space)
    • NO QUICKTIME CONVERSION (IMPORTANT)
    This QT.mov file I import into iDVD from within iDVD.
    Free space on Start-up hard disk
    I set a minimum of 25GB (for Mac OS and iDVDs temp files)
    Encoding
    • I use Pro Quality encoding
    Brand and type of DVDs used
    • I use Verbatim
    • I use DVD-R
    Burn speed set
    • I set down this to x4 (or x1)
    iDVD BUG
    • One can not go back to movie-project for any alterations and then go back to
    the iDVD project. It will notice and ask You to either Up-date or Cancel. Neither
    of them will work.
    Medicine - Start a brand new iDVD project.
    Use of Chapters
    • I only use a to z and 0 to 9 in naming them. NO other symbol/letter !
    • NO Chapter-mark at very beginning - iDVD NEEDS TO set this by it self
    • No Chapter marks in or within two seconds from a transition
    (Way around this last one - Export movie as QT full quality and NO Chapter marks
    Import this into a new Movie-project and now You are free to set C-Ms where You want
    them except at very beginning - still)
    Material used to build movie
    • video - I use streamingDV (or convert all other to this e.g. .mp4, .avi, .wmv etc)
    • audio - I use .aiff 16-bit 48kHz or from Audio-CD (44.1kHz) - no .mp3 or direct from iTunes
    • photos - I use .jpg - no .bmp etc
    Trash iDVD pref. file and run Repair Permissions - and have a re-try.
    from post ??
    May not be relevant, but I had the same problem with iDVD, where burned DVDs showed a green screen. It was cured by quitting Quicksilver and Quickeys as well as disabling sleep and screen-saving
    Yours Bengt W

  • Buttons within a dragged object

    I have a map movie clip in a swf that can be panned using
    startDrag/stopDrag. Within the map are buttons but the buttons
    don't work, (even after it has been dragging has been stopped).
    When I remove the dragging script the button work fine.
    This is my drag script; "map" is the movie clip that is being
    dragged which has the buttons in it:
    on (press) {
    startDrag(_root.map);
    on (release) {
    stopDrag();
    }

    if you define a mouse handler for a parent movieclip, the
    mouse events will be intercepted by that parent and no child
    movieclip or button with detect any mouse event. to remedy, use a
    loop and hitTest for the parent or the child.

Maybe you are looking for

  • Integrating Jasper Reports with BPM Inbox

    BPM Dashboard has click able graphics which drill down the Inbox with the filtered results. Now we are using Jasper Reports for building Dashboard. We want to implement the same type of drill down functionality with Jasper Charts. Does anyone know ho

  • How can I monitor the voltage output sent to each servo axis programmatically?

    Hi I am wondering if it is possible to monitor the voltage that's being sent to a servo motor during an axis position movement (in particular quantities such as max voltage). I am using a PID controller to drive this servo motor. Thanks Vlad

  • Result of FOX in a message

    Hi all, I want to do  validation using a fox formula. do you know where can I define the message type? Ex: If A<B MESSAGE 'A<B not possible' Best regards; Ricardo

  • IPAD 2 NO SIM AFTER  IOS 6 UPDATE

    IPAD 2 NO SIM AFTER  IOS 6 UPDATE

  • IBM Thinkpad 380D

    Hi, My IBM Thinkpad 380D has been used since it left it's store. However, I upgraded from 95 to 98 SE and used for about 3 more  years until, the Hard Drive Finally gave in. I don't know of any compatible Hardrives so if possible maybe, someone could