Create custom folders with custom icons like created by Vibe

I would like to create a custom folder and sub folder in the GW folder list to link to an outside feature. Ideally, it would display in a custom pane on the right like the email list, forum plugin or calendar view.

You might want to have a look at Russ Ward's WS Utilities: http://weststreetconsulting.com/WSC_Utils.htm
ImpGraph by the late Bruce Foster also did most of this, but is no longer available.
Steve Kubis' AutoText may also provide part of the solution (custom sized Anchored Frames): see: http://www.siliconprairiesoftware.com/Products.html
You can also create custom anchored frames on your Reference pages and then copy & paste from there. Automatically scaling an imported file to properly fit would require a custom FrameScript or plug-in - FM's auto-scaling on import may distort your graphic.

Similar Messages

  • Is there a way make a full width menu that opens with a custom icon like the link below?

    I've been trying to make a hamburger menu that just has a custom icon to open revealing the sections of my site with links.
    Huge. Digital agency. Digital business, design, marketing, technology
    Anybody got any tips?
    Thanks

    You can use a lightbox composition

  • Mac attempting to open folders with the Icon Composer application

    When opening a folder from anything other than a finder window(like the "Open In Finder" button in a stack or by clicking the preview icon in the Get Info box) my Mac attempts to open the folder with the Icon Composer application. Of corse this produces an error saying the Icon Composer cannot open files of this type. It is like the "Open With" setting got messed up somehow though there is no "open with" option for a folder that I can find. It does not matter whether the Icon Composer is running or not though this issue did not start until after I ran the application for the first time.
    I have tried renaming the finder's .plist file and the finder's settings seem reset but the problem persists. If it were a problem with the Dock it would not persist within other apps(including the Get Info window right?
    Any advice?

    never see this one. try resetting launch services. delete the file /users/username/library/preferences/com.apple.launchservices.plist and try this again.

  • How to make Safari not autoexpand folders with same icon when adding a bookmark

    I am just stunned at how hard it is to add bookmarks to Safari. Any ideas?
    The deal. I have a highly organized, highly nested, voluminous bookmark list. When I go to add them, Safari auto-expands all folders, uses the same icon for them no matter if they are child or parents, and has no toggle to collapse. I would like a collapsable list by default and then expand to add. Man, I hate to sound negative, but this is 101 usability design and RIM does the same thing that Apple does for their backup on the BBErry when you want to select what you are backing up - autoexpand, no collapse, same icon. I think that's enough said on usability

    http://discussions.apple.com/thread.jspa?messageID=5846081

  • All I get is usb icon with iTunes icon on iphone5-.

    Posted earlier, but brand new iphone5 is locked,unresponsive.  Have tried everything including trying to restore from itunes.  Regardless, all I ever get on iphone is the uSB icon/with itunes icon (like it is asking you to connect to pc).  I have tried windows, mac machines plus different USB cable still no luck.  Is there anyway I can unbrick my phone? 
    Thxs

    FWIW/Hopefully might help someone else..... our issue was hardware related and after visit to genius bar left w/ new iphone 5. 
    On a seperate note..... VERY impressed with Apple/Genius Bar at my local store.  Within 15 minutes had problem identified and on our way w/new phone. 

  • Automatically create folders then attach custom icon to each folder.

    This is my current working script, does anyone know how I can now add customer icons to the folders in Applescript
    Many thanks
    Matt
    set theWeekNumber to ""
    repeat
    display dialog "Please enter the week number:" default answer theWeekNumber
    set theWeekNumber to text returned of result
    try
    if theWeekNumber = "" then error
    set theWeekNumber to theWeekNumber as number
    exit repeat
    on error
    set thePrefix to "INVALID ENTRY! "
    end try
    end repeat
    set theAFolder to "AFolder_WK" & theWeekNumber
    set theBFolder to "BFolder_WK" & theWeekNumber
    set theEnd to "_PSD"
    set theEnd2 to "todo"
    tell application "Finder"
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd2}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd2}
    end tell

    The following script uses a handler that will set a custom icon to a file item. In this example, you are prompted for the icon file and the file item to set to the icon, but you can just pass the desired image and folder paths directly to the handler.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFD891;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    -- assign an icon to a folder or file (requires Developer Tools)
    -- any image file can be used for the icon
    property startingDirectory : (path to home folder) -- a place for the file choice dialogs to start from
    on run -- example
    try -- check for tools
    get "/Developer/Tools/" as POSIX file as alias
    on error
    error "Developer Tools not installed"
    end try
    set iconFile to (choose file with prompt "Choose an image file for the icon:" default location startingDirectory)
    if (do shell script "/usr/bin/file " & quoted form of POSIX path of iconFile) does not contain "image" then -- check image file
    error "The icon file is not an image"
    end if
    tell application "Automator Runner" to tell open panel -- using this panel allows the choice of a file or folder
    set floating to true
    set can choose directories to true
    set can choose files to true
    set allows multiple selection to false
    call method "setShowsHiddenFiles:" of it with parameters {false}
    set title to "Select an item to set to the custom icon:"
    set prompt to "Set Icon" -- this is actually the button text
    activate
    if (display it in directory startingDirectory) is 0 then -- cancel button
    error number -128
    else
    my (setCustomIcon from iconFile to (it's path names as text)) -- just one item
    end if
    end tell
    end run
    to setCustomIcon from imageFile to destination
    Set the icon of a destination file item to the image contained in imageFile
    parameters - imageFile [various]: an imagefile for the icon (Finder alias or POSIX text)
    destination [various]: a destination item to set to the icon (Finder alias or POSIX text)
    returns [boolean]: true if icon is set, false otherwise
    set imageFile to imageFile as text
    if imageFile starts with "/" then -- check for POSIX file
    set imageFile to imageFile as POSIX file as alias
    else
    set imageFile to imageFile as alias
    end if
    set destination to destination as text
    if destination does not start with "/" then -- check for POSIX file
    set destination to POSIX path of destination
    end if
    try
    tell application "Finder" -- copy the icon image to a temporary file
    (duplicate imageFile to (path to temporary items) with replacing) as alias
    set tempImage to quoted form of POSIX path of the result
    end tell
    set tempResource to quoted form of (POSIX path of (((path to temporary items) as text) & "TempResource"))
    do shell script "/usr/bin/sips -i " & tempImage -- add a Finder icon to the image
    do shell script "/Developer/Tools/DeRez -only icns " & tempImage & " > " & tempResource -- get the icon resource
    do shell script "/usr/bin/file " & quoted form of destination -- determine the destination file type
    if the result contains "directory" then -- folder
    set theTarget to quoted form of (destination & "/Icon" & return) -- create Icon\r file
    set Command to "rm " & theTarget & "; " -- remove any existing custom icon
    set Command to Command & "/Developer/Tools/Rez -a " & tempResource & " -o " & theTarget & "; " -- add resource file to a folder
    set Command to Command & "/Developer/Tools/SetFile -a V " & theTarget & "; " -- make it invisible
    else -- file
    set Command to "/Developer/Tools/Rez -a " & tempResource & " -o " & quoted form of destination & "; " -- add resource to a file
    end if
    set Command to Command & "/Developer/Tools/SetFile -a C " & quoted form of destination -- set custom icon attribute
    do shell script Command -- do it
    on error errmess number errnum -- oops
    log errmess
    -- display alert "Error " & errnum message errmess buttons {"OK"}
    return false
    end try
    try -- remove temporary files
    do shell script "rm " & tempImage & space & tempResource
    end try
    tell application "Finder" to update (destination as POSIX file)
    return true
    end setCustomIcon
    </pre>

  • Creating custom icons

    I've created a series of custom icons for Acrobat files and burned them to a CD. When a PC user uses the CD the custom icons don't show up. Any ideas?

    Thanks, Tom for your prompt reply.
    Yes, the files do have proper extensions. They show up on the PC and work fine, just with the standard icons rather than my custom ones.
    I used Mac's Finder for burning to an external LaCie CD/DVD burner.
    Could the problem be on the PC?
    I've got a G4 1.42 GHz operating OSX 10.4
    JD, welcome to Apple Discussions.
    Do the files have names as icon.pdf? the PC needs the
    ".pdf".
    What burn app did you use? Did you use the HFS+/ISO
    9660 format on the discs?
    Cheers, Tom
    PS: You need to add your Mac model & OS to your
    Profile.

  • Need help on creating custom skins like chrome

    Hi,
    I want to create my custom skin like chrome with my own play, pause and seek buttons. Can anybody point me to any documents that can help me to achieve this? Thanks in advance.
    Regards,
    Amit

    Thats a very open ended question. We have built a sample OSMF player and a skinning solution you can take a look at.  http://code.google.com/p/reops/
    There are templates and a PDF that describes the capabilities and process. Also walkthrough style samples.
    Otherwise the generic answer is desgn as you see fit, and implement the controls as display objects or part of the MediaContainer which could be done as custom MediaElements, then link them to the MediaPlayer or MediaPlayerSprite and call the approp API methods (play/pause/stop/seek/etc.)

  • Create a Custom Icon to Replace the Standard URL Icon in Dock

    I would like to change the "springy thing"/URL icon in my dock to a custom picture showing the logo for the webpage for that particular "springy thing." Is it possible to change the spring to a custom icon? If so, how can I do this? Your help is greatly appreciated! Thanks.
    iBook G4   Mac OS X (10.4.8)  

    Generic urls dragged directly to the "Dock" will use that default icon (or whatever icon is substituted), but every url will use that same icon.
    If the goal is to have separate urls in the "Dock", each with its own custom icon, try dragging a url to the "Desktop" first, which should result in the creation of a ".webloc" file. The file can be given a custom icon the usual way via "Get Info", and added to the "Dock", but note that this requires that the ".webloc" file be stored somewhere for that "Dock" shortcut to remain valid.

  • Transaction ICON == creating an custom icon

    Hi,
       I want to create a CUSTOM ICON
    In the Transaction ICON => new entries
    how do i create a new icon
    what values do i have to enter for the parameter ID
    and others.
    Thanks and Regards
    AK

    HI
    GOOD
    GO THROUGH THESE LINKS .
    http://www.sapdesignguild.org/resources/icon_cookbook/icon_cookbook.pdf
    http://www.sapdesignguild.org/resources/icon_cookbook/style.html
    THANKS
    MRUTYUNJAYA TRIPATHY

  • Trouble with some documents: no custom icon, only generic appears

    I tried anything: rebuilt launch servcice, permission repair, daily, weekly, monthly scripts (using maintanace, onyx, etc...) BUT all the documents associated with Openoffice have no custom icon. I also tried reinstalling oo with no success. It happens with textedit and keynote (using "get info", open with, apply to all) and don't know why?
    Can anybody help me?
    Thanks!

    You could create a new admin user and move the data within each of these folders to the corresponding folder on the new account: Desktop, Documents. Library, Movies, Music, etc. You can di it most easily IMO, by copying your Home folder to DVD first. Alternatively, you could use Users/Shared for the data.
    But it would really be best to sort this issue in your present user.
    It would be a good idea to test with a new user though to see if the problem exists there.
    Create a new account, name it "test" and see how your OO & TE work in that User acct? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    Let us know and we'll troubleshoot this further.
    -mj
    [email protected]

  • Can't publish with custom icons

    Whenever I attempt to publish an AIR app for which I've selected a custom icon, I get an error message, "An attribute or element contains an invalid value in the application descriptor file. (application.icon.image128x128)"
    Looking in the file "TL Report processor-app.xml" which is created alongside the app, I see that where presumably the path to the icon file should be, I see:
    <image128x128>AppIconsForAIRPublish/AM initials.png</image128x128>
    instead of the complete path to the PNG that I entered in the Publish settings.
    What the f@*# gives?

    Hi Cj
    There are a zillion threads on this general problem so you will find plenty of detailed ideas and fixes if you need to go digging. But your problem sounds like one I have from time to time even with 1.1.1. My fix has been to delete the notorious prepublishstate file from the domain package for your iweb site, and then to make minor changes to the pages where comments are not showing. Then republish your site and bingo there they are.
    If I have spoken too much in code and riddles and you want to try this fix but need more precise details, just let me know.
    Regards

  • Pro grammatically create three sub-folders with specific name under each of root folders in site collection level??

    Hi,
    i have a document library Named "Digital" in a site collection. In that document library i have bunch of customer folders with different customer name. My requirement is i need to create three sub-folders (like Images, Processed, Status) each of
    customer folders. so how can i automate to create sub-folders with specific name. can i use object model or power shell to achieve this one.
    Thanks in advanced!

    Hi Murugesa,
    Thanks for your help. i was trying to create folder inside document library using your code. but unfortunately i cant debug code and cannot create folder inside customers folder. Following is the code, basically i am creating a SharePoint project and adding
    an item as class file and deploying to share point site and then trying to debugging code, but break-point showing as yellow circle. i checked solution has been deployed to the server but still not creating any folder. It will be very helpful if you can describe
    all the steps. should i create console application?
    Appreciated !!
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.SharePoint;
    namespace Add_Sub_Folders
        class Create_Folders
            public void Sub_Folders()
                var foldersList = new List<string>();
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        using (var site = new SPSite(SPContext.Current.Site.Url.ToString()))
                            using (var web = site.OpenWeb())
                                web.AllowUnsafeUpdates = true;
                                foreach (SPFolder folder in web.GetFolder("http://nyc01d1sptmp01:8080/Shared%20Documents/").SubFolders)
                                    if (folder.Url.ToString() != "Shared Documents/Forms" && folder.Url.ToString() != "Shared Documents")
                                        foldersList.Add(folder.Url);
                                        SPFolder subFolder = web.GetFolder(folder.Url);
                                        subFolder.SubFolders.Add("Draft");
                                        subFolder.SubFolders.Add("Status");
                                        subFolder.SubFolders.Add("Final");
                                    folder.Update();
                                web.AllowUnsafeUpdates = false;
                    catch (Exception ex)
                        ex.Message.ToString();

  • Problem with custom icon on toolbar (iPhone Beta 6 SDK)

    I created two custom icons, using transparency so they are white lines on a transparent background, to add to a toolbar at the bottom of the screen.
    toolbar.barStyle = UIBarStyleDefault;
    UIBarButtonItem *theItem = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"MyImage.png"] style:UIBarButtonItemStylePlain target:self action:@selector(theAction:)] autorelease];
    On the simulator, this shows properly a white icon on the grayish toolbar. On the device itself, it shows a white box the size of the icon. It still works.

    Problem persists in Beta 7. However a workaround (which might have worked in Beta 6, I don't know) is this: use GIF files with transparency, rather than PNG files with transparency. These display properly on both simulator and device.

  • When saving a File OS Is Creating Multiple Folders With The Same File Name

    Not sure what I changed but, now when I save a any file (ppt. word, Keynote,Pages e.g.,) to the desktop or any other location the OS will also create multiple file folders with the same file name as the file I'm saving. Inside the folders are what appears to be files locating the saved files. What can I do to fix this problem?
    I'm using the 10.7.2 version
    MacBook Pro

    Misio wrote:
    It looks like a finder bug. To replicate, I surf to any website, I right-click on a jpg image, select "Save Image As" and in the window that pops up I type in the filename "000.jpg", I select the folder Pictures, and click on Save.
    BTW, I don't know why, but the file was saved only as "000" without the file extension ".jpg". Does anybody know why?
    the extension is simply hidden. go to the get info panel for the file and uncheck the option to hide the extension.
    Then I surf to another image, and again I save it as "000.jpg" and now it asks me if I want to replace the existing filename, although the existing one is "000" and I try to save as "000.jpg", so I say yes, and then magically the file is saved with the full filename including the extension "000.jpg"
    When I did it a couple of times, always saving image as "000.jpg" from various sources, I ended up with two distinct files named "000" and both in the same folder Pictures.
    Please advise.
    it sounds to me like you saved one file as 000.jpg and the other and 000.jpg.jpg.
    check the info panels for the files for full names to verify if this is the case.

Maybe you are looking for