BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 03-25-2009, 05:49 PM   #161
Mark Rejhon
Retired BBF Moderator
 
Mark Rejhon's Avatar
 
Join Date: Aug 2004
Location: Ottawa, Ontario, Canada
Model: Bold
Carrier: Rogers
Posts: 4,870
Default

Please Login to Remove!

Quote:
Originally Posted by visortgw View Post
  1. Select file or directores.
  2. Select Store 'file/directory' on Stack from menu.
  3. Navigate to destination directory.
  4. Select Copy/Move 'file/directory' to 'destination' from menu.
Just think of the "stack" as your clipboard.
It's pretty simple methodology for a programmer like me. However, I also give the link to the app out to other "Average Users" who don't quite realise.

The "copy" and "move" options should always be visible, even if stack is empty, even if just to pop up an alert. That way, users aren't left confused for too long, and the stack quickly becomes self-explanatory for many.

emacf1, how about doing this:

PHP Code:
// --- begin BlackBerry Java 'semi-pseudocode' ---

    
private MenuItem menuCopy;
    private 
MenuItem menuMove;
 
    private 
MenuItem menuCopy = new MenuItem("Copy"00) {
        public 
void run() {
            if (
fileStack.length == 0)
            { 
                 
Dialog.alert("To copy this selected file, select 'Add to Stack' first.")
            }
            else
            {
                
// Do the normal stack copy operation
            
}
        }
    };
 
    private 
MenuItem menuMove = new MenuItem("Move"00) {
        public 
void run() {
            if (
fileStack.length == 0)
            { 
                 
Dialog.alert("To move this selected file, select 'Add to Stack' first.")
            }
            else
            {
                
// Do the normal stack move operation
            
}
        }
    };
 
 
    
void showMenu()
    {
        
// etc...

        
if (fileStack.Length == 0)
        {
             
// Show default items, whose only purpose is to display an alert
             
menuCopy.setText("Copy");
             
menuMove.setText("Move");
        }
        else
        {
             
// Show the normal items involving the stack
             
menuCopy.setText("Copy X to Y");
             
menuMove.setText("Move X to Y");
        }
 
        
// Always show copy/move menu options regardless of stack state
        
screen.AddMenuItem(menuCopy);
        
screen.AddMenuItem(menuMove);

        
// etc...
    
}
//---end pseudocode--- 
There. emacf1, free ready-to-modify pseudocode for you.
__________________
Thanks,
Mark Rejhon
Author of XMPP extension XEP-0301:
www.xmpp.org/extensions/xep-0301.html - specification
www.realjabber.org - open source

Last edited by Mark Rejhon; 03-25-2009 at 05:57 PM..
Offline  
Old 03-26-2009, 12:45 PM   #162
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

Thanks Mark for your suggestion - and honestly I am twisted - on the one hand side I can fully agree with your argument... on the other hand side I have the problem, that menu is already "over crowded" (and I am already think about an "expert" mode in order not to confuse "Joe the plumber")...

When COPY & MOVE will be always visible I have to additional menu entries without a real function (when stack is empty)... and I also have to admit, that I *hate* functions, that after I have execute them they told me that they could not be performed (for what every reason) - the best solution would be to have disabled menu items (which is not possible on the BB)...

So I honestly have already thought more then once about this option - its not an easy decision (I have seen too many bad GUIs in my developer life)... we will see, if I get a final smart idea - till then the users might be forced to read the provided documentation (which can be for sure be improved a lot - no doubt about that - any volunteers?)
Offline  
Old 03-26-2009, 01:25 PM   #163
dshipmon
Thumbs Must Hurt
 
dshipmon's Avatar
 
Join Date: Feb 2008
Location: Georgia
Model: 9000
OS: 4.6.0.167
PIN: 20DC9BDA
Carrier: AT&T
Posts: 176
Default

Don't see where to delete pre-installed themes and that PTT. I have 2 folders SDCard and store. No where in store do I see how to remove these files. Any suggestions or guidance of what I should be looking for?
__________________
"THE WILL OF GOD WILL NEVER TAKE YOU WHERE THE GRACE OF GOD WILL NOT PROTECT YOU."
Offline  
Old 03-26-2009, 04:51 PM   #164
PDM
Talking BlackBerry Encyclopedia
 
PDM's Avatar
 
Join Date: Aug 2005
Model: 9900
Carrier: T-Mobile
Posts: 428
Default

Been a little busy recently and have only just managed to upgrade from v0.5.4 to v0.5.11 earlier today (although not had the time to "play" as yet). The product has certainly been moving along at a rapid pace.

Just a couple of thoughts :
Quote:
Originally Posted by emacf1 View Post
[...]
a totally different topic - I thought about FTP integration today
[...]
I do not really know, if it's a smart idea to add FTP support in BBFileScout... any suggestions?
Quote:
Originally Posted by SteveO86 View Post
FTP support would be cool, but I could only imagine it be used by a selected few.

I typically just install an FTP client on an "as needed" basis since I don't FTP very often..

[...]
I totally agree with SteveO86 above. I too install an FTP Client on the rare occasions I need it and think this functionality would only be used by a small minority of the overall BBF users. Hence, perhaps if you did implement it you may want to consider it
i. as an additional "sub-module/library" which could be selected/de-selected upon installation
ii. or perhaps even a "BBFileScout Pro" paid version which could in return also help contribute towards funding.

Decisions.... decisions.... Whatever, you decide I am sure the majority, if not all, of the users will appreciate your efforts.

Time for me to go and see all the new functionality added here.... ;)
Offline  
Old 03-26-2009, 07:22 PM   #165
FF2
CrackBerry Addict
 
Join Date: Jan 2008
Model: 8830
PIN: N/A
Carrier: verizon
Posts: 755
Default

Hey, don't worry about "Joe the plumber!" With any luck he won't be around for about 4 more years and maybe 8!
Offline  
Old 03-28-2009, 10:04 AM   #166
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

BBFileScout update to 0.5.12

What's new?
* Copy, move, delete and zipping of directories (or collections containing one ore more directories) will now show a percentage progress bar

What's fixed?
* Fixed problem with directory information dialog for root volumes (like 'store', 'system' or 'SDCard')

All the changes are now listed in the new Changelog page of BBFileScout HP (I hope that's fine with you)

Installation & Update
You will find the download link (incl. OTA) at the BBFileScout Homepage

Once again: Deleting or renaming os relevant files from your Blackberry can harm the core functionality of the device - use this function at your own risk! - Don't blame me, if you have bricked your BB.

Matthias
Offline  
Old 04-01-2009, 03:21 PM   #167
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

BBFileScout update to 0.5.14

What's new?
Dedicated to my good old friend Susu:
* Send any file via Bluetooth to any other device that supports OBEX-Object-Push (experimental)

All the changes are now listed in the new Changelog page of BBFileScout HP (I hope that's fine with you)

Installation & Update
You will find the download link (incl. OTA) at the BBFileScout Homepage

Once again: Deleting or renaming os relevant files from your Blackberry can harm the core functionality of the device - use this function at your own risk! - Don't blame me, if you have bricked your BB.

Matthias
Offline  
Old 04-02-2009, 06:48 PM   #168
visortgw
CrackBerry Addict
 
visortgw's Avatar
 
Join Date: Apr 2007
Location: Upstate NY
Model: 9930
OS: 7.0.1.163
Carrier: Verizon Wireless
Posts: 540
Thumbs up

Yet another excellent update! Thanks again for all of your exceptional work.
Offline  
Old 04-02-2009, 07:21 PM   #169
koleary19067
BlackBerry Extraordinaire
 
koleary19067's Avatar
 
Join Date: Aug 2005
Location: PA
Model: STORM
OS: 4.7.0.151
PIN: MOBILE
Carrier: VERIZON
Posts: 2,089
Default

Anyway to do rar files
__________________
STORM (9530)
Offline  
Old 04-02-2009, 08:15 PM   #170
fkjr2
BlackBerry Extraordinaire
 
Join Date: Nov 2006
Location: CT
Model: 9550
OS: 5.0
Carrier: ATT
Posts: 1,137
Default

for the last few versions - this program has slowed down on my bold.
Takes longer to open files and general navigation thru program
__________________
Fred
Offline  
Old 04-11-2009, 06:28 AM   #171
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

Quote:
Originally Posted by fkjr2 View Post
for the last few versions - this program has slowed down on my bold.
could be that this is caused be a background that that is fetching the actual directory structure in order to provide the new "go to Dir" function...
Offline  
Old 04-11-2009, 06:30 AM   #172
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

BBFileScout update to 0.6

What's new?
* Search for files or directories

A detailed description about the new search functionality and all the additional features that comes with it (like key short cuts) can be found at the new Changelog page of BBFileScout HP (I hope that's fine with you)

Installation & Update
You will find the download link (incl. OTA) at the BBFileScout Homepage

Once again: Deleting or renaming os relevant files from your Blackberry can harm the core functionality of the device - use this function at your own risk! - Don't blame me, if you have bricked your BB.

Matthias
Offline  
Old 04-13-2009, 11:43 AM   #173
jbeek
Thumbs Must Hurt
 
jbeek's Avatar
 
Join Date: Dec 2006
Model: 9700
OS: 6.0.0.706
Carrier: T-mo
Posts: 159
Default

Quote:
Originally Posted by emacf1 View Post
BBFileScout update to 0.6

What's new?
* Search for files or directories
Quick feedback on the new version:

I just installed 0.6 ... for some reason it is *much* slower to start up than the previous version I had (0.5.12). With 0.6 it typically takes 20-25 seconds from when I click the icon to display the SD card directory listing (with 0.5.12 it was almost instantaneous). If I set my default directory to be the top level directory then that time goes down to around 5-6 seconds, but then it takes another 15-20 seconds to get to the next folder level down.

This is on a Pearl 8100 running 4.5.0.124
Offline  
Old 04-13-2009, 11:53 AM   #174
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

Quote:
Originally Posted by jbeek View Post
Quick feedback on the new version:

I just installed 0.6 ... for some reason it is *much* slower to start up than the previous version I had (0.5.12). With 0.6 it typically takes 20-25 seconds from when I click the icon to display the SD card directory listing (with 0.5.12 it was almost instantaneous). If I set my default directory to be the top level directory then that time goes down to around 5-6 seconds, but then it takes another 15-20 seconds to get to the next folder level down.
Thanks for this valuable feedback - I think there is a good reason for this - but depending on your usage it can have a benefit (or like you said) an dissadvantage - so I think the best solution will be an "option" in the settings... [at least i hope so, that the code change I have in mind will hav this negative effect for you]

Matthias
Offline  
Old 04-13-2009, 12:30 PM   #175
fkjr2
BlackBerry Extraordinaire
 
Join Date: Nov 2006
Location: CT
Model: 9550
OS: 5.0
Carrier: ATT
Posts: 1,137
Default

Wirelessly posted

I have complained of this same issue many versions ago - slow.....!
__________________
Fred
Offline  
Old 04-13-2009, 12:47 PM   #176
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

Quote:
Originally Posted by fkjr2 View Post
I have complained of this same issue many versions ago - slow.....!
and you already got a response here: http://www.blackberryforums.com/afte...ml#post1349396 - but jbeeks feeback was way more valuable to me since he had exact version numbers for me - so I do not have to guess about which change he is talking...

Last edited by emacf1; 04-13-2009 at 12:49 PM..
Offline  
Old 04-13-2009, 11:01 PM   #177
jbeek
Thumbs Must Hurt
 
jbeek's Avatar
 
Join Date: Dec 2006
Model: 9700
OS: 6.0.0.706
Carrier: T-mo
Posts: 159
Default

Quote:
Originally Posted by emacf1 View Post
and you already got a response here: http://www.blackberryforums.com/afte...ml#post1349396 - but jbeeks feeback was way more valuable to me since he had exact version numbers for me - so I do not have to guess about which change he is talking...
Well, I hope it's easier ... I skipped a version between upgrading

(Mostly because the forced reboot after each upgrade jumbled my icons; but then I switched away from the Today theme and now the icons behave again.)
Offline  
Old 04-13-2009, 11:07 PM   #178
raja_3012
BlackBerry Extraordinaire
 
raja_3012's Avatar
 
Join Date: May 2008
Location: Irving, TX
Model: iPhn4
OS: iOS 4.3.2
Carrier: AT&T
Posts: 1,137
Default

I have one feedback.. may be someone has already given it.. Sorry if I am repeating it.

In a folder other than the root folder, at the top we have ".." for going to the parent folder, and keeping ".." selected if we press the shortcut key "s" to zip the contents of that folder, we get "java.lang.IllegalArgumentException". The exception is perfectly valid but naive users who are not familiar with JAVA may not comprehend the error message. A user friendly error pop up like "Please select a valid folder" can be considered.
__________________
Regards|Raja
BlackBerry FAQ

Nokia 2100 > Nokia 6100 > Samsung t319 > Nokia 5300 > Blackberry 8320 > Blackberry 8900 > iPhone 3GS > iPhone 4
Offline  
Old 04-14-2009, 04:23 AM   #179
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

Quote:
Originally Posted by raja_3012 View Post
In a folder other than the root folder, at the top we have ".." for going to the parent folder, and keeping ".." selected if we press the shortcut key "s" to zip the contents of that folder...
thanks - consider it as "fixed" in the the next release
Offline  
Old 04-16-2009, 04:34 AM   #180
emacf1
Talking BlackBerry Encyclopedia
 
emacf1's Avatar
 
Join Date: Feb 2009
Model: 9500
PIN: N/A
Carrier: Vodafone
Posts: 313
Default

BBFileScout update to 0.6.1

What's new?
* Search will now display the total number of hits
* New Option: Directory Structure loading Thread ['Slow'|'Normal'|'Fast']

What's fixed?
* Performance of Search improved
* Menu is now showing the correct entry 'Zip <selection>'
* No Exception when the 'one directory up' [..] is selected and the key short cut [A|S] is pressed

A detailed description about the changes can be found @ the Changelog page of BBFileScout HP (I hope that's fine with you)

Installation & Update
You will find the download link (incl. OTA) at the BBFileScout Homepage

Once again: Deleting or renaming os relevant files from your Blackberry can harm the core functionality of the device - use this function at your own risk! - Don't blame me, if you have bricked your BB.

Matthias
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Retro 1951 Apple Computer Logo 0.7mm Ballpoint Black Ink Pen Gold Barrel picture

Retro 1951 Apple Computer Logo 0.7mm Ballpoint Black Ink Pen Gold Barrel

$56.41



C2102A-4 INTEL VINTAGE 1K SRAM 1024Bit CERAMIC GOLD PINS APPLE 1, DC1976 Mimeo-1 picture

C2102A-4 INTEL VINTAGE 1K SRAM 1024Bit CERAMIC GOLD PINS APPLE 1, DC1976 Mimeo-1

$30.83



Lot of 6 Vintage Apple Drawstring Bags For iPhone, Mac, Apple Watch, iPod picture

Lot of 6 Vintage Apple Drawstring Bags For iPhone, Mac, Apple Watch, iPod

$45.00



Vintage Food Cut-Out Display Print: Mama's Apple Pie w/Ice Cream Topper picture

Vintage Food Cut-Out Display Print: Mama's Apple Pie w/Ice Cream Topper

$19.00



Vintage Print Block “ Apple Corer Kitchen Tool “ Copper Face Block picture

Vintage Print Block “ Apple Corer Kitchen Tool “ Copper Face Block

$16.00



Vintage  Rainbow Logo Apple Post-It Sticky Notes 4

Vintage Rainbow Logo Apple Post-It Sticky Notes 4" Rare computer collectible

$39.99







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.