Creating a Flex Theme from a Skin made in Flash

Hi all, here's what I'm trying to do in Flash Builder 4 Beta 2:
I have the Flex Scope Skin used for creating UI for CS4 products from here:
http://www.adobe.com/devnet/creativesuite/
I have the Skin Design Extensions and Flex Component Kit from here:
http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex_skins
The instructions on the skin page say to add the skin files to each Flex project which bloats the number of files in each project.  What I'd like to do is compile the Scope Skin down to a SWC that can be referenced by projects OR create a Flex Theme.
I've tried compiling an SWC out of Flash CS4, this kind of works but I can't find a way of embedding the fonts in the SWC that are recognised by Flex.  I've also tried crating a Theme SWC from Flex with no success.
Is there a tutorial out there showing how to create a Flex theme with embedded fonts and swf resources as well as CSS?   I have found some tutorials but the are all basic.
TNKS!
G

1.Create a layer on top of all existing layers.
2.Draw a rectangle shape.
3.set the width and height equal to the stagewidth and height.
4.Select the shape and convert it in to a symbol(selct and press F8).
5.On the popup select button.Click OK.
6.Double click on the created button.
7.You can see up,over,down ,hit.
8.Press on the frame hit and insert a key frame(F6);
9.Click on the first frame(up), delete the content on the frame.
10.Return to the main scene.
You have created an invisible button.
Click on the button and give it an instancename of 'invis_btn'
Paste the code on the frame where the button is
invis_btn.addEventListener(MouseEvent.CLICK,gotoURL);
function gotoURL(e:MouseEvent):void {
    var url:String = "http://www.adobe.com";
    var request:URLRequest = new URLRequest(url);
    try {
        navigateToURL(request);
    } catch (e:Error) {
        // handle error here

Similar Messages

  • BUG? JDev11.1.2 - Can't create theme from Fusion Blue Theme

    Since JDev11 came out I have always been able to take the fusionblue.jar, "copy it", and create a custom theme from it.
    After modifying the properties file, 11.1.2 won't let me .jar it because 16 .png files are missing... :( Is this a bug?
    (Specifically, I am unjarring the fusionblue.jar. In the theme.properties file I am adding 1 line to the : colors.windowBackground=#B8B8B8; and changing the name property=EasyEyes. That's it, no other changes. e.g. Keeping imagebase=/oracle/javatools/themes/fusionblue)
    Error Details: "Error: Unable to copy to output directory, U:\myTheme\src\oracle\javatools\themes\fusionblue\editortab_inactive_bg.png not found"
    other missing pngs: scrollgrip_mousedown.png, scrollgrip_mouseover.png, doc_active_mouseover.png, dock_mouseup.png, minimizedpanel_mouseover.png, minimizedpanel_mousedown.png, editortab_active_bg.png, editortab_highlighted_bg.png, dock_inactive.png, minimizedpanel_element.png, scrollgrip_normal.png, accord_scnd_panelheader_inactv.png, accordian_prim_panelheader_actv.png
    Confirmation: Looking in the imagebase (under the fusionblue folder that was jarred) the images are in fact not there... :(

    Looking at the creating_themes.html (in JDev 11.1.2.1 release), the documentation has not been Updated since 4/18/2007. It also still has references to Oracle JDeveloper 11g Technology Preview (11.1.1)...
    So it looks like Oracle exposed this feature in the TP and then completely forgot about it. I suspect the fusionblue.jar has not been updated since 2007 either and that is why it is missing all of these (new) Painter Types, etc.
    I am currently looking into finding the main .jar that JDev uses and will retrieve the fusionblue ("starter") settings from there, as the internal Themes have been updated and do not throw these errors.

  • Openbox Theme from GTK theme [beta]

    Something like this surely exists, here is my version..
    Creates an Openbox Theme from your chosen GTK Theme ... ..in 1), 2), 3)...
    1) you need to launch your theme changing from a script like this (instead of calling your GTK switcher directly)
    #!/bin/bash
    # call your gtk theme switcher and as it quits create a matching openbox theme
    # command for gtk theme switcher
    lxappearance
    # path to auto openbox theme generator script
    ~/bin/auto-openbox-theme
    # launch obconf (so you can select the newly made theme)
    obconf
    exit
    2) For that to work you also need this next script in ~/bin/auto-openbox-theme and made executable
    #!/bin/bash
    # Looks for the current GTK theme and automatically creates a matching Openbox theme
    # The script fails on themes not following the Clearlooks convention..
    # ..future improvements will account for this - for now the script politely fails on such themes.
    # function used to see if script is generating empty results from GTK it can't handle yet
    function emptycheck {
    if [ -s $myfile ]
    then
    echo "$myfile has data."
    else
    echo "$myfile is empty."
    xmessage "Sorry this gtk is not handled yet. You should not select the generated Openbox Theme this time."
    exit
    fi
    # main script #
    # copy ~/.gtkrc-2.0 to a new file and remove all data except theme name line (!d = don't delete)
    sed /gtk-theme-name/!d ~/.gtkrc-2.0 > ~/.gtk-match-openbox-info
    # remove string before gtk theme name and return info to this file (-i)
    sed -i s/gtk-theme-name=// ~/.gtk-match-openbox-info
    # strip off all (/g) speach marks (\") and return info to this file (-i)
    sed -i s/\"//g ~/.gtk-match-openbox-info
    # place the theme name in a variable
    mygtktheme=$(cat ~/.gtk-match-openbox-info)
    # copy file called mygtktheme to a new file
    sed /gtk_color_scheme/!d ~/.themes/"$mygtktheme"/gtk-2.0/gtkrc > ~/.gtk-match-openbox-info
    # strip the line down to just colours
    sed -i s/gtk_color_scheme\ =\ \"// ~/.gtk-match-openbox-info
    sed -i s/gtk-color-scheme\ =\ \"// ~/.gtk-match-openbox-info
    sed -i s/fg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/bg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/base_color\:#// ~/.gtk-match-openbox-info
    sed -i s/text_color\:#// ~/.gtk-match-openbox-info
    sed -i s/selected_bg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/selected_fg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/tooltip_bg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/tooltip_fg_color\:#// ~/.gtk-match-openbox-info
    sed -i s/\"//g ~/.gtk-match-openbox-info
    # force \n to be a true line break so colours on individual lines
    sed -i s/\n/\\n/g ~/.gtk-match-openbox-info
    sed -i 's/\\//g' ~/.gtk-match-openbox-info
    # store some colours for use in Openbox theme
    # don't delete (!d) line number n and place it in a text file colournX
    # where X is used later to aid production of Openbox theme
    sed '1!d' ~/.gtk-match-openbox-info > /tmp/colour1V
    sed '2!d' ~/.gtk-match-openbox-info > /tmp/colour2W
    sed '3!d' ~/.gtk-match-openbox-info > /tmp/colour3X
    sed '4!d' ~/.gtk-match-openbox-info > /tmp/colour4Y
    sed '5!d' ~/.gtk-match-openbox-info > /tmp/colour5Z
    # check if we have empty data from unhandled GTK themes
    myfile="/tmp/colour1V"
    emptycheck
    myfile="/tmp/colour2W"
    emptycheck
    myfile="/tmp/colour3X"
    emptycheck
    myfile="/tmp/colour4Y"
    emptycheck
    myfile="/tmp/colour5Z"
    emptycheck
    # hold the above in varibles
    myV=$(cat /tmp/colour1V)
    myW=$(cat /tmp/colour2W)
    myX=$(cat /tmp/colour3X)
    myY=$(cat /tmp/colour4Y)
    myZ=$(cat /tmp/colour5Z)
    # make Openbox theme by replacing VWXYZ in template with colours
    sed s/VVVVVV/$myV/g ~/.themes/obthemetemplate/openbox-3/TEMPLATE > /tmp/obtheme
    sed -i s/WWWWWW/$myW/g /tmp/obtheme
    sed -i s/XXXXXX/$myX/g /tmp/obtheme
    sed -i s/YYYYYY/$myY/g /tmp/obtheme
    sed s/ZZZZZZ/$myZ/g /tmp/obtheme > ~/.themes/obthemetemplate/openbox-3/themerc
    # update rc.xml
    #urxvt -e /usr/bin/obconf
    3) AND you need this folder in your ~/.themes/ folder - download it, extract and copy to ~/.themes
    4) (optional but welcome) Post your fails, post your abusive and constructive criticism, and post your "hey why don't you use this 5million times better version here?"'s
    thanks, bye

    Works fine here. Thanks for the script, it's quite handy and I got at last a nice OB theme witch fits with the murrina chrome gtk theme

  • I made an album just now. I went back to delete the pics from my camera roll but my only option is to "delete everywhere." I want to leave them in the new album I made..  How i can delete them from camera roll without deleting from other Album i made

    I made an album just now. I went back to delete the pics from my camera roll but my only option is to "delete everywhere." I want to leave them in the new album I made..  How i can delete them from camera roll without deleting from other Album i made

    The way that I understand that it works, is that the photos are not copied into the new albums, instead it just points to the photos - the number of photos on the iPad in Settings > General > About doesn't increase when you create new album so I assume from that that it isn't copying the photo, just pointing to it. So if you delete the photo from the camera roll you will therefore also be deleting all the pointers to it

  • How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file= export it to them from iPhoto?

    How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file=>export it to them from iPhoto?

    Have them install Quicktime on their PC's from Apple's website, that's the easiest fix.

  • I tried to create a new google calendar in ical, but they did not show up, I tried this several times. Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can i clear them from this list?

    I tried to create a new google calendar in ical, but they did not show up, I tried this several times.
    Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can I clear them from this list?

    See https://bugs.downthemall.net/ticket/2147
    Google Search Bug
    Reported by: openid:nathan wride Owned by:
    Priority: major Milestone:
    Component: Polish/Usability Version: 2.0.10
    Keywords: Google search instant save bug Cc:
    Operating System: Windows
    Description
    Hi Guys
    I have found a bug/annoying thing that occurs frequently on google. When searching, DTA trys to download the search...
    I'll try to attach a screenshot.
    Attachments
    [https://bugs.downthemall.net/attachment/ticket/2147/Screenshot.png Screenshot.png] Download (113.0 KB) - added by openid:nathan wride 4 weeks ago.
    The screenshot that shows the bug.

  • Creating an xdp file from flex/java application

    Hi,
    I have an application in Flex 4  and As 3.When I click a button in flex application I have to generate a file in java with
    extension xdp.When I try this locally(Run as java application) the file is generating  correctly.When i compile the applic
    ation and try it, the file is not writing correctly.Do someone have any idea about creating an xdp file from flex application?
    i am using blazeds to connect java and flex4.When i opens the file in notepad the file is writing correctly.There is only problem in openig an xdp file...
    please help me.

    specifically:
    Runtime.getRuntime().exec("filename.exe")

  • .DS_Store files on USB thumbdrives - a way to stop them from being created?

    Hello!
    Forgive me if this has been asked to death, but at school I need to copy homework files back and forth to the school's XP-based computers constantly. Because in any given day I usually update half a dozen files across the "homework" folder on my Powerbook, it's easier just to copy the entire folder (and its subfolders) to my 2-GB, FAT-32 formatted flash drive each night - all 500 files (and 150 MB). Of course, this also leaves hundreds of .DS_Store and ._filename files to clutter "Windows explorer" windows.
    My question is how do I remove (and prevent creation of) these files selectively? I know that they are used by the finder to store thumbnails, spotlight comments, and labels. The big problem is that while I want to remove these files from the homework folder (and some other folders), I DO NOT want to remove them from a few other folders on the flash drive - which I use to make quick backups of files from my Mac.
    I know that I can prevent OS X from creating them altogether with certain utilities, and I know that I can get third-party utilities that allow me to remove these files from flash drive and/or prevent the creation of the files for entire volumes, but is there something I can do to remove them from only certain folders?
    Also, since I do not always know beforehand what directories I might make, I'd like to be able to create a "white list" of only certain directories (and their sub-directories)that won't be touched, while all others will have their ".DS_Store" and "._filename" files removed.
    Finally, because I'm often a hurry when I go to copy files, I'd rather not sit there and run terminal commands or a program every time I copy a folder over to the flash drive. Is there some way to prevent them from being created in these certain folders altogether, automatically? An applescript or terminal command that I can program to run from the script menu perhaps? I don't mind opening a program or script, I just don't want to have to sit there manually removing the files.
    Thanks,
    -Dan

    I had a similar problem awhile back and asked for help in the Applescript forum:
    http://discussions.apple.com/thread.jspa?threadID=954738&tstart=0
    Unfortunately the revised jive software formatting function here in the forums has totally messed up things like posted scripts. What you'll see in the scripts discussed is no longer what was there originally. I just now put a copy of the script I'm using up in zip format here:
    http://homepage.mac.com/francines/.Public/CopyStrip2Fat.zip
    Unzip and open in Script Editor to get some idea of what it is really supposed to be. The idiot formatting of the revised jive software has replaced some things with a carriage return, a semi-colon, and close quote, thus rendering some lines meaningless.
    To see the source of the script I quoted, see this MacOSXHints thread:
    http://www.macosxhints.com/article.php?story=20040726164957299
    The script is in the comment by cougar718. You might take a look at other comments as well.
    Francine
    Francine
    Schwieder

  • I have just imported my photos on my iPad to my mac book. can i now delete them from the iPad to create more space without losing them on the mac book?

    i have just imported my photos on my ipad to my new mac book pro. can i now delete them from my ipad to create more space without losing them on my laptop?

    Yes you can delete them. Removing them from the iPad has no effect at all on the Mac.

  • Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .

    Redundant folders created in root of C drive of server and Client . I want to stop the same and want to automatically delete them from server and client .
    Please let me know the solution to delete them not manually . It should not create automatically .Is there a way we can change the path of creation.
    Is there a way that once the folfer is create should be automatically deleted once the task is done.
    Redundant folders are created in the root of my C drive all the time,
    folder names look like:
    09b0508d0bd2dbd70523
    56f51b81c1462bb378009ee4d5ed03
    02afe4378371907aca40ab

    This is a duplicate of
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4/sccm-2012-issue-folders-with-long-guid-are-created-in-c-drive?forum=winservergen#ae99c2d0-8dea-4c5e-8a79-17e08e9e5de4
    Jason | http://blog.configmgrftw.com

  • I am creating an aperture book from my photos. How do I change the default map provided in the theme to one of my choice e.g. satellite view?

    I am creating an aperture book from my photos. How do I change the default map provided in the theme to one of my choice e.g. satellite view?

    Kyle,
    Thanks for your response. To be clear, the way I am importing the PDF is by going to New in LiveCycle, and selecting Import a PDF document, and selecting Create and Interactive Form with Fixed Pages.
    I cannot change the forms or pages, as they are created by our local Board. In otherwords, I have tryed used the flowable content, and upon import, not only are the fonts slightly different, but all the important artwork (trade-related) is gone, and is not in the exact positions it was in. The forms must meet the standards to which they were approved by the regional board, and there are state-mandated forms as well.
    What surprises me is that you say this method of Fixed Content isn't used much any more. I would think that a lot of people would have PDF files they would wish to make into fillable, interactive forms without needing to reconstruct the entire document. Perhaps a company that has always done things on paper, and now wishes to use those exact same forms on the computer, with no deviations to looks so they can be printed and match up perfectly.
    I thought about using Acrobat's internal form creation system. However, some of these forms have sophisticated options and the calculation scripts and systems within LiveCycle are very useful. Not to mention that it has a much larger scalability, should we chose to utilize it.
    Any other suggestions? I am so confused why Adobe would force medium-quality import of a PDF, but be so incredibly flexible about every other option in their program.

  • How do I retrieve videos made on my iPad that I accidentally deleted by removing them from from my photo stream?

    How do I retrieve videos made on my iPad that I accidentally deleted by removing them from from my photo stream?

    Photos/videos in the Camera Roll are not synced. Photos/videos in the Camera Roll are not touched with the iTunes sync process. Photos/videos in the Camera Roll can be imported by your computer which is not handled by iTunes. Most importing software includes an option to delete the photos/videos from the Camera Roll after the import process is complete. If is my understanding that some Windows import software supports importing photos from the Camera Roll, but not videos. Regardless, the import software should not delete the photos/videos from the Camera Roll unless you set the app to do so.
    Photos/videos in the Camera Roll are included with your iPhone's backup. If you synced your iPhone with iTunes before the videos on the Camera Roll went missing and you haven't synced your iPhone with iTunes since they went missing, you can try restoring the iPhone with iTunes from the iPhone's backup. Don't sync the iPhone with iTunes again and decline the prompt to update the iPhone's backup after selecting Restore.

  • How to remove the default theme from "Revolution theme" to create our own movies and put our own background..

    how to remove the default theme from 'Revolution theme" to create movies of our own and a background..
    how to create chapter maker for movies...

    Are you using iDVD? Or iMovie?
    If iDVD, post in -> https://discussions.apple.com/community/ilife/idvd.
    If iMovie, post in -> https://discussions.apple.com/community/ilife/imovie.
    Good luck,
    Clinton

  • Photoshop CC 2014 has lost all my custom settings, all my batch actions, all my custom desktops. Can't I import them from previous PSCC, or do I have to create everything over again?

    Photoshop CC2014 has just been installed earlier today, and it won't access all of my custom settings from the previous PSCC. I constantly use Batch Actions, always work in custom workspaces, and they're all gone. I can't find an option to retrieve them from the previous version, which seems ridiculous. It will take at least a full day's work to recreate this stuff that's sitting right there in the previous version. Isn't there someway to "update" the new version with my custom batches and workspaces at least?

    docuscapes1 wrote:
    how do you get to user library preferences.  can't find it in the c drive
    The terms you used, "user library" and "c drive" are from Mac and PC architectures respectively.  Read the information at the link I posted more carefully - there are different sections for Mac and PC.
    Keep in mind the AppData folder is usually hidden by Microsoft,
    Also know that Adobe hasn't updated that page to include specific locations for CC 2014, so you have to look around just a bit when you get to the deepest folder.
    As an example, here's where my preferences are on Windows 8.1:
    C:\Users\NoelC\AppData\Roaming\Adobe\Adobe Photoshop CC 2014
    -Noel

  • Can't find files after restoring them from Time Machine

    Hi!
    Yesterday I formated my macbook pro and re-install Mountain Lion. Before that I made a backup using Time Machine.
    When I wanted to create full system restore I couldn't do that. Neither using migration assistant neither with Mountain Lion startup disk. But that was yesterday story. I guess I was one of those unlucky guys who can't do a system restore because some strange reason.
    So what is the problem today: They someone says that I should enter a time machine and do a restore of a Macintosh HD. Restore of the whole hard disc.
    And I did that.
    And now I can't find those files on my Macbook. I can see on disk space  that they are on the disc but I can't find them.
    Is it because of the different user account or something like that?
    It would be really great if I could get a full system restore but it would be also great if I could just see all the files that i restored.
    THanks for the help guys!

    That's not the right way to restore. Delete the folder named "Macintosh HD" in the Volumes folder. It will take a very long time.
    Most likely, some folders were inadvertently excluded from your backups, and as a result you can't restore your data in Recovery, Setup Assistant, or Migration Assistant.
    Starting from a fresh installation of OS X, set up a new administrator account and log in. You should now be able to enter Time Machine and restore your user data from a snapshot.* I suggest you do this in two stages. Quit all applications except the Finder before you begin.
    Restore all the visible items at the top level of your home folder.
    Hold down the option key and select Go ▹ Library from the Finder menu bar. Enter Time Machine and restore all items in the Library folder. Log out and log back in as soon as the restore is complete.
    Any other invisible folders or files at the top level of your home folder that you want to preserve will have to be restored separately. For most users, that isn't necessary.
    You'll have to reinstall all third-party applications from scratch, or restore them from another kind of backup, if you have one.
    You'll have another problem if this is a new computer, or if you erased the startup volume: Time Machine won't continue your previous snapshot series, but will instead try to begin a new one, starting with a full copy of all files. There might not be enough space on your backup volumes for that. There are different ways of dealing with that situation, depending on your needs. The easiest way is to set your backup drives aside, if possible, until you're sure you'll no longer need the data on them, then erase them and start over. Meanwhile start a new backup on one or more empty storage devices. If that solution isn't workable for you, ask for instructions.
    *If you don't see any snapshots in Time Machine, exit the time-travel view and then hold down the option key while selecting
    Browse Other Backup Disks...
    from the Time Machine menu, which has an icon that looks like a clock running backwards. Select the backups of your computer by its previous name. If you don't have the Time Machine menu, open the Time Machine preference pane in System Preferences and check the box marked
    Show Time Machine in menu bar

Maybe you are looking for

  • My computor wont let me update my Itunes

    For some reason my computer won't recognize my Ipod Touch and it won't let me update I tunes it gets about half way and then it gives me a message that errors have occured and if it persists to go to tools>download only and install it manually...

  • Adobe Flash Player does not work in Internet Explorer 10 on Microsoft Windows 8

    I understand that Google Chrome and IE10 have their own automatic update system, however, any site requiring me to use adobe flash player to view videos does not work no matter what I try. I have: Used the desktop version of IE versus that Start vers

  • Data Trigger interfering with parameters??

    Hi, I have my data template set to print the user parameters to XML. However, only a couple of the parameters are making it there. I was wondering if the use of data triggers could be the cause of this... Anyone else had this problem? Thanks, Matt

  • Best Anti-Virus for Mac.

    My new MacBook Pro is getting delievered soon, I want a few opinions on what the best Anti-Virus for it will be. I know that Macs are more secure than Windows, but I still want to have an Anti-Virus on it as I've already had a virus on my current Mac

  • Retired Asset Depreciation Issue

    Hi Good day to you. We have a peculiar issue. One of our Company Codes retired an asset with Asset Value date of 31.12.2007. But apparently they did not repeat the Depreciation run for December 2007. When we try to do the Fiscal Year change to 2009,